feat: updated sbom- and vulnerability-operator (#113)

* feat: updated sbom- and vulnerability-operator

Signed-off-by: Christian Kotzbauer <git@ckotzbauer.de>

* fix: remove trailing whitespaces

Signed-off-by: Christian Kotzbauer <git@ckotzbauer.de>

* fix: add another if

Signed-off-by: Christian Kotzbauer <git@ckotzbauer.de>
This commit is contained in:
Christian Kotzbauer 2022-07-24 12:54:05 +02:00 committed by GitHub
parent 8ca92b51a2
commit 7a8b180d42
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 10 additions and 8 deletions

View File

@ -1,8 +1,8 @@
apiVersion: v2 apiVersion: v2
description: Catalogue all images of a Kubernetes cluster to multiple targets with Syft description: Catalogue all images of a Kubernetes cluster to multiple targets with Syft
name: sbom-operator name: sbom-operator
version: 0.14.0 version: 0.14.1
appVersion: 0.13.0 appVersion: 0.14.0
home: https://github.com/ckotzbauer/sbom-operator home: https://github.com/ckotzbauer/sbom-operator
sources: sources:
- https://github.com/ckotzbauer/sbom-operator - 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 | | Parameter | Description | Default |
| -------------------------------------- | ------------------------------------------------- | ---------------------------------------- | | -------------------------------------- | ------------------------------------------------- | ---------------------------------------- |
| `image.repository` | container image repository | `ghcr.io/ckotzbauer/sbom-operator` | | `image.repository` | container image repository | `ghcr.io/ckotzbauer/sbom-operator` |
| `image.tag` | container image tag | `0.13.0` | | `image.tag` | container image tag | `0.14.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 | `{}` |

View File

@ -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.7.2 version: 0.8.0
appVersion: 0.7.2 appVersion: 0.8.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

View File

@ -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.7.2` | | `image.tag` | container image tag | `0.8.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 | `{}` |

View File

@ -60,8 +60,10 @@ spec:
name: work name: work
- mountPath: /tmp - mountPath: /tmp
name: tmp name: tmp
{{- if .Values.ignoreRules }}
- mountPath: /vuln - mountPath: /vuln
name: grype name: grype
{{- end }}
volumes: volumes:
- name: work - name: work
emptyDir: {} emptyDir: {}