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
|
apiVersion: v2
|
||||||
description: Scans SBOMs for vulnerabilities
|
description: Scans SBOMs for vulnerabilities
|
||||||
name: vulnerability-operator
|
name: vulnerability-operator
|
||||||
version: 0.15.0
|
version: 0.16.0
|
||||||
appVersion: 0.15.0
|
appVersion: 0.15.0
|
||||||
home: https://github.com/ckotzbauer/vulnerability-operator
|
home: https://github.com/ckotzbauer/vulnerability-operator
|
||||||
sources:
|
sources:
|
||||||
|
|
|
||||||
|
|
@ -77,6 +77,10 @@ spec:
|
||||||
configMap:
|
configMap:
|
||||||
name: {{ template "app.name" . }}
|
name: {{ template "app.name" . }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- with .Values.image.pullSecrets }}
|
||||||
|
imagePullSecrets:
|
||||||
|
{{ toYaml . | indent 8 }}
|
||||||
|
{{- end }}
|
||||||
{{- with .Values.nodeSelector }}
|
{{- with .Values.nodeSelector }}
|
||||||
nodeSelector:
|
nodeSelector:
|
||||||
{{ toYaml . | indent 8 }}
|
{{ toYaml . | indent 8 }}
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,7 @@ image:
|
||||||
repository: ghcr.io/ckotzbauer/vulnerability-operator
|
repository: ghcr.io/ckotzbauer/vulnerability-operator
|
||||||
tag: ""
|
tag: ""
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
pullSecrets: []
|
||||||
|
|
||||||
args: {}
|
args: {}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue