From b087bfa5fba13e559a6a9ffbc6c01bd1ca00622b Mon Sep 17 00:00:00 2001 From: draios-jenkins Date: Fri, 28 Feb 2025 10:40:38 +0100 Subject: [PATCH] chore(cluster-shield,shield,sysdig-deploy): Automatic bump to version 1.8.2 (#2168) Co-authored-by: francesco-furlan <10468205+francesco-furlan@users.noreply.github.com> Co-authored-by: Francesco Furlan --- charts/cluster-shield/Chart.yaml | 4 ++-- charts/cluster-shield/templates/secrets.yaml | 2 ++ charts/cluster-shield/tests/custom_ca_test.yaml | 7 +++++++ charts/cluster-shield/tests/proxy_settings_test.yaml | 3 +++ charts/shield/Chart.yaml | 2 +- charts/shield/README.md | 2 +- charts/shield/values.yaml | 2 +- charts/sysdig-deploy/Chart.yaml | 4 ++-- 8 files changed, 19 insertions(+), 7 deletions(-) diff --git a/charts/cluster-shield/Chart.yaml b/charts/cluster-shield/Chart.yaml index 4a68e4e83..661890ac5 100644 --- a/charts/cluster-shield/Chart.yaml +++ b/charts/cluster-shield/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: cluster-shield description: Cluster Shield Helm Chart for Kubernetes type: application -version: 1.8.1 -appVersion: "1.8.1" +version: 1.8.2 +appVersion: "1.8.2" maintainers: - name: AlbertoBarba email: alberto.barba@sysdig.com diff --git a/charts/cluster-shield/templates/secrets.yaml b/charts/cluster-shield/templates/secrets.yaml index ff2d3fc9c..0c5a0d917 100644 --- a/charts/cluster-shield/templates/secrets.yaml +++ b/charts/cluster-shield/templates/secrets.yaml @@ -14,6 +14,7 @@ apiVersion: v1 kind: Secret metadata: name: {{ include "cluster-shield.customCASecretName" . }} + namespace: {{ .Release.Namespace }} labels: {{- include "cluster-shield.labels" . | nindent 4 }} data: @@ -27,6 +28,7 @@ apiVersion: v1 kind: Secret metadata: name: {{ include "cluster-shield.proxySecretName" . }} + namespace: {{ .Release.Namespace }} labels: {{- include "cluster-shield.labels" . | nindent 4 }} data: diff --git a/charts/cluster-shield/tests/custom_ca_test.yaml b/charts/cluster-shield/tests/custom_ca_test.yaml index 2579a3306..7ec215fbe 100644 --- a/charts/cluster-shield/tests/custom_ca_test.yaml +++ b/charts/cluster-shield/tests/custom_ca_test.yaml @@ -18,6 +18,7 @@ tests: kind: Secret apiVersion: v1 name: cluster-shield-ca + namespace: shield-namespace not: true template: templates/secrets.yaml - notExists: @@ -48,6 +49,7 @@ tests: kind: Secret apiVersion: v1 name: cluster-shield-ca + namespace: shield-namespace template: templates/secrets.yaml documentIndex: 1 - equal: @@ -89,6 +91,7 @@ tests: kind: Secret apiVersion: v1 name: cluster-shield-ca + namespace: shield-namespace template: templates/secrets.yaml not: true - isSubset: @@ -124,6 +127,7 @@ tests: kind: Secret apiVersion: v1 name: cluster-shield-ca + namespace: shield-namespace template: templates/secrets.yaml not: true - isSubset: @@ -162,6 +166,7 @@ tests: kind: Secret apiVersion: v1 name: cluster-shield-ca + namespace: shield-namespace template: templates/secrets.yaml documentIndex: 1 - equal: @@ -205,6 +210,7 @@ tests: kind: Secret apiVersion: v1 name: cluster-shield-ca + namespace: shield-namespace template: templates/secrets.yaml not: true - isSubset: @@ -242,6 +248,7 @@ tests: kind: Secret apiVersion: v1 name: cluster-shield-ca + namespace: shield-namespace template: templates/secrets.yaml not: true - isSubset: diff --git a/charts/cluster-shield/tests/proxy_settings_test.yaml b/charts/cluster-shield/tests/proxy_settings_test.yaml index afdab13b2..e829443c3 100644 --- a/charts/cluster-shield/tests/proxy_settings_test.yaml +++ b/charts/cluster-shield/tests/proxy_settings_test.yaml @@ -31,6 +31,7 @@ tests: kind: Secret apiVersion: v1 name: sysdig-cluster-shield + namespace: shield-namespace template: templates/secrets.yaml - it: Test proxy configuration are stored in a secret and mounted as env vars @@ -80,6 +81,7 @@ tests: kind: Secret apiVersion: v1 name: sysdig-cluster-shield-proxy + namespace: shield-namespace template: templates/secrets.yaml documentIndex: 1 - equal: @@ -149,6 +151,7 @@ tests: kind: Secret apiVersion: v1 name: sysdig-cluster-shield-proxy + namespace: shield-namespace template: templates/secrets.yaml documentIndex: 1 - equal: diff --git a/charts/shield/Chart.yaml b/charts/shield/Chart.yaml index 065862f49..57e634ca1 100644 --- a/charts/shield/Chart.yaml +++ b/charts/shield/Chart.yaml @@ -13,5 +13,5 @@ maintainers: - name: mavimo email: marcovito.moscaritolo@sysdig.com type: application -version: 0.9.3 +version: 0.9.4 appVersion: "1.0.0" diff --git a/charts/shield/README.md b/charts/shield/README.md index e0052a549..6f8a624e7 100644 --- a/charts/shield/README.md +++ b/charts/shield/README.md @@ -172,7 +172,7 @@ The following table lists the configurable parameters of the `shield` chart and | host.volume_mounts | The custom volume mounts for the host shield | [] | | cluster.image.registry | The registry where the cluster shield image is stored | quay.io | | cluster.image.repository | The repository where the cluster shield image is stored | sysdig/cluster-shield | -| cluster.image.tag | The tag for the cluster shield image | 1.8.1 | +| cluster.image.tag | The tag for the cluster shield image | 1.8.2 | | cluster.image.pull_policy | The pull policy for the cluster shield image | IfNotPresent | | cluster.image.pull_secrets | The pull secrets for the cluster shield image | [] | | cluster.run_mode | The mode in which the cluster shield should run (Accepted Values: single-process, multi-process) | multi-process | diff --git a/charts/shield/values.yaml b/charts/shield/values.yaml index f608b9815..ef8905d8f 100644 --- a/charts/shield/values.yaml +++ b/charts/shield/values.yaml @@ -297,7 +297,7 @@ cluster: # The repository where the cluster shield image is stored repository: sysdig/cluster-shield # The tag for the cluster shield image - tag: 1.8.1 + tag: 1.8.2 # The pull policy for the cluster shield image pull_policy: IfNotPresent # The pull secrets for the cluster shield image diff --git a/charts/sysdig-deploy/Chart.yaml b/charts/sysdig-deploy/Chart.yaml index eef6e159c..253d921a4 100644 --- a/charts/sysdig-deploy/Chart.yaml +++ b/charts/sysdig-deploy/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: sysdig-deploy description: A chart with various Sysdig components for Kubernetes type: application -version: 1.77.3 +version: 1.77.4 maintainers: - name: AlbertoBarba email: alberto.barba@sysdig.com @@ -60,6 +60,6 @@ dependencies: - name: cluster-shield # repository: https://charts.sysdig.com repository: file://../cluster-shield - version: ~1.8.1 + version: ~1.8.2 alias: clusterShield condition: clusterShield.enabled