update vulnerability-operator to 0.9.0
Signed-off-by: Christian Kotzbauer <git@ckotzbauer.de>
This commit is contained in:
parent
ca5f042caa
commit
76a25d65c3
|
|
@ -1,8 +1,8 @@
|
||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
description: Scans SBOMs for vulnerabilities
|
description: Scans SBOMs for vulnerabilities
|
||||||
name: vulnerability-operator
|
name: vulnerability-operator
|
||||||
version: 0.8.1
|
version: 0.9.0
|
||||||
appVersion: 0.8.1
|
appVersion: 0.9.0
|
||||||
home: https://github.com/ckotzbauer/vulnerability-operator
|
home: https://github.com/ckotzbauer/vulnerability-operator
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/ckotzbauer/vulnerability-operator
|
- https://github.com/ckotzbauer/vulnerability-operator
|
||||||
|
|
|
||||||
|
|
@ -31,7 +31,7 @@ The following table lists the configurable parameters of the vulnerability-opera
|
||||||
| Parameter | Description | Default |
|
| Parameter | Description | Default |
|
||||||
| -------------------------------------- | ------------------------------------------------- | --------------------------------------------- |
|
| -------------------------------------- | ------------------------------------------------- | --------------------------------------------- |
|
||||||
| `image.repository` | container image repository | `ghcr.io/ckotzbauer/vulnerability-operator` |
|
| `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` |
|
| `image.pullPolicy` | container image pull policy | `IfNotPresent` |
|
||||||
| `args` | argument object for cli-args | `{}` |
|
| `args` | argument object for cli-args | `{}` |
|
||||||
| `envVars` | environment variables | `{}` |
|
| `envVars` | environment variables | `{}` |
|
||||||
|
|
@ -41,6 +41,7 @@ The following table lists the configurable parameters of the vulnerability-opera
|
||||||
| `affinity` | node affinity for pod assignment | `{}` |
|
| `affinity` | node affinity for pod assignment | `{}` |
|
||||||
| `podAnnotations` | annotations to add to each pod | `{}` |
|
| `podAnnotations` | annotations to add to each pod | `{}` |
|
||||||
| `resources` | pod resource requests & limits | See [values.yaml](values.yaml) |
|
| `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) |
|
| `securityContext` | container securityContext | See [values.yaml](values.yaml) |
|
||||||
| `serviceAccount.create` | Should we create a ServiceAccount | `true` |
|
| `serviceAccount.create` | Should we create a ServiceAccount | `true` |
|
||||||
| `serviceAccount.name` | Name of the ServiceAccount to use | null |
|
| `serviceAccount.name` | Name of the ServiceAccount to use | null |
|
||||||
|
|
|
||||||
|
|
@ -69,6 +69,9 @@ spec:
|
||||||
emptyDir: {}
|
emptyDir: {}
|
||||||
- name: tmp
|
- name: tmp
|
||||||
emptyDir: {}
|
emptyDir: {}
|
||||||
|
{{- if .Values.extraVolumes }}
|
||||||
|
{{- toYaml .Values.extraVolumes | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
{{- if .Values.ignoreRules }}
|
{{- if .Values.ignoreRules }}
|
||||||
- name: grype
|
- name: grype
|
||||||
configMap:
|
configMap:
|
||||||
|
|
|
||||||
|
|
@ -86,3 +86,5 @@ nodeSelector: {}
|
||||||
tolerations: []
|
tolerations: []
|
||||||
|
|
||||||
affinity: {}
|
affinity: {}
|
||||||
|
|
||||||
|
extraVolumes: []
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue