-
Notifications
You must be signed in to change notification settings - Fork 128
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(hostScanner): Add container scanner feature [SSPROD-32268] #1500
Conversation
fece9e1
to
e954d81
Compare
e954d81
to
3de594b
Compare
charts/node-analyzer/Chart.yaml
Outdated
@@ -3,7 +3,7 @@ name: node-analyzer | |||
description: Sysdig Node Analyzer | |||
|
|||
# currently matching Sysdig's appVersion 1.14.34 | |||
version: 1.18.8 | |||
version: 1.18.9 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
version: 1.18.9 | |
version: 1.19.0 |
charts/node-analyzer/README.md
Outdated
| `nodeAnalyzer.hostScanner.scanContainers.enabled` | Set to `true` to scan containers | `false` | | ||
| `nodeAnalyzer.hostScanner.scanContainers.dockerSocketPath` | Specifies the path to docker socket | ` ` | | ||
| `nodeAnalyzer.hostScanner.scanContainers.podmanSocketPath` | Specifies the path to podman socket | ` ` | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| `nodeAnalyzer.hostScanner.scanContainers.enabled` | Set to `true` to scan containers | `false` | | |
| `nodeAnalyzer.hostScanner.scanContainers.dockerSocketPath` | Specifies the path to docker socket | ` ` | | |
| `nodeAnalyzer.hostScanner.scanContainers.podmanSocketPath` | Specifies the path to podman socket | ` ` | | |
| `nodeAnalyzer.hostScanner.scanContainers.enabled` | Set to `true` to scan containers | `false` | | |
| `nodeAnalyzer.hostScanner.scanContainers.dockerSocketPath` | Specifies the path to docker socket | ` ` | | |
| `nodeAnalyzer.hostScanner.scanContainers.podmanSocketPath` | Specifies the path to podman socket | ` ` | |
Indentation shall be revised.
I'd also change the description for the paths Specifies the optional path to docker socket. By default it will use unix://...
.
charts/sysdig-deploy/Chart.yaml
Outdated
@@ -2,7 +2,7 @@ apiVersion: v2 | |||
name: sysdig-deploy | |||
description: A chart with various Sysdig components for Kubernetes | |||
type: application | |||
version: 1.31.1 | |||
version: 1.31.2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
version: 1.31.2 | |
version: 1.32.0 |
We are releasing a new feature, so I'd bump at least the minor
;)
- name: SCAN_CONTAINERS_ENABLED | ||
valueFrom: | ||
configMapKeyRef: | ||
name: {{ .Release.Name }}-host-scanner | ||
key: container_scan_enabled | ||
optional: true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- name: SCAN_CONTAINERS_ENABLED | |
valueFrom: | |
configMapKeyRef: | |
name: {{ .Release.Name }}-host-scanner | |
key: container_scan_enabled | |
optional: true | |
- name: SCAN_CONTAINERS_ENABLED | |
value: "true" |
3de594b
to
23fcd37
Compare
charts/node-analyzer/README.md
Outdated
| `nodeAnalyzer.hostScanner.scanContainers.enabled` | Set to `true` to scan containers | `false` | | ||
| `nodeAnalyzer.hostScanner.scanContainers.dockerSocketPath` | Specifies the path to docker socket | `unix:///var/run/docker.sock` | | ||
| `nodeAnalyzer.hostScanner.scanContainers.podmanSocketPath` | Specifies the path to podman socket | `unix:///var/run/podman.sock` | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Indentation still seems to be slightly off here.
1a19302
to
ffef47e
Compare
No description provided.