We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug setting vm.max_map_count=262144 on gke with the security context via the helm chart currently does not work.
To Reproduce Steps to reproduce the behavior:
Expected behavior Sysctl should set the vm.max_map_count
Chart Name opensearch
Screenshots If applicable, add screenshots to help explain your problem.
Host/Environment (please complete the following information):
Do you have any additional context? Current workaround is to run an init container to achieve the same goal:
`extraInitContainers:
name: ini-sysctl securityContext: runAsUser: 0 privileged: true image: busybox:latest command: ['sysctl', '-w','vm.max_map_count=262144']`
The text was updated successfully, but these errors were encountered:
@bluehawk27 I am going to close this as a duplicate of #87
Theres a slow discussion surrounding this there.
For GKE, it seems marking the initContainer as a privileged: true is the only workaround for this.
privileged: true
Sorry, something went wrong.
No branches or pull requests
Describe the bug
setting vm.max_map_count=262144 on gke with the security context via the helm chart currently does not work.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Sysctl should set the vm.max_map_count
Chart Name
opensearch
Screenshots
If applicable, add screenshots to help explain your problem.
Host/Environment (please complete the following information):
Do you have any additional context?
Current workaround is to run an init container to achieve the same goal:
`extraInitContainers:
name: ini-sysctl
securityContext:
runAsUser: 0
privileged: true
image: busybox:latest
command: ['sysctl', '-w','vm.max_map_count=262144']`
The text was updated successfully, but these errors were encountered: