Skip to content

Commit d35bba0

Browse files
Merge branch 'main' into chore/shield-add-rapid-response-password-secrets
2 parents 494d45a + 685bc11 commit d35bba0

File tree

18 files changed

+54
-21
lines changed

18 files changed

+54
-21
lines changed

charts/agent/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ Manual edits are supported only below '## Change Log' and should be used
1010
exclusively to fix incorrect entries and not to add new ones.
1111

1212
## Change Log
13+
# v2.3.3
14+
### New Features
15+
* **agent** [5a2d5f6a](https://github.com/sysdiglabs/charts/commit/5a2d5f6ae10ab7f2737cada4922bcb8af8a1806d): Enable the possibility to specify an existing secret containing the local forwarder configuration [FR-2992] ([#2382](https://github.com/sysdiglabs/charts/issues/2382))
16+
# v2.3.2
17+
### Chores
18+
* **agent,kspm-collector,node-analyzer** [bd84e2d2](https://github.com/sysdiglabs/charts/commit/bd84e2d2159856df26b636f9b0e2e7fcfd0c7a3d): remove bitnami/kubectl usage ([#2385](https://github.com/sysdiglabs/charts/issues/2385))
1319
# v2.3.1
1420
### New Features
1521
* **agent,shield,sysdig-deploy** [32be15a2](https://github.com/sysdiglabs/charts/commit/32be15a2247281ff9b325c27a570a8c48d118a20): release agent 14.2.1 ([#2374](https://github.com/sysdiglabs/charts/issues/2374))

charts/agent/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ sources:
3030
- https://app.sysdigcloud.com/#/settings/user
3131
- https://github.com/draios/sysdig
3232
type: application
33-
version: 2.3.2
33+
version: 2.3.3

charts/agent/RELEASE-NOTES.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# What's Changed
22

33
### New Features
4-
- **agent,shield,sysdig-deploy** [32be15a2](https://github.com/sysdiglabs/charts/commit/32be15a2247281ff9b325c27a570a8c48d118a20): release agent 14.2.1 ([#2374](https://github.com/sysdiglabs/charts/issues/2374))
5-
#### Full diff: https://github.com/sysdiglabs/charts/compare/agent-2.3.0...agent-2.3.1
4+
- **agent** [5a2d5f6a](https://github.com/sysdiglabs/charts/commit/5a2d5f6ae10ab7f2737cada4922bcb8af8a1806d): Enable the possibility to specify an existing secret containing the local forwarder configuration [FR-2992] ([#2382](https://github.com/sysdiglabs/charts/issues/2382))
5+
#### Full diff: https://github.com/sysdiglabs/charts/compare/agent-2.3.2...agent-2.3.3

charts/agent/templates/daemonset.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,11 @@ spec:
394394
{{- if .Values.localForwarder.enabled }}
395395
- name: local-forwarder-config
396396
secret:
397+
{{- if eq .Values.localForwarder.existingSecretName "" }}
397398
secretName: {{ include "agent.localForwarderSecretName" . }}
399+
{{- else }}
400+
secretName: {{ .Values.localForwarder.existingSecretName }}
401+
{{- end }}
398402
{{- end }}
399403
- name: sysdig-agent-secrets
400404
secret:

charts/agent/templates/secrets.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ type: Opaque
4949
data:
5050
{{ include "agent.httpProxyCredentials" . | indent 2 }}
5151
{{- end }}
52-
{{- if .Values.localForwarder.enabled }}
52+
{{- if and .Values.localForwarder.enabled (eq .Values.localForwarder.existingSecretName "") }}
5353
---
5454
apiVersion: v1
5555
kind: Secret

charts/agent/values.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -341,6 +341,11 @@ leaderelection:
341341
enable: false
342342
localForwarder:
343343
enabled: false
344+
# If existingSecretName is set to anything different than an empty string
345+
# the local forwarder secret generation is skipped and the existing secret
346+
# name is used to mount the secret volume instead of the one defined in
347+
# the secrets template
348+
existingSecretName: ""
344349
transmitMessageTypes:
345350
- POLICY_EVENTS
346351
- SECURE_AUDIT

charts/kspm-collector/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ Manual edits are supported only below '## Change Log' and should be used
1010
exclusively to fix incorrect entries and not to add new ones.
1111

1212
## Change Log
13+
# v0.18.6
14+
### Chores
15+
* **agent,kspm-collector,node-analyzer** [bd84e2d2](https://github.com/sysdiglabs/charts/commit/bd84e2d2159856df26b636f9b0e2e7fcfd0c7a3d): remove bitnami/kubectl usage ([#2385](https://github.com/sysdiglabs/charts/issues/2385))
1316
# v0.18.5
1417
### Chores
1518
* **deps** [3379418d](https://github.com/sysdiglabs/charts/commit/3379418d6f2241168397f3eba3da9fc6a40d7e6e): bump kspm-collector to 1.39.15 ([#2378](https://github.com/sysdiglabs/charts/issues/2378))
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# What's Changed
22

33
### Chores
4-
- **deps** [3379418d](https://github.com/sysdiglabs/charts/commit/3379418d6f2241168397f3eba3da9fc6a40d7e6e): bump kspm-collector to 1.39.15 ([#2378](https://github.com/sysdiglabs/charts/issues/2378))
5-
#### Full diff: https://github.com/sysdiglabs/charts/compare/kspm-collector-0.18.4...kspm-collector-0.18.5
4+
- **agent,kspm-collector,node-analyzer** [bd84e2d2](https://github.com/sysdiglabs/charts/commit/bd84e2d2159856df26b636f9b0e2e7fcfd0c7a3d): remove bitnami/kubectl usage ([#2385](https://github.com/sysdiglabs/charts/issues/2385))
5+
#### Full diff: https://github.com/sysdiglabs/charts/compare/kspm-collector-0.18.5...kspm-collector-0.18.6

charts/node-analyzer/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ Manual edits are supported only below '## Change Log' and should be used
1010
exclusively to fix incorrect entries and not to add new ones.
1111

1212
## Change Log
13+
# v1.36.11
14+
### Chores
15+
* **node-analyzer** [212c12c9](https://github.com/sysdiglabs/charts/commit/212c12c98c213e4083b772f2d619edf1331f0012): bump sysdig/kspm-analyzer to 1.45.4 ([#2384](https://github.com/sysdiglabs/charts/issues/2384))
16+
# v1.36.10
17+
### Chores
18+
* **agent,kspm-collector,node-analyzer** [bd84e2d2](https://github.com/sysdiglabs/charts/commit/bd84e2d2159856df26b636f9b0e2e7fcfd0c7a3d): remove bitnami/kubectl usage ([#2385](https://github.com/sysdiglabs/charts/issues/2385))
1319
# v1.36.9
1420
### Chores
1521
* **nodeanalyzer** [ac7a53c4](https://github.com/sysdiglabs/charts/commit/ac7a53c44c46b557cb3db8d7886cbf40c4658888): bumped host scanner to the latest release ([#2375](https://github.com/sysdiglabs/charts/issues/2375))

charts/node-analyzer/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: node-analyzer
33
description: Sysdig Node Analyzer
44
# currently matching Sysdig's appVersion 1.14.34
5-
version: 1.36.10
5+
version: 1.36.11
66
appVersion: 12.9.2
77
keywords:
88
- monitoring

0 commit comments

Comments
 (0)