Merge pull request #84 from ckotzbauer/feature/sbom-operator-0.2.0

feat: update to sbom-operator@0.2.0
This commit is contained in:
Christian Kotzbauer 2022-01-21 08:30:17 +01:00 committed by GitHub
commit cefad2444d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 5 deletions

View File

@ -1,8 +1,8 @@
apiVersion: v2
description: Catalogue all images of a Kubernetes cluster to Git with Syft
name: sbom-operator
version: 0.1.3
appVersion: 0.1.0
version: 0.2.0
appVersion: 0.2.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.1.0` |
| `image.tag` | container image tag | `0.2.0` |
| `image.pullPolicy` | container image pull policy | `IfNotPresent` |
| `args` | argument object for cli-args | `{}` |
| `envVars` | environment variables | `{}` |

View File

@ -20,7 +20,7 @@ spec:
serviceAccountName: {{ template "app.serviceAccountName" . }}
containers:
- name: {{ .Chart.Name }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
args:
{{- range $key, $value := .Values.args }}

View File

@ -4,7 +4,7 @@
image:
repository: ghcr.io/ckotzbauer/sbom-operator
tag: 0.1.0
tag: ""
pullPolicy: IfNotPresent
args: {}