Last active
February 1, 2023 16:51
-
-
Save rnemeth90/4e88a8c7374a6d1253ab9799243f3eff to your computer and use it in GitHub Desktop.
Privileged Pod Template
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: security-context-demo | |
spec: | |
containers: | |
- name: sec-ctx-demo | |
image: busybox:1.28 | |
command: [ "sh", "-c", "sleep 1h" ] | |
securityContext: | |
privileged: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment