@@ -36,14 +36,23 @@ LATEST_VERSION=$(curl -s https://update.k3s.io/v1-release/channels/latest -o /de
3636
3737# --- create a basic cluster to test for compat with the previous minor version of the server and agent
3838K3S_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
4043
4144# --- create a basic cluster to test for compat with the stable version of the server and agent
4245K3S_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
4450
4551# --- create a basic cluster to test for compat with the latest version of the server and agent
4652K3S_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
4857
4958cleanup-test-env
0 commit comments