You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Simplify FedRamp deployment
Set `global.isFedRamp` to true for FedRamp deployments (default is false).
Co-authored-by: nitzanzuler <[email protected]>
Copy file name to clipboardExpand all lines: wiz-admission-controller/values.yaml
+8-4Lines changed: 8 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,8 @@ commonLabels: {} # Labels applied on all the resources (not used for selection)
10
10
wizApiToken:
11
11
clientId: ""# Client ID of the Wiz Service Account.
12
12
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`.
14
15
15
16
secret:
16
17
# Should a Secret be created by the chart or not.
@@ -53,12 +54,11 @@ podDisruptionBudget:
53
54
54
55
image:
55
56
registry: wiziopublic.azurecr.io/wiz-app
56
-
# Use this if you are deploying on federal environments with FIPS endpoints.
57
-
# repository: wiz-admission-controller-fips
58
57
repository: wiz-admission-controller
59
58
pullPolicy: Always
60
59
# Overrides the image tag whose default is the chart appVersion.
61
60
tag: ""
61
+
62
62
imagePullSecrets: [] # Secrets for container image registry keys as described in https://kubernetes.io/docs/concepts/containers/images/#referring-to-an-imagepullsecrets-on-a-pod
63
63
64
64
priorityClassName: ""
@@ -489,7 +489,8 @@ global:
489
489
wizApiToken:
490
490
clientId: ""
491
491
clientToken: ""
492
-
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`.
493
494
494
495
secret:
495
496
# The name of the Wiz Service Account Secret.
@@ -556,3 +557,6 @@ global:
556
557
#
557
558
# lowPrivilegePodSecurityPolicy: {}
558
559
# lowPrivilegeSecurityPolicy: {}
560
+
561
+
# Set to true to use FedRamp endpoints and FIPS-compliant images.
0 commit comments