From 913e87fe2d1635dd72db82314fdfe4636e315eb9 Mon Sep 17 00:00:00 2001 From: "Hilliary Lipsig (RED HAT INC)" Date: Thu, 9 Jul 2026 15:50:18 -0700 Subject: [PATCH 1/4] fix: normalize kubelet fix DS image to pinned Azure Linux runtime Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- ...fixture_TestHelmTemplate_dev_westus3_mgmt_1_mgmt_fixes.yaml | 3 +-- .../deploy/kubelet-ds/templates/ds-kubelet-parameters.yaml | 2 +- mgmt-fixes/kubelet-ds.values.yaml | 1 + 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-infrastructure/zz_fixture_TestHelmTemplate_dev_westus3_mgmt_1_mgmt_fixes.yaml b/dev-infrastructure/zz_fixture_TestHelmTemplate_dev_westus3_mgmt_1_mgmt_fixes.yaml index 094529c425e..ce771e4c462 100644 --- a/dev-infrastructure/zz_fixture_TestHelmTemplate_dev_westus3_mgmt_1_mgmt_fixes.yaml +++ b/dev-infrastructure/zz_fixture_TestHelmTemplate_dev_westus3_mgmt_1_mgmt_fixes.yaml @@ -59,7 +59,7 @@ spec: echo "collector.netclass.netlink parameter has been updated in node-exporter configuration" fi sleep infinity - image: alpine + image: mcr.microsoft.com/aks/command/runtime@sha256:07e516155014ed9c2c85de1cf7f0c38f92def33d62dbd297dc15664d779601ef imagePullPolicy: IfNotPresent name: kubelet-parameters resources: @@ -83,4 +83,3 @@ spec: maxSurge: 0 maxUnavailable: 1 type: RollingUpdate - diff --git a/mgmt-fixes/deploy/kubelet-ds/templates/ds-kubelet-parameters.yaml b/mgmt-fixes/deploy/kubelet-ds/templates/ds-kubelet-parameters.yaml index 313bccaa82b..220d265720d 100644 --- a/mgmt-fixes/deploy/kubelet-ds/templates/ds-kubelet-parameters.yaml +++ b/mgmt-fixes/deploy/kubelet-ds/templates/ds-kubelet-parameters.yaml @@ -58,7 +58,7 @@ spec: echo "collector.netclass.netlink parameter has been updated in node-exporter configuration" fi sleep infinity - image: alpine + image: "{{ .Values.image }}" imagePullPolicy: IfNotPresent name: kubelet-parameters resources: diff --git a/mgmt-fixes/kubelet-ds.values.yaml b/mgmt-fixes/kubelet-ds.values.yaml index aa0b5d0063a..94a2e1ce0e5 100644 --- a/mgmt-fixes/kubelet-ds.values.yaml +++ b/mgmt-fixes/kubelet-ds.values.yaml @@ -1 +1,2 @@ enabled: {{ .mgmt.applyKubeletFixes }} +image: "{{ .aksCommandRuntime.image.registry }}/{{ .aksCommandRuntime.image.repository }}@{{ .aksCommandRuntime.image.digest }}" From 24dc7f478061f719efab6cce5290bd3abd80c83c Mon Sep 17 00:00:00 2001 From: Hilliary Lipsig Date: Fri, 10 Jul 2026 12:59:22 -0700 Subject: [PATCH 2/4] chore: update mgmt fixes helm fixture Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- ...fixture_TestHelmTemplate_dev_westus3_mgmt_1_mgmt_fixes.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-infrastructure/zz_fixture_TestHelmTemplate_dev_westus3_mgmt_1_mgmt_fixes.yaml b/dev-infrastructure/zz_fixture_TestHelmTemplate_dev_westus3_mgmt_1_mgmt_fixes.yaml index ce771e4c462..7b6d919872b 100644 --- a/dev-infrastructure/zz_fixture_TestHelmTemplate_dev_westus3_mgmt_1_mgmt_fixes.yaml +++ b/dev-infrastructure/zz_fixture_TestHelmTemplate_dev_westus3_mgmt_1_mgmt_fixes.yaml @@ -59,7 +59,7 @@ spec: echo "collector.netclass.netlink parameter has been updated in node-exporter configuration" fi sleep infinity - image: mcr.microsoft.com/aks/command/runtime@sha256:07e516155014ed9c2c85de1cf7f0c38f92def33d62dbd297dc15664d779601ef + image: "mcr.microsoft.com/aks/command/runtime@sha256:1234567890" imagePullPolicy: IfNotPresent name: kubelet-parameters resources: @@ -83,3 +83,4 @@ spec: maxSurge: 0 maxUnavailable: 1 type: RollingUpdate + From 03c104a69f1002580b219c15ef206003579feb04 Mon Sep 17 00:00:00 2001 From: Hilliary Lipsig <8000786+hlipsig@users.noreply.github.com> Date: Fri, 10 Jul 2026 16:38:18 -0700 Subject: [PATCH 3/4] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- mgmt-fixes/kubelet-ds.values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mgmt-fixes/kubelet-ds.values.yaml b/mgmt-fixes/kubelet-ds.values.yaml index 94a2e1ce0e5..425f7753e48 100644 --- a/mgmt-fixes/kubelet-ds.values.yaml +++ b/mgmt-fixes/kubelet-ds.values.yaml @@ -1,2 +1,2 @@ enabled: {{ .mgmt.applyKubeletFixes }} -image: "{{ .aksCommandRuntime.image.registry }}/{{ .aksCommandRuntime.image.repository }}@{{ .aksCommandRuntime.image.digest }}" +kubeletParametersImage: "{{ .aksCommandRuntime.image.registry }}/{{ .aksCommandRuntime.image.repository }}@{{ .aksCommandRuntime.image.digest }}" From e76a45ff5a18f42766cc8fe18fe5bc1ca6b38a6d Mon Sep 17 00:00:00 2001 From: Hilliary Lipsig <8000786+hlipsig@users.noreply.github.com> Date: Fri, 10 Jul 2026 16:56:00 -0700 Subject: [PATCH 4/4] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- .../deploy/kubelet-ds/templates/ds-kubelet-parameters.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mgmt-fixes/deploy/kubelet-ds/templates/ds-kubelet-parameters.yaml b/mgmt-fixes/deploy/kubelet-ds/templates/ds-kubelet-parameters.yaml index 220d265720d..aa65d1fea35 100644 --- a/mgmt-fixes/deploy/kubelet-ds/templates/ds-kubelet-parameters.yaml +++ b/mgmt-fixes/deploy/kubelet-ds/templates/ds-kubelet-parameters.yaml @@ -58,7 +58,7 @@ spec: echo "collector.netclass.netlink parameter has been updated in node-exporter configuration" fi sleep infinity - image: "{{ .Values.image }}" + image: "{{ .Values.kubeletParametersImage }}" imagePullPolicy: IfNotPresent name: kubelet-parameters resources: