Commit ca90b5d 1 parent 55089ce commit ca90b5d Copy full SHA for ca90b5d
File tree 2 files changed +17
-0
lines changed
charts/kubewarden-controller/templates
2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -143,6 +143,10 @@ Create the name of the service account to use for kubewarden-controller
143
143
{ {- end } }
144
144
- --extra-ca
145
145
- "/pki/ca.crt"
146
+ - --client-cert
147
+ - "/client-cert/tls.crt"
148
+ - --client-key
149
+ - "/client-cert/tls.key"
146
150
{ {- if .Values.auditScanner.outputScan } }
147
151
- --output-scan
148
152
{ {- end } }
Original file line number Diff line number Diff line change 35
35
items :
36
36
- key : ca.crt
37
37
path : " ca.crt"
38
+ - name : kubewarden-audit-scanner-client-cert
39
+ secret :
40
+ defaultMode : 420
41
+ secretName : kubewarden-audit-scanner-client-cert
42
+ items :
43
+ - key : tls.crt
44
+ path : " tls.crt"
45
+ - key : tls.key
46
+ path : " tls.key"
38
47
{{- if .Values.global.affinity }}
39
48
affinity : {{ .Values.global.affinity | toYaml | nindent 14 }}
40
49
{{- end }}
56
65
- mountPath : " /pki"
57
66
name : kubewarden-ca
58
67
readOnly : true
68
+ volumeMounts :
69
+ - mountPath : " /client-cert"
70
+ name : kubewarden-audit-scanner-client-cert
71
+ readOnly : true
59
72
securityContext :
60
73
{{- toYaml . | nindent 14 }}
61
74
{{- end }}
You can’t perform that action at this time.
0 commit comments