Merge pull request #86 from ckotzbauer/feature/sbom-operator-0.3.0
Update sbom-operator to 0.3.0
This commit is contained in:
commit
1f26963508
|
|
@ -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 multiple targets with Syft
|
||||||
name: sbom-operator
|
name: sbom-operator
|
||||||
version: 0.2.0
|
version: 0.3.0
|
||||||
appVersion: 0.2.0
|
appVersion: 0.3.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
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# sbom-operator
|
# sbom-operator
|
||||||
|
|
||||||
> Catalogue all images of a Kubernetes cluster to Git with Syft.
|
> Catalogue all images of a Kubernetes cluster to multiple targets with Syft.
|
||||||
|
|
||||||
Learn more: [https://github.com/ckotzbauer/sbom-operator](https://github.com/ckotzbauer/sbom-operator)
|
Learn more: [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.2.0` |
|
| `image.tag` | container image tag | `0.3.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 | `{}` |
|
||||||
|
|
|
||||||
|
|
@ -18,3 +18,10 @@ rules:
|
||||||
- secrets
|
- secrets
|
||||||
verbs:
|
verbs:
|
||||||
- get
|
- get
|
||||||
|
- apiGroups:
|
||||||
|
- ""
|
||||||
|
resources:
|
||||||
|
- pods
|
||||||
|
verbs:
|
||||||
|
- get
|
||||||
|
- update
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue