From b1ce7571636965705ed27146477e64ca0e99a418 Mon Sep 17 00:00:00 2001 From: jeanjerome Date: Thu, 17 Aug 2023 01:52:14 +0200 Subject: [PATCH] ref(15): Start #11 testing wild integration with Jenkins --- resources/k8s/containers-init.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 resources/k8s/containers-init.yaml diff --git a/resources/k8s/containers-init.yaml b/resources/k8s/containers-init.yaml new file mode 100644 index 0000000..3884301 --- /dev/null +++ b/resources/k8s/containers-init.yaml @@ -0,0 +1,20 @@ +metadata: + labels: + pipeline: jenkinsfile +spec: + containers: + - name: 'bash' + image: bash:5.2 + command: + - cat + tty: true + resources: + requests: + cpu: "0.1" + memory: "128Mi" + limits: + cpu: "0.5" + memory: "512Mi" + securityContext: + runAsNonRoot: true + runAsUser: 1000 \ No newline at end of file