From 90006f7582d730c04a3b5ace879ec77651c26dd0 Mon Sep 17 00:00:00 2001 From: "dmitry.golubkov" Date: Mon, 31 Oct 2022 12:18:31 +0300 Subject: [PATCH] Add k8s-ubuntu-privileged.yaml --- k8s-ubuntu-privileged.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 k8s-ubuntu-privileged.yaml diff --git a/k8s-ubuntu-privileged.yaml b/k8s-ubuntu-privileged.yaml new file mode 100644 index 0000000..365a1dd --- /dev/null +++ b/k8s-ubuntu-privileged.yaml @@ -0,0 +1,19 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: ubuntu-deployment +spec: + selector: + matchLabels: + app: ubuntu + replicas: 1 + template: + metadata: + labels: + app: ubuntu + spec: + containers: + - name: ubuntu + image: ubuntu + securityContext: + privileged: true