Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions charts/monitor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ Parameter | Description | Default | Notes
`exporter.CTRL_USERNAME` | Username to login to the controller. Suggest to replace the default admin user to a read-only user | `admin` |
`exporter.CTRL_PASSWORD` | Password to login to the controller. | `admin` |
`exporter.enforcerStats.enabled` | If true, enable the Enforcers stats | `false` | For the performance reason, by default the exporter does NOT pull CPU/memory usage from enforcers.
`exporter.affinity` | Exporter affinity rules | `{}` |
`exporter.tolerations` | List of node taints to tolerate | `[]` |
---
Contact <support@neuvector.com> for access to Docker Hub and docs.

8 changes: 8 additions & 0 deletions charts/monitor/templates/exporter-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,14 @@ spec:
{{- toYaml . | nindent 8 }}
{{- end }}
spec:
{{- with .Values.exporter.affinity }}
affinity:
{{ toYaml . | indent 8 }}
{{- end }}
{{- with .Values.exporter.tolerations }}
tolerations:
{{ toYaml . | indent 8 }}
{{- end }}
{{- if .Values.imagePullSecrets }}
imagePullSecrets:
- name: {{ .Values.imagePullSecrets }}
Expand Down
2 changes: 2 additions & 0 deletions charts/monitor/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ exporter:
podLabels: {}
securityContext: {}
containerSecurityContext: {}
affinity: {}
tolerations: []

svc:
enabled: true
Expand Down