-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(node-analyzer): Allow setting parameters for runtime and host sc…
…anner probes in Daemoset (#1940) Co-authored-by: Mike Bryant <[email protected]>
- Loading branch information
1 parent
e8c08b0
commit 8b367c3
Showing
5 changed files
with
141 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
suite: Test Daemonset Abc | ||
templates: | ||
- templates/daemonset-node-analyzer.yaml | ||
# For checksums | ||
- templates/runtimeScanner/runtime-scanner-configmap.yaml | ||
- templates/configmap-host-scanner.yaml | ||
- clusterrole-node-analyzer.yaml | ||
- clusterrolebinding-node-analyzer.yaml | ||
- configmap-benchmark-runner.yaml | ||
- configmap-host-analyzer.yaml | ||
- configmap-image-analyzer.yaml | ||
- secrets.yaml | ||
- serviceaccount-node-analyzer.yaml | ||
values: | ||
- ./default_required_values.yaml | ||
tests: | ||
- it: assert default sysdig-runtime-scanner probes | ||
set: | ||
nodeAnalyzer: | ||
runtimeScanner: | ||
deploy: true | ||
asserts: | ||
- equal: | ||
path: spec.template.spec.containers[?(@.name == "sysdig-runtime-scanner")].livenessProbe.initialDelaySeconds | ||
value: 90 | ||
- equal: | ||
path: spec.template.spec.containers[?(@.name == "sysdig-runtime-scanner")].livenessProbe.periodSeconds | ||
value: 3 | ||
- equal: | ||
path: spec.template.spec.containers[?(@.name == "sysdig-runtime-scanner")].readinessProbe.initialDelaySeconds | ||
value: 90 | ||
- equal: | ||
path: spec.template.spec.containers[?(@.name == "sysdig-runtime-scanner")].readinessProbe.periodSeconds | ||
value: 3 | ||
templates: | ||
- templates/daemonset-node-analyzer.yaml | ||
- it: assert custom sysdig-runtime-scanner probess | ||
set: | ||
nodeAnalyzer: | ||
runtimeScanner: | ||
deploy: true | ||
livenessProbe: | ||
probe: | ||
initialDelaySeconds: 10 | ||
periodSeconds: 5 | ||
readinessProbe: | ||
probe: | ||
initialDelaySeconds: 15 | ||
periodSeconds: 10 | ||
asserts: | ||
- equal: | ||
path: spec.template.spec.containers[?(@.name == "sysdig-runtime-scanner")].livenessProbe.initialDelaySeconds | ||
value: 10 | ||
- equal: | ||
path: spec.template.spec.containers[?(@.name == "sysdig-runtime-scanner")].livenessProbe.periodSeconds | ||
value: 5 | ||
- equal: | ||
path: spec.template.spec.containers[?(@.name == "sysdig-runtime-scanner")].readinessProbe.initialDelaySeconds | ||
value: 15 | ||
- equal: | ||
path: spec.template.spec.containers[?(@.name == "sysdig-runtime-scanner")].readinessProbe.periodSeconds | ||
value: 10 | ||
templates: | ||
- templates/daemonset-node-analyzer.yaml | ||
- it: assert default sysdig-host-scanner probes | ||
set: | ||
nodeAnalyzer: | ||
hostScanner: | ||
deploy: true | ||
asserts: | ||
- equal: | ||
path: spec.template.spec.containers[?(@.name == "sysdig-host-scanner")].livenessProbe.initialDelaySeconds | ||
value: 90 | ||
- equal: | ||
path: spec.template.spec.containers[?(@.name == "sysdig-host-scanner")].livenessProbe.periodSeconds | ||
value: 3 | ||
- equal: | ||
path: spec.template.spec.containers[?(@.name == "sysdig-host-scanner")].readinessProbe.initialDelaySeconds | ||
value: 90 | ||
- equal: | ||
path: spec.template.spec.containers[?(@.name == "sysdig-host-scanner")].readinessProbe.periodSeconds | ||
value: 3 | ||
templates: | ||
- templates/daemonset-node-analyzer.yaml | ||
- it: assert custom sysdig-host-scanner probess | ||
set: | ||
nodeAnalyzer: | ||
hostScanner: | ||
deploy: true | ||
livenessProbe: | ||
probe: | ||
initialDelaySeconds: 10 | ||
periodSeconds: 5 | ||
readinessProbe: | ||
probe: | ||
initialDelaySeconds: 15 | ||
periodSeconds: 10 | ||
asserts: | ||
- equal: | ||
path: spec.template.spec.containers[?(@.name == "sysdig-host-scanner")].livenessProbe.initialDelaySeconds | ||
value: 10 | ||
- equal: | ||
path: spec.template.spec.containers[?(@.name == "sysdig-host-scanner")].livenessProbe.periodSeconds | ||
value: 5 | ||
- equal: | ||
path: spec.template.spec.containers[?(@.name == "sysdig-host-scanner")].readinessProbe.initialDelaySeconds | ||
value: 15 | ||
- equal: | ||
path: spec.template.spec.containers[?(@.name == "sysdig-host-scanner")].readinessProbe.periodSeconds | ||
value: 10 | ||
templates: | ||
- templates/daemonset-node-analyzer.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ apiVersion: v2 | |
name: sysdig-deploy | ||
description: A chart with various Sysdig components for Kubernetes | ||
type: application | ||
version: 1.64.10 | ||
version: 1.65.0 | ||
maintainers: | ||
- name: AlbertoBarba | ||
email: [email protected] | ||
|
@@ -36,7 +36,7 @@ dependencies: | |
- name: node-analyzer | ||
# repository: https://charts.sysdig.com | ||
repository: file://../node-analyzer | ||
version: ~1.31.7 | ||
version: ~1.32.0 | ||
alias: nodeAnalyzer | ||
condition: nodeAnalyzer.enabled | ||
- name: cluster-scanner | ||
|