Add imagePullSecrets to vulnerability_operator deployment (#140)
* Add imagePullSecrets to vulnerability_operator deployment * Add values example * default pull secret value is empty array * Minor update chart version
This commit is contained in:
parent
a4d0285e0f
commit
e9bc4929c9
|
|
@ -1,7 +1,7 @@
|
|||
apiVersion: v2
|
||||
description: Scans SBOMs for vulnerabilities
|
||||
name: vulnerability-operator
|
||||
version: 0.15.0
|
||||
version: 0.16.0
|
||||
appVersion: 0.15.0
|
||||
home: https://github.com/ckotzbauer/vulnerability-operator
|
||||
sources:
|
||||
|
|
|
|||
|
|
@ -77,6 +77,10 @@ spec:
|
|||
configMap:
|
||||
name: {{ template "app.name" . }}
|
||||
{{- end }}
|
||||
{{- with .Values.image.pullSecrets }}
|
||||
imagePullSecrets:
|
||||
{{ toYaml . | indent 8 }}
|
||||
{{- end }}
|
||||
{{- with .Values.nodeSelector }}
|
||||
nodeSelector:
|
||||
{{ toYaml . | indent 8 }}
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@ image:
|
|||
repository: ghcr.io/ckotzbauer/vulnerability-operator
|
||||
tag: ""
|
||||
pullPolicy: IfNotPresent
|
||||
pullSecrets: []
|
||||
|
||||
args: {}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue