Skip to content

Commit 14d6136

Browse files
committed
Removed the fed registries from the values.yaml
1 parent bb50d3d commit 14d6136

File tree

9 files changed

+23
-26
lines changed

9 files changed

+23
-26
lines changed

wiz-admission-controller/templates/_helpers.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ Clean the list of deployments for the auto-update flag, removing quotes and brac
403403

404404
{{- define "wiz-admission-controller.image" -}}
405405
{{- if .Values.global.isFedRamp -}}
406-
{{ .Values.image.fedRegistry }}/{{ .Values.image.fedRepository }}:{{ .Values.image.tag | default .Chart.AppVersion }}
406+
publicregistryfedrampwizio.azurecr.us/wiz-app/wiz-admission-controller-fips:{{ .Values.image.tag | default .Chart.AppVersion }}
407407
{{- else -}}
408408
{{ coalesce .Values.global.image.registry .Values.image.registry }}/{{ coalesce .Values.global.image.repository .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}
409409
{{- end -}}

wiz-admission-controller/values.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ commonLabels: {} # Labels applied on all the resources (not used for selection)
1010
wizApiToken:
1111
clientId: "" # Client ID of the Wiz Service Account.
1212
clientToken: "" # Client secret of the Wiz Service Account.
13-
clientEndpoint: "" # Set to 'gov' or 'fedramp' for gov/fedramp tenants only, otherwise leave blank.
13+
clientEndpoint: "" # Defaults to commercial.
14+
# If `global.isFedRamp` is `true`, this field gets automatically set to `fedramp`.
1415

1516
secret:
1617
# Should a Secret be created by the chart or not.
@@ -53,9 +54,7 @@ podDisruptionBudget:
5354

5455
image:
5556
registry: wiziopublic.azurecr.io/wiz-app
56-
fedRegistry: publicregistryfedrampwizio.azurecr.us/wiz-app
5757
repository: wiz-admission-controller
58-
fedRepository: wiz-admission-controller-fips
5958
pullPolicy: Always
6059
# Overrides the image tag whose default is the chart appVersion.
6160
tag: ""
@@ -490,7 +489,8 @@ global:
490489
wizApiToken:
491490
clientId: ""
492491
clientToken: ""
493-
clientEndpoint: "" # Wiz endpoint to connect to (required for gov tenants).
492+
clientEndpoint: "" # Defaults to commercial.
493+
# If `global.isFedRamp` is `true`, this field gets automatically set to `fedramp`.
494494

495495
secret:
496496
# The name of the Wiz Service Account Secret.

wiz-broker/templates/_helpers.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ Secrets names
106106

107107
{{- define "wiz-broker.image" -}}
108108
{{- if .Values.global.isFedRamp -}}
109-
{{ .Values.image.fedRegistry }}/{{ .Values.image.fedRepository }}:{{ .Values.image.tag | default .Chart.AppVersion }}
109+
publicregistryfedrampwizio.azurecr.us/wiz-app/wiz-broker-fips:{{ .Values.image.tag | default .Chart.AppVersion }}
110110
{{- else -}}
111111
{{ coalesce .Values.global.image.registry .Values.image.registry }}/{{ coalesce .Values.global.image.repository .Values.image.repository }}:{{ coalesce .Values.global.image.tag .Values.image.tag | default .Chart.AppVersion }}
112112
{{- end -}}

wiz-broker/values.yaml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,7 @@ commonLabels: {} # Labels applied on all the resources (not used for selection)
99

1010
image:
1111
registry: wiziopublic.azurecr.io/wiz-app
12-
fedRegistry: publicregistryfedrampwizio.azurecr.us/wiz-app
1312
repository: wiz-broker
14-
fedRepository: wiz-broker-fips
1513
pullPolicy: Always
1614
# Overrides the image tag whose default is the chart appVersion.
1715
tag: ""
@@ -71,7 +69,8 @@ wizConnector:
7169
wizApiToken:
7270
clientId: "" # Client ID of the Wiz Service Account.
7371
clientToken: "" # Client secret of the Wiz Service Account.
74-
clientEndpoint: "" # Set to 'gov' or 'fedramp' for gov/fedramp tenants only, otherwise leave blank.
72+
clientEndpoint: "" # Defaults to commercial.
73+
# If `global.isFedRamp` is `true`, this field gets automatically set to `fedramp`.
7574

7675
secret:
7776
# Should a Secret be created by the chart or not.
@@ -116,9 +115,7 @@ global:
116115

117116
image:
118117
registry: wiziopublic.azurecr.io/wiz-app
119-
fedRegistry: publicregistryfedrampwizio.azurecr.us/wiz-app
120118
repository: wiz-broker
121-
fedRepository: wiz-broker-fips
122119
pullPolicy: Always # Always pull the image on every deployment
123120
# Overrides the image tag whose default is the chart appVersion.
124121
tag: ""
@@ -151,7 +148,8 @@ global:
151148
runAsUser: 1000
152149

153150
wizApiToken:
154-
clientEndpoint: "" # Wiz endpoint to connect to (required for gov tenants).
151+
clientEndpoint: "" # Defaults to commercial.
152+
# If `global.isFedRamp` is `true`, this field gets automatically set to `fedramp`.
155153
secret:
156154
name: "" # Override with parent secret name
157155

wiz-kubernetes-connector/templates/_helpers.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ delete-kubernetes-connector
228228

229229
{{- define "wiz-broker.image" -}}
230230
{{- if .Values.global.isFedRamp -}}
231-
{{ .Values.image.fedRegistry }}/{{ .Values.image.fedRepository }}:{{ .Values.image.tag | default .Chart.AppVersion }}
231+
publicregistryfedrampwizio.azurecr.us/wiz-app/wiz-broker-fips:{{ .Values.image.tag | default .Chart.AppVersion }}
232232
{{- else -}}
233233
{{ coalesce .Values.global.image.registry .Values.image.registry }}/{{ coalesce .Values.global.image.repository .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}
234234
{{- end -}}

wiz-kubernetes-connector/values.yaml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,7 @@ commonLabels: {} # Labels applied on all the resources (not used for selection)
77

88
image:
99
registry: wiziopublic.azurecr.io/wiz-app
10-
fedRegistry: publicregistryfedrampwizio.azurecr.us/wiz-app
11-
# Use this if you are deploying on federal environments with FIPS endpoints.
1210
repository: wiz-broker
13-
fedRepository: wiz-broker-fips
1411
pullPolicy: Always
1512
# Overrides the image tag whose default is the chart appVersion.
1613
tag: ""
@@ -79,7 +76,8 @@ autoCreateConnector:
7976
wizApiToken:
8077
clientId: "" # Client ID of the Wiz Service Account.
8178
clientToken: "" # Client secret of the Wiz Service Account.
82-
clientEndpoint: "" # Set to 'gov' or 'fedramp' for gov/fedramp tenants only, otherwise leave blank.
79+
clientEndpoint: "" # Defaults to commercial.
80+
# If `global.isFedRamp` is `true`, this field gets automatically set to `fedramp`.
8381

8482
secret:
8583
# Should a Secret be created by the chart or not.
@@ -132,7 +130,8 @@ wiz-broker:
132130
customVolumeMounts: [] # Additional volume mounts to add to the components Pods
133131

134132
wizApiToken:
135-
clientEndpoint: "" # Wiz endpoint to connect to (required for gov tenants).
133+
clientEndpoint: "" # Defaults to commercial.
134+
# If `global.isFedRamp` is `true`, this field gets automatically set to `fedramp`.
136135
secret:
137136
create: false # Secret created by wiz-kubernetes-connector.
138137
secretName: ""
@@ -182,9 +181,7 @@ httpProxyConfiguration:
182181
global:
183182
image:
184183
registry: wiziopublic.azurecr.io/wiz-app
185-
fedRegistry: publicregistryfedrampwizio.azurecr.us/wiz-app
186184
repository: wiz-broker
187-
fedRepository: wiz-broker-fips
188185
pullPolicy: Always
189186
# Overrides the image tag whose default is the chart appVersion.
190187
tag: ""
@@ -237,7 +234,8 @@ global:
237234
allowPrivilegeEscalation: false
238235

239236
wizApiToken:
240-
clientEndpoint: "" # Wiz endpoint to connect to (required for gov tenants).
237+
clientEndpoint: "" # Defaults to commercial.
238+
# If `global.isFedRamp` is `true`, this field gets automatically set to `fedramp`.
241239
secret:
242240
name: "" # Override with parent secret name
243241

wiz-kubernetes-integration/values.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ global:
1010
wizApiToken:
1111
clientId: "" # Client ID of the Wiz Service Account.
1212
clientToken: "" # Client secret of the Wiz Service Account.
13-
clientEndpoint: "" # Set to 'gov' or 'fedramp' for gov/fedramp tenants only, otherwise leave blank.
13+
clientEndpoint: "" # Defaults to commercial.
14+
# If `global.isFedRamp` is `true`, this field gets automatically set to `fedramp`.
1415

1516
secret:
1617
# Should a Secret be created by the chart or not.

wiz-sensor/templates/_helpers.tpl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ log levels
149149

150150
{{- define "wiz-sensor-disk-scanner.image" -}}
151151
{{- if .Values.global.isFedRamp -}}
152-
{{ .Values.image.fedRegistry }}/{{ .Values.image.diskScanRepository }}:{{ .Values.image.diskScanTag }}
152+
wizfedramp.azurecr.us/{{ .Values.image.diskScanRepository }}:{{ .Values.image.diskScanTag }}
153153
{{- else -}}
154154
{{- if (coalesce .Values.global.image.registry .Values.image.registry) -}}
155155
{{ printf "%s/%s:%s" (coalesce .Values.global.image.registry .Values.image.registry) .Values.image.diskScanRepository .Values.image.diskScanTag }}
@@ -161,7 +161,7 @@ log levels
161161

162162
{{- define "wiz-sensor.image" -}}
163163
{{- if .Values.global.isFedRamp -}}
164-
{{ .Values.image.fedRegistry }}/{{ .Values.image.repository }}:{{ .Values.image.tag }}
164+
wizfedramp.azurecr.us/{{ .Values.image.repository }}:{{ .Values.image.tag }}
165165
{{- else -}}
166166
{{- if (coalesce .Values.global.image.registry .Values.image.registry) -}}
167167
{{ printf "%s/%s:%s" (coalesce .Values.global.image.registry .Values.image.registry) .Values.image.repository .Values.image.tag }}

wiz-sensor/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,8 @@ wizApiToken:
9090
# The chart will refuse to install unless these are set to valid values
9191
clientId: ""
9292
clientToken: ""
93-
clientEndpoint: "" # Set custom endpoint - should be "fedramp" for FEDRAMP environments
93+
clientEndpoint: "" # Defaults to commercial. Leave blank for most cases.
94+
# If `global.isFedRamp` is `true`, this field gets automatically set to `fedramp`.
9495

9596
httpProxyConfiguration:
9697
# set to true to enable the use of a proxy. creates a secret with proxy configuration
@@ -160,7 +161,6 @@ image:
160161
# "registry/repository:tag" and here this is "wizio.azurecr.io/sensor:v1".
161162
# For FEDRAMP use wizfedramp.azurecr.us, for a final URL of "wizfedramp.azurecr.us/sensor:v1".
162163
registry: wizio.azurecr.io
163-
fedRegistry: wizfedramp.azurecr.us
164164
repository: sensor
165165
args: {}
166166
tag: "v1"

0 commit comments

Comments
 (0)