Skip to content

Commit

Permalink
helm: quote configmap values
Browse files Browse the repository at this point in the history
Signed-off-by: tesla59 <nishant@heim.id>
  • Loading branch information
tesla59 committed Jul 10, 2024
1 parent fc2173d commit 4015420
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions deployments/helm/KubeArmor/templates/configmap.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
apiVersion: v1
data:
defaultFilePosture: {{ .Values.kubearmorConfigMap.defaultFilePosture }}
defaultCapabilitiesPosture: {{ .Values.kubearmorConfigMap.defaultCapabilitiesPosture }}
defaultNetworkPosture: {{ .Values.kubearmorConfigMap.defaultNetworkPosture }}
visibility: {{ .Values.kubearmorConfigMap.visibility }}
alertThrottling: {{ .Values.kubearmorConfigMap.alertThrottling }}
maxAlertPerSec: {{ .Values.kubearmorConfigMap.maxAlertPerSec }}
throttleSec: {{ .Values.kubearmorConfigMap.throttleSec }}
defaultFilePosture: {{ .Values.kubearmorConfigMap.defaultFilePosture | quote }}
defaultCapabilitiesPosture: {{ .Values.kubearmorConfigMap.defaultCapabilitiesPosture | quote }}
defaultNetworkPosture: {{ .Values.kubearmorConfigMap.defaultNetworkPosture | quote }}
visibility: {{ .Values.kubearmorConfigMap.visibility | quote }}
alertThrottling: {{ .Values.kubearmorConfigMap.alertThrottling | quote }}
maxAlertPerSec: {{ .Values.kubearmorConfigMap.maxAlertPerSec | quote }}
throttleSec: {{ .Values.kubearmorConfigMap.throttleSec | quote }}
kind: ConfigMap
metadata:
labels:
Expand Down

0 comments on commit 4015420

Please sign in to comment.