Created
September 21, 2016 08:58
-
-
Save sttts/93ef1bd889fe58459937e28bc6f5c547 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: v1 | |
kind: Pod | |
metadata: | |
name: invalid-sysctl | |
annotations: | |
security.alpha.kubernetes.io/sysctls: kernel.msgmax=1234567 | |
spec: | |
containers: | |
- name: sysctl | |
image: busybox | |
command: | |
- /bin/sh | |
- -exc | |
- > | |
while sleep 1; do sysctl kernel.msgmax; done | |
restartPolicy: Always |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment