commit 735c955361cf69149204197f6a35702925b7a6ac Author: Nicolas MASSE Date: Wed Sep 15 13:57:35 2021 +0200 commit initial diff --git a/kube/pod.yaml b/kube/pod.yaml new file mode 100644 index 0000000..f6e252a --- /dev/null +++ b/kube/pod.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: Pod +metadata: + name: unsecure + annotations: + ignore-check.kube-linter.io/run-as-non-root: "Ce pod interagit avec le système. Il a besoin d’être root." +spec: + containers: + - name: demo + image: busybox + resources: + requests: + memory: "8Gi" + cpu: "250m" + command: [ "sh", "-c", "sleep 1h" ]