blob: 732a3ce1ea412cf7fcd555e4b31c26f749eaefbc (
plain)
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
26
27
28
29
30
31
32
33
|
apiVersion: apps/v1beta1
kind: Deployment
metadata:
namespace: moon
name: gui
spec:
replicas: 1
template:
metadata:
labels:
app: gui
spec:
hostname: gui
containers:
- name: gui
image: wukongsun/moon_gui:v4.1
ports:
- containerPort: 80
---
apiVersion: v1
kind: Service
metadata:
name: gui
namespace: moon
spec:
ports:
- port: 80
targetPort: 80
nodePort: 30002
selector:
app: gui
type: NodePort
|