Skip to content

Commit

Permalink
[sysdig] Fix NodeImageAnalyzer extraVolumes definition (sysdiglabs#144)
Browse files Browse the repository at this point in the history
  • Loading branch information
tembleking authored May 12, 2021
1 parent 9348cb8 commit a7a3e35
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion charts/sysdig/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: sysdig
version: 1.11.16
version: 1.11.17
appVersion: 11.2.0
description: Sysdig Monitor and Secure agent
keywords:
Expand Down
8 changes: 4 additions & 4 deletions charts/sysdig/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ The following table lists the configurable parameters of the Sysdig chart and th
| `tolerations` | The tolerations for scheduling | `node-role.kubernetes.io/master:NoSchedule` |
| `prometheus.file` | Use file to configure promscrape | `false` |
| `prometheus.yaml` | prometheus.yaml content to configure metric collection: relabelling and filtering | ` ` |
| `extraVolume.volumes` | Additional volumes to mount in the sysdig agent to pass new secrets or configmaps | `[]` |
| `extraVolume.mounts` | Mount points for additional volumes | `[]` |
| `extraVolumes.volumes` | Additional volumes to mount in the sysdig agent to pass new secrets or configmaps | `[]` |
| `extraVolumes.mounts` | Mount points for additional volumes | `[]` |
| `nodeImageAnalyzer.deploy` | Deploy the Node Image Analyzer (See https://docs.sysdig.com/en/scan-running-images.html) | `true` |
| `nodeImageAnalyzer.settings.dockerSocketPath` | The Docker socket path | |
| `nodeImageAnalyzer.settings.criSocketPath` | The socket path to a CRI compatible runtime, such as CRI-O | |
Expand All @@ -105,8 +105,8 @@ The following table lists the configurable parameters of the Sysdig chart and th
| `nodeImageAnalyzer.resources.requests.memory` | Node Image Analyzer Memory requests per node | `512Mi` |
| `nodeImageAnalyzer.resources.limits.cpu` | Node Image Analyzer CPU limit per node | `500m` |
| `nodeImageAnalyzer.resources.limits.memory` | Node Image Analyzer Memory limit per node | `1024Mi` |
| `nodeImageAnalyzer.extraVolume.volumes` | Additional volumes to mount in the Node Image Analyzer (i.e. for docker socket) | `[]` |
| `nodeImageAnalyzer.extraVolume.mounts` | Mount points for additional volumes | `[]` |
| `nodeImageAnalyzer.extraVolumes.volumes` | Additional volumes to mount in the Node Image Analyzer (i.e. for docker socket) | `[]` |
| `nodeImageAnalyzer.extraVolumes.mounts` | Mount points for additional volumes | `[]` |

Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,

Expand Down
2 changes: 1 addition & 1 deletion charts/sysdig/templates/daemonset-image-analyzer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ spec:
name: {{ template "sysdig.fullname" . }}-image-analyzer
optional: true
{{- if .Values.nodeImageAnalyzer.extraVolumes.volumes }}
{{ toYaml .Values.nodeImageAnalyzer.extraVolumesvolumes | indent 8 }}
{{ toYaml .Values.nodeImageAnalyzer.extraVolumes.volumes | indent 8 }}
{{- end }}
tolerations:
{{ toYaml .Values.nodeImageAnalyzer.tolerations | indent 8 }}
Expand Down

0 comments on commit a7a3e35

Please sign in to comment.