update sbom-operator to 0.17.0

Signed-off-by: Christian Kotzbauer <git@ckotzbauer.de>
This commit is contained in:
Christian Kotzbauer 2022-09-17 11:07:44 +02:00
parent 04411c0ae9
commit ca5f042caa
4 changed files with 9 additions and 3 deletions

View File

@ -1,8 +1,8 @@
apiVersion: v2
description: Catalogue all images of a Kubernetes cluster to multiple targets with Syft
name: sbom-operator
version: 0.16.0
appVersion: 0.16.0
version: 0.17.0
appVersion: 0.17.0
home: https://github.com/ckotzbauer/sbom-operator
sources:
- https://github.com/ckotzbauer/sbom-operator

View File

@ -31,7 +31,7 @@ The following table lists the configurable parameters of the sbom-operator chart
| Parameter | Description | Default |
| -------------------------------------- | ------------------------------------------------- | ---------------------------------------- |
| `image.repository` | container image repository | `ghcr.io/ckotzbauer/sbom-operator` |
| `image.tag` | container image tag | `0.16.0` |
| `image.tag` | container image tag | `0.17.0` |
| `image.pullPolicy` | container image pull policy | `IfNotPresent` |
| `image.pullSecrets` | image pull-secrets | `[]` |
| `args` | argument object for cli-args | `{}` |
@ -45,6 +45,7 @@ The following table lists the configurable parameters of the sbom-operator chart
| `serviceAccount.create` | Should we create a ServiceAccount | `true` |
| `serviceAccount.name` | Name of the ServiceAccount to use | null |
| `jobImageMode` | Whether or not a job-image is used. | `false` |
| `extraVolumes` | Extra volumes (needed for GithubApp PK). | `[]` |
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,

View File

@ -76,6 +76,9 @@ spec:
emptyDir: {}
- name: tmp
emptyDir: {}
{{- if .Values.extraVolumes }}
{{- toYaml .Values.extraVolumes | nindent 8 }}
{{- end }}
{{- with .Values.image.pullSecrets }}
imagePullSecrets:
{{ toYaml . | indent 8 }}

View File

@ -49,3 +49,5 @@ nodeSelector: {}
tolerations: []
affinity: {}
extraVolumes: []