-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathk8s.yaml
45 lines (45 loc) · 830 Bytes
/
k8s.yaml
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
34
35
36
37
38
39
40
41
42
43
44
45
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: mappd
labels:
app: mapp
spec:
selector:
matchLabels:
app: mapp
replicas: 1
template:
metadata:
name: mappd
labels:
app: mapp
spec:
containers:
- name: mappc
#image: <username>/<ns>-<remote-name>-<ns>.<deployment-name>-<container-name>
image: docker.io/daggerok/default-mapp-default.mappd-mappc
imagePullPolicy: IfNotPresent
ports:
#- containerPort: 8080
- containerPort: 80
protocol: TCP
---
apiVersion: v1
kind: Service
metadata:
name: mapps
labels:
app: mapp
spec:
ports:
#- port: 8080
- port: 8080
name: http
protocol: TCP
targetPort: 80
type: LoadBalancer
selector:
app: mapp
---