commit 90006f7582d730c04a3b5ace879ec77651c26dd0 Author: dmitry.golubkov Date: Mon Oct 31 12:18:31 2022 +0300 Add 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