21 lines
361 B
YAML
21 lines
361 B
YAML
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
|
|
command: ["sleep infinity"]
|
|
securityContext:
|
|
privileged: true
|