Skip to content

Commit 6c49de0

Browse files
meyrevivedoswcab
andauthored
Continue fix for windows platform string patch (#9563)
* Update p02 with fixed platform config string * Update staging-downstream * Fix remaining keys in host-config.yaml When moving the dynamic key for windows, some outputs were left behind. --------- Co-authored-by: Hector Oswaldo Caballero <[email protected]>
1 parent b8bc963 commit 6c49de0

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1119,8 +1119,8 @@ data:
11191119
{{ end }}
11201120

11211121
# Windows platforms
1122-
{{- if hasKey .Values.dynamicConfigs "windows-amd64" }}
1123-
{{- $config := index .Values.dynamicConfigs "windows-amd64" | default (dict) }}
1122+
{{- if hasKey .Values.dynamicConfigs "windows-4xlarge-amd64" }}
1123+
{{- $config := index .Values.dynamicConfigs "windows-4xlarge-amd64" | default (dict) }}
11241124
dynamic.windows-4xlarge-amd64.type: {{ index $config "type" | default "aws" | quote }}
11251125
dynamic.windows-4xlarge-amd64.region: {{ index $config "region" | default "us-east-1" | quote }}
11261126
dynamic.windows-4xlarge-amd64.ami: {{ default (index $windows "ami") $config.ami | quote }}
@@ -1136,13 +1136,13 @@ data:
11361136
dynamic.windows-4xlarge-amd64.check-interval: {{ (index $config "check-interval") | default "60" | quote }}
11371137
dynamic.windows-4xlarge-amd64.allocation-timeout: "1200"
11381138
{{- if (index $config "iops") }}
1139-
dynamic.windows-amd64.iops: {{ index $config "iops" | quote }}
1139+
dynamic.windows-4xlarge-amd64.iops: {{ index $config "iops" | quote }}
11401140
{{ end }}
11411141
{{- if (index $config "throughput") }}
1142-
dynamic.windows-amd64.throughput: {{ index $config "throughput" | quote }}
1142+
dynamic.windows-4xlarge-amd64.throughput: {{ index $config "throughput" | quote }}
11431143
{{ end }}
11441144
{{- if (index $config "user-data") }}
1145-
dynamic.windows-amd64.user-data: |
1145+
dynamic.windows-4xlarge-amd64.user-data: |
11461146
{{- $lines := splitList "\n" (index $config "user-data") }}
11471147
{{- range $line := $lines }}
11481148
{{ $line }}

components/multi-platform-controller/production-downstream/stone-prod-p02/host-values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ dynamicConfigs:
247247
sudo chown ec2-user:staff /Users/ec2-user/$user
248248
sudo chmod 600 /Users/ec2-user/$user
249249
250-
windows-amd64:
250+
windows-4xlarge-amd64:
251251
user-data: |
252252
<powershell>
253253
## -----------------------------------------

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ dynamicConfigs:
232232
sudo-commands: "/usr/bin/podman"
233233
disk: "200"
234234

235-
windows-amd64:
235+
windows-4xlarge-amd64:
236236
user-data: |
237237
<powershell>
238238
function Wait-Folder {

0 commit comments

Comments
 (0)