Skip to content

Instantly share code, notes, and snippets.

@sttts
Created September 21, 2016 08:58
Show Gist options
  • Save sttts/93ef1bd889fe58459937e28bc6f5c547 to your computer and use it in GitHub Desktop.
Save sttts/93ef1bd889fe58459937e28bc6f5c547 to your computer and use it in GitHub Desktop.
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