Skip to content

Commit 8f19ed4

Browse files
feat(cluster-scanner): bumped cluster-scanner images to 0.5.1 (#1412)
1 parent 99760eb commit 8f19ed4

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

charts/cluster-scanner/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Sysdig Cluster Scanner
44

55
type: application
66

7-
version: 0.8.0
7+
version: 0.8.1
88

99
appVersion: "0.1.0"
1010
home: https://www.sysdig.com/

charts/cluster-scanner/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ $ pre-commit run -a
2525
$ helm repo add sysdig https://charts.sysdig.com
2626
$ helm repo update
2727
$ helm upgrade --install sysdig-cluster-scanner sysdig/cluster-scanner \
28-
--create-namespace -n sysdig --version=0.8.0 \
28+
--create-namespace -n sysdig --version=0.8.1 \
2929
--set global.clusterConfig.name=CLUSTER_NAME \
3030
--set global.sysdig.region=SYSDIG_REGION \
3131
--set global.sysdig.accessKey=YOUR-KEY-HERE
@@ -55,7 +55,7 @@ To install the chart with the release name `cluster-scanner`, run:
5555

5656
```console
5757
$ helm upgrade --install sysdig-cluster-scanner sysdig/cluster-scanner \
58-
--create-namespace -n sysdig --version=0.8.0 \
58+
--create-namespace -n sysdig --version=0.8.1 \
5959
--set global.clusterConfig.name=CLUSTER_NAME \
6060
--set global.sysdig.region=SYSDIG_REGION \
6161
--set global.sysdig.accessKey=YOUR-KEY-HERE
@@ -109,7 +109,7 @@ The following table lists the configurable parameters of the `cluster-scanner` c
109109
| sslVerifyCertificate | Optional parameter used to check the compatibility of cluster-scanner component versions with the on-premised backend version. If you are running an on-prem version of the Sysdig backend, you MUST set this parameter with the version of Sysdig backend you are using. If you are runinng on SaaS, do NOT provide this parameter. E.g. if `onPremCompatibilityVersion=6.2`, we ensure that the image tag is < 0.5.0 for both the Runtime Status Integrator and the Image SBOM Extractor. onPremCompatibilityVersion: "6.2" Can be set to false to allow insecure connections to the Sysdig backend, such as for on-premise installs that use self-signed certificates. By default, certificates are always verified. | <code>true</code> |
110110
| runtimeStatusIntegrator.image.registry | The image registry to use for the Runtime Status Integrator component of Cluster Scanner | <code>quay.io</code> |
111111
| runtimeStatusIntegrator.image.repository | The image repository to use for pulling the Runtime Status Integrator image | <code>sysdig/runtime-status-integrator</code> |
112-
| runtimeStatusIntegrator.image.tag | | <code>"0.5.0"</code> |
112+
| runtimeStatusIntegrator.image.tag | | <code>"0.5.1"</code> |
113113
| runtimeStatusIntegrator.multiCluster | When the Cluster Scanner is running in `multi` mode, set the secret name to be used to retrieve the kubeconfig configuration to connect to the clusters to inspect. | <code></code> |
114114
| runtimeStatusIntegrator.localCluster | Restrict access to specific Docker secrets when Cluster Scanner is running in `local` mode. The default behavior is listing all secrets. See `values.yaml` for an example. Optional. | <code></code> |
115115
| runtimeStatusIntegrator.ports.metrics | The port to be used to expose prometheus metrics for the Runtime Status Integrator | <code>25000</code> |
@@ -122,7 +122,7 @@ The following table lists the configurable parameters of the `cluster-scanner` c
122122
| runtimeStatusIntegrator.natsJS.user | The username to be used in the NATS JetStream instance the Runtime Status Integrator is going to start | <code>"default-user"</code> |
123123
| imageSbomExtractor.image.registry | The image registry to use for the Image SBOM Extractor component of Cluster Scanner | <code>quay.io</code> |
124124
| imageSbomExtractor.image.repository | The image repository to use for pulling the Image SBOM Extractor image | <code>sysdig/image-sbom-extractor</code> |
125-
| imageSbomExtractor.image.tag | | <code>"0.5.0"</code> |
125+
| imageSbomExtractor.image.tag | | <code>"0.5.1"</code> |
126126
| imageSbomExtractor.ports.metrics | The port to be used to expose prometheus metrics for the Image SBOM Extractor | <code>25001</code> |
127127
| imageSbomExtractor.ports.probes | The port to be used for healthcheck probes for the Image SBOM Extractor | <code>7001</code> |
128128
| imageSbomExtractor.resources.limits.cpu | Image SBOM Extractor CPU limit per replica | <code>"1"</code> |
@@ -161,7 +161,7 @@ Specify each parameter using the **`--set key=value[,key=value]`** argument to `
161161

162162
```console
163163
$ helm upgrade --install sysdig-cluster-scanner sysdig/cluster-scanner \
164-
--create-namespace -n sysdig --version=0.8.0 \
164+
--create-namespace -n sysdig --version=0.8.1 \
165165
--set global.sysdig.region="us1"
166166
```
167167

@@ -170,7 +170,7 @@ installing the chart. For example:
170170

171171
```console
172172
$ helm upgrade --install sysdig-cluster-scanner sysdig/cluster-scanner \
173-
--create-namespace -n sysdig --version=0.8.0 \
173+
--create-namespace -n sysdig --version=0.8.1 \
174174
--values values.yaml
175175
```
176176

charts/cluster-scanner/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ runtimeStatusIntegrator:
104104
# The image repository to use for pulling the Runtime Status Integrator
105105
# image
106106
repository: sysdig/runtime-status-integrator
107-
tag: "0.5.0"
107+
tag: "0.5.1"
108108
# Params to manage leader election
109109
# Leader election is implemented leveraging the native capabilities of
110110
# Kubernetes see: https://kubernetes.io/blog/2016/01/simple-leader-election-with-kubernetes/
@@ -166,7 +166,7 @@ imageSbomExtractor:
166166
registry: quay.io
167167
# The image repository to use for pulling the Image SBOM Extractor image
168168
repository: sysdig/image-sbom-extractor
169-
tag: "0.5.0"
169+
tag: "0.5.1"
170170
ports:
171171
# The port to be used to expose prometheus metrics for the Image SBOM
172172
# Extractor

charts/sysdig-deploy/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: sysdig-deploy
33
description: A chart with various Sysdig components for Kubernetes
44
type: application
5-
version: 1.26.0
5+
version: 1.26.1
66
maintainers:
77
- name: AlbertoBarba
88
@@ -42,7 +42,7 @@ dependencies:
4242
- name: cluster-scanner
4343
# repository: https://charts.sysdig.com
4444
repository: file://../cluster-scanner
45-
version: ~0.8.0
45+
version: ~0.8.1
4646
alias: clusterScanner
4747
condition: clusterScanner.enabled
4848
- name: kspm-collector

0 commit comments

Comments
 (0)