update vulnerability-operator to 0.9.0

Signed-off-by: Christian Kotzbauer <git@ckotzbauer.de>
This commit is contained in:
Christian Kotzbauer 2022-09-17 20:01:25 +02:00
parent ca5f042caa
commit 76a25d65c3
4 changed files with 9 additions and 3 deletions

View File

@ -1,8 +1,8 @@
apiVersion: v2
description: Scans SBOMs for vulnerabilities
name: vulnerability-operator
version: 0.8.1
appVersion: 0.8.1
version: 0.9.0
appVersion: 0.9.0
home: https://github.com/ckotzbauer/vulnerability-operator
sources:
- https://github.com/ckotzbauer/vulnerability-operator

View File

@ -31,7 +31,7 @@ The following table lists the configurable parameters of the vulnerability-opera
| Parameter | Description | Default |
| -------------------------------------- | ------------------------------------------------- | --------------------------------------------- |
| `image.repository` | container image repository | `ghcr.io/ckotzbauer/vulnerability-operator` |
| `image.tag` | container image tag | `0.8.1` |
| `image.tag` | container image tag | `0.9.0` |
| `image.pullPolicy` | container image pull policy | `IfNotPresent` |
| `args` | argument object for cli-args | `{}` |
| `envVars` | environment variables | `{}` |
@ -41,6 +41,7 @@ The following table lists the configurable parameters of the vulnerability-opera
| `affinity` | node affinity for pod assignment | `{}` |
| `podAnnotations` | annotations to add to each pod | `{}` |
| `resources` | pod resource requests & limits | See [values.yaml](values.yaml) |
| `extraVolumes` | Extra volumes (needed for GithubApp PK). | `[]` |
| `securityContext` | container securityContext | See [values.yaml](values.yaml) |
| `serviceAccount.create` | Should we create a ServiceAccount | `true` |
| `serviceAccount.name` | Name of the ServiceAccount to use | null |

View File

@ -69,6 +69,9 @@ spec:
emptyDir: {}
- name: tmp
emptyDir: {}
{{- if .Values.extraVolumes }}
{{- toYaml .Values.extraVolumes | nindent 8 }}
{{- end }}
{{- if .Values.ignoreRules }}
- name: grype
configMap:

View File

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