From 49b47218bd013b1eab8d867931627df9b3b205c0 Mon Sep 17 00:00:00 2001 From: Caleb Warren Date: Wed, 11 Sep 2024 01:24:27 -0700 Subject: [PATCH] Update windows image to correct tag ltsc2022 (#51) Windows 2022's upstream image tag is `ltsc2022`, `2022` image is not available [1]. This also adds a section for 2019 version support in `fleet.yaml`. [1]: https://mcr.microsoft.com/en-us/product/windows/servercore/tags --- multi-cluster/windows-helm/fleet.yaml | 10 +++++++++- multi-cluster/windows-helm/values.yaml | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/multi-cluster/windows-helm/fleet.yaml b/multi-cluster/windows-helm/fleet.yaml index 51ae795..497b23c 100644 --- a/multi-cluster/windows-helm/fleet.yaml +++ b/multi-cluster/windows-helm/fleet.yaml @@ -4,10 +4,18 @@ targetCustomizations: helm: values: image: - tag: 2022 + tag: ltsc2022 clusterSelector: matchLabels: windows.version: win2022 +- name: win2019 + helm: + values: + image: + tag: ltsc2019 + clusterSelector: + matchLabels: + windows.version: win2019 - name: win2004 helm: values: diff --git a/multi-cluster/windows-helm/values.yaml b/multi-cluster/windows-helm/values.yaml index c2516db..ae3b0f0 100644 --- a/multi-cluster/windows-helm/values.yaml +++ b/multi-cluster/windows-helm/values.yaml @@ -1,2 +1,2 @@ image: - tag: 2022 + tag: ltsc2022