Skip to content

Commit b8bc963

Browse files
authored
Align default values for Windows instances (#9560)
So far, prd-p02 was defining the archDefaults for Windows as 'windows-amd64' while staging and the 'host-config.yaml' file were using 'windows'. Given multi-arch builds are a requirement, is better to align the archDefaults to 'windows-amd64'.
1 parent 15d20d0 commit b8bc963

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

components/multi-platform-controller/base/host-config-chart/templates/host-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ data:
4040

4141
{{- $arm := (index .Values "archDefaults" "arm64") | default (dict) }}
4242
{{- $amd := (index .Values "archDefaults" "amd64") | default (dict) }}
43-
{{- $windows := (index .Values "archDefaults" "windows") | default (dict) }}
43+
{{- $windows := (index .Values "archDefaults" "windows-amd64") | default (dict) }}
4444
{{- $environment := .Values.environment | default "prod" }}
4545

4646
# cpu:memory (1:4)

components/multi-platform-controller/staging-downstream/host-values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ archDefaults:
2222
key-name: "konflux-stage-int-mab01"
2323
security-group-id: "sg-0482e8ccae008b240"
2424
subnet-id: "subnet-07597d1edafa2b9d3"
25-
windows:
25+
windows-amd64:
2626
ami: "ami-0cf643428c5013531"
2727
key-name: "konflux-stage-int-mab01"
2828
security-group-id: "sg-0482e8ccae008b240"

0 commit comments

Comments
 (0)