File size: 457 Bytes
a15e291 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
apiVersion: apps/v1
kind: Deployment
metadata:
name: ubuntu-xfce-vnc
labels:
app: ubuntu-xfce-vnc
spec:
replicas: 1
selector:
matchLabels:
app: ubuntu-xfce-vnc
template:
metadata:
labels:
app: ubuntu-xfce-vnc
spec:
containers:
- name: ubuntu-xfce-vnc
image: <your registry>
ports:
- containerPort: 5900
name: vnc
- containerPort: 6081
name: novnc
|