Skip to content

Commit fd7f1b1

Browse files
committed
release(sysdig-deploy,node-analyzer): kspm-analyzer v1.44.45
1 parent 7855622 commit fd7f1b1

File tree

6 files changed

+13
-6
lines changed

6 files changed

+13
-6
lines changed

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.35.4
5+
version: 1.35.5
66
appVersion: 12.9.2
77
keywords:
88
- monitoring

charts/node-analyzer/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,13 +248,14 @@ The following table lists the configurable parameters of the Sysdig Node Analyze
248248
| `nodeAnalyzer.tolerations` | Specifies the tolerations for scheduling. | <pre>node-role.kubernetes.io/master:NoSchedule,<br>node-role.kubernetes.io/control-plane:NoSchedule</pre> |
249249
| `nodeAnalyzer.kspmAnalyzer.debug` | Set to true to show KSPM node analyzer debug logging, which is useful for troubleshooting. | `false` |
250250
| `nodeAnalyzer.kspmAnalyzer.image.repository` | Specifies the image repository to pull the KSPM node analyzer from. | `sysdig/kspm-analyzer` |
251-
| `nodeAnalyzer.kspmAnalyzer.image.tag` | Specifies the image tag for the KSPM node analyzer image to be pulled. | `1.44.44` |
251+
| `nodeAnalyzer.kspmAnalyzer.image.tag` | Specifies the image tag for the KSPM node analyzer image to be pulled. | `1.44.45` |
252252
| `nodeAnalyzer.kspmAnalyzer.image.digest` | Specifies the image digest to pull. | ` ` |
253253
| `nodeAnalyzer.kspmAnalyzer.image.pullPolicy` | Specifies the The image pull policy for the KSPM node analyzer. | `""` |
254254
| `nodeAnalyzer.kspmAnalyzer.includeSensitivePermissions` | Grant the service account elevated permissions to run CIS Benchmark for OS4. | `false` |
255255
| `nodeAnalyzer.kspmAnalyzer.http_proxy` | Sets `HTTP_PROXY` on the KSPM Analyzer container. | `""` |
256256
| `nodeAnalyzer.kspmAnalyzer.https_proxy` | Sets `HTTPS_PROXY` on the KSPM Analyzer container. | `""` |
257257
| `nodeAnalyzer.kspmAnalyzer.no_proxy` | Sets `NO_PROXY` on the KSPM Analyzer container. | `""` |
258+
| `nodeAnalyzer.kspmAnalyzer.transportLayer` | Sets the transport used by the KSPM Analyzer to communicate with Sysdig backend (http or nats). | `"http"` |
258259
| `nodeAnalyzer.kspmAnalyzer.resources.requests.cpu` | Specifies the KSPM node analyzer CPU requests per node. | `150m` |
259260
| `nodeAnalyzer.kspmAnalyzer.resources.requests.memory` | Specifies the KSPM node analyzer memory requests per node. | `256Mi` |
260261
| `nodeAnalyzer.kspmAnalyzer.resources.limits.cpu` | Specifies the KSPM node analyzer CPU limits per node. | `500m` |

charts/node-analyzer/templates/configmap-kspm-analyzer.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ data:
1313
{{- $env = "DEVELOPMENT" -}}
1414
{{ end }}
1515
environment: {{ $env }}
16+
api_endpoint: {{ include "nodeAnalyzer.apiEndpoint" . }}
1617
external_nats_url: {{ include "nodeAnalyzer.natsUrl" . }}
1718
nats_max_reconnect: {{ .Values.nodeAnalyzer.natsMaxReconnect | default 0 | quote }}
1819
nats_max_reconnect_failures: {{ .Values.nodeAnalyzer.natsMaxReconnectFailures | default 60 | quote }}

charts/node-analyzer/templates/daemonset-node-analyzer.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,11 @@ spec:
208208
name: {{ ( include "nodeAnalyzer.accessKeySecret" .) }}
209209
{{- end }}
210210
key: access-key
211+
- name: API_ENDPOINT
212+
valueFrom:
213+
configMapKeyRef:
214+
name: {{ .Release.Name }}-kspm-analyzer
215+
key: api_endpoint
211216
- name: ENVIRONMENT
212217
valueFrom:
213218
configMapKeyRef:

charts/node-analyzer/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -435,14 +435,14 @@ nodeAnalyzer:
435435
debug: false
436436
image:
437437
repository: sysdig/kspm-analyzer
438-
tag: 1.44.44
438+
tag: 1.44.45-rc4
439439
digest: null
440440
pullPolicy: null
441441
# Permissions for OCP4, previously only added for benchmarkrunner
442442
includeSensitivePermissions: false
443443

444444
# http or nats
445-
transportLayer: nats
445+
transportLayer: http
446446

447447
# Proxy configuration variables
448448
httpProxy: null

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.83.1
5+
version: 1.83.2
66
maintainers:
77
- name: AlbertoBarba
88
@@ -36,7 +36,7 @@ dependencies:
3636
- name: node-analyzer
3737
# repository: https://charts.sysdig.com
3838
repository: file://../node-analyzer
39-
version: ~1.35.4
39+
version: ~1.35.5
4040
alias: nodeAnalyzer
4141
condition: nodeAnalyzer.enabled
4242
- name: cluster-scanner

0 commit comments

Comments
 (0)