feat: update to sbom-operator@0.2.0
Signed-off-by: Christian Kotzbauer <git@ckotzbauer.de>
This commit is contained in:
parent
34331b9b4f
commit
e4bfd5d895
|
|
@ -1,8 +1,8 @@
|
||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
description: Catalogue all images of a Kubernetes cluster to Git with Syft
|
description: Catalogue all images of a Kubernetes cluster to Git with Syft
|
||||||
name: sbom-operator
|
name: sbom-operator
|
||||||
version: 0.1.3
|
version: 0.2.0
|
||||||
appVersion: 0.1.0
|
appVersion: 0.2.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
|
||||||
|
|
|
||||||
|
|
@ -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.1.0` |
|
| `image.tag` | container image tag | `0.2.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 | `{}` |
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@ spec:
|
||||||
serviceAccountName: {{ template "app.serviceAccountName" . }}
|
serviceAccountName: {{ template "app.serviceAccountName" . }}
|
||||||
containers:
|
containers:
|
||||||
- name: {{ .Chart.Name }}
|
- name: {{ .Chart.Name }}
|
||||||
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
|
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
|
||||||
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
||||||
args:
|
args:
|
||||||
{{- range $key, $value := .Values.args }}
|
{{- range $key, $value := .Values.args }}
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
image:
|
image:
|
||||||
repository: ghcr.io/ckotzbauer/sbom-operator
|
repository: ghcr.io/ckotzbauer/sbom-operator
|
||||||
tag: 0.1.0
|
tag: ""
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
args: {}
|
args: {}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue