diff --git a/charts/sbom-operator/Chart.yaml b/charts/sbom-operator/Chart.yaml index c6d49a7..339d996 100644 --- a/charts/sbom-operator/Chart.yaml +++ b/charts/sbom-operator/Chart.yaml @@ -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 diff --git a/charts/sbom-operator/README.md b/charts/sbom-operator/README.md index f949eb7..7b82935 100644 --- a/charts/sbom-operator/README.md +++ b/charts/sbom-operator/README.md @@ -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 | `{}` | diff --git a/charts/sbom-operator/templates/deployment.yaml b/charts/sbom-operator/templates/deployment.yaml index 6f5063a..e002025 100644 --- a/charts/sbom-operator/templates/deployment.yaml +++ b/charts/sbom-operator/templates/deployment.yaml @@ -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 }} diff --git a/charts/sbom-operator/values.yaml b/charts/sbom-operator/values.yaml index 0d4c3a1..8051ae0 100644 --- a/charts/sbom-operator/values.yaml +++ b/charts/sbom-operator/values.yaml @@ -4,7 +4,7 @@ image: repository: ghcr.io/ckotzbauer/sbom-operator - tag: 0.1.0 + tag: "" pullPolicy: IfNotPresent args: {}