Skip to content
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

[bitnami/node-exporter] fix: 🐛 Set seLinuxOptions to {} #24675

Merged
merged 2 commits into from Apr 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion bitnami/node-exporter/Chart.yaml
Expand Up @@ -28,4 +28,4 @@ maintainers:
name: node-exporter
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/node-exporter
version: 4.0.0
version: 4.0.1
2 changes: 1 addition & 1 deletion bitnami/node-exporter/README.md
Expand Up @@ -121,7 +121,7 @@ As an alternative, you can use the preset configurations for pod affinity, pod a
| `podSecurityContext.supplementalGroups` | Set filesystem extra groups | `[]` |
| `podSecurityContext.fsGroup` | Set Node exporter pod's Security Context fsGroup | `1001` |
| `containerSecurityContext.enabled` | Enabled containers' Security Context | `true` |
| `containerSecurityContext.seLinuxOptions` | Set SELinux options in container | `nil` |
| `containerSecurityContext.seLinuxOptions` | Set SELinux options in container | `{}` |
| `containerSecurityContext.runAsUser` | Set containers' Security Context runAsUser | `1001` |
| `containerSecurityContext.runAsGroup` | Set containers' Security Context runAsGroup | `1001` |
| `containerSecurityContext.runAsNonRoot` | Set container's Security Context runAsNonRoot | `true` |
Expand Down
2 changes: 1 addition & 1 deletion bitnami/node-exporter/values.yaml
Expand Up @@ -219,7 +219,7 @@ podSecurityContext:
##
containerSecurityContext:
enabled: true
seLinuxOptions: null
seLinuxOptions: {}
runAsUser: 1001
runAsGroup: 1001
runAsNonRoot: true
Expand Down