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:
Steffen Müller (HG) 2023-02-23 08:29:09 +01:00 committed by GitHub
parent a4d0285e0f
commit e9bc4929c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 1 deletions

View File

@ -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:

View File

@ -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 }}

View File

@ -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: {}