File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -230,9 +230,9 @@ Use for debug purpose only.
230230Clean the list of deployments for the auto-update flag, removing quotes and brackets
231231*/} }
232232{ {- define " autoUpdate.deployments.arg" -} }
233- { {- $x := include " autoUpdate.deployments" . -} }
234- { {- $x = replace " [" " " $x -} }
235- { {- $x = replace " ]" " " $x -} }
236- { {- $x = replace " \" " " " $x -} }
237- - "--update-deployments={ { $x } }"
233+ { {- $deployments := include " autoUpdate.deployments" . -} }
234+ { {- $deployments = replace " [" " " $deployments -} }
235+ { {- $deployments = replace " ]" " " $deployments -} }
236+ { {- $deployments = replace " \" " " " $deployments -} }
237+ - "--update-deployments={ { $deployments } }"
238238{ {- end -} }
Original file line number Diff line number Diff line change 8282 command :
8383 - " /usr/bin/wiz-admission-controller"
8484 - " --readiness-port={{ .Values.healthPort }}"
85- # Server flags
85+ # Server flags
8686 - " --port={{ .Values.service.targetPort }}"
8787 - " --tls-private-key-file=/var/server-certs/tls.key"
8888 - " --tls-cert-file=/var/server-certs/tls.crt"
Original file line number Diff line number Diff line change @@ -429,7 +429,7 @@ probes: # Probes config for the container
429429wizManager :
430430 enabled : true # Should the Wiz Manager be deployed.
431431 nameOverride : " " # Override the manager deployment name.
432- schedule : " */5 * * * *" # Every 5 minutes
432+ schedule : " 0 * * * *" # Every 1 hour
433433 timeoutSeconds : 240 # The timeout for the manager job in seconds.
434434 cleanupJobSeconds : 600 # The time in seconds after which the job should be deleted.
435435 rolloutRestart :
You can’t perform that action at this time.
0 commit comments