@@ -36,14 +36,23 @@ LATEST_VERSION=$(curl -s https://update.k3s.io/v1-release/channels/latest -o /de
36
36
37
37
# --- create a basic cluster to test for compat with the previous minor version of the server and agent
38
38
K3S_IMAGE_SERVER=${REPO} /${IMAGE_NAME} :${PREVIOUS_VERSION} LABEL=PREVIOUS-SERVER run-test
39
- K3S_IMAGE_AGENT=${REPO} /${IMAGE_NAME} :${PREVIOUS_VERSION} LABEL=PREVIOUS-AGENT run-test
39
+ # disabled: AuthorizeNodeWithSelectors is now on by default, which breaks compat with agents < v1.32.
40
+ # This can be ren-enabled once the previous branch is v1.32 or higher, or when RBAC changes have been backported.
41
+ # ref: https://github.com/kubernetes/kubernetes/pull/128168
42
+ # K3S_IMAGE_AGENT=${REPO}/${IMAGE_NAME}:${PREVIOUS_VERSION} LABEL=PREVIOUS-AGENT run-test
40
43
41
44
# --- create a basic cluster to test for compat with the stable version of the server and agent
42
45
K3S_IMAGE_SERVER=${REPO} /${IMAGE_NAME} :${STABLE_VERSION} LABEL=STABLE-SERVER run-test
43
- K3S_IMAGE_AGENT=${REPO} /${IMAGE_NAME} :${STABLE_VERSION} LABEL=STABLE-AGENT run-test
46
+ # disabled: AuthorizeNodeWithSelectors is now on by default, which breaks compat with agents < v1.32
47
+ # This can be ren-enabled once the stable release is v1.32 or higher, or when RBAC changes have been backported.
48
+ # ref: https://github.com/kubernetes/kubernetes/pull/128168
49
+ # K3S_IMAGE_AGENT=${REPO}/${IMAGE_NAME}:${STABLE_VERSION} LABEL=STABLE-AGENT run-test
44
50
45
51
# --- create a basic cluster to test for compat with the latest version of the server and agent
46
52
K3S_IMAGE_SERVER=${REPO} /${IMAGE_NAME} :${LATEST_VERSION} LABEL=LATEST-SERVER run-test
47
- K3S_IMAGE_AGENT=${REPO} /${IMAGE_NAME} :${LATEST_VERSION} LABEL=LATEST-AGENT run-test
53
+ # disabled: AuthorizeNodeWithSelectors is now on by default, which breaks compat with agents < v1.32
54
+ # This can be ren-enabled once the latest release is v1.32 or higher, or when RBAC changes have been backported.
55
+ # ref: https://github.com/kubernetes/kubernetes/pull/128168
56
+ # K3S_IMAGE_AGENT=${REPO}/${IMAGE_NAME}:${LATEST_VERSION} LABEL=LATEST-AGENT run-test
48
57
49
58
cleanup-test-env
0 commit comments