From 735c955361cf69149204197f6a35702925b7a6ac Mon Sep 17 00:00:00 2001 From: Nicolas MASSE Date: Wed, 15 Sep 2021 13:57:35 +0200 Subject: [PATCH] commit initial --- kube/pod.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 kube/pod.yaml 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" ]