-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkubernetes-deployment.yml
63 lines (59 loc) · 1.14 KB
/
kubernetes-deployment.yml
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
---
kind: Service
apiVersion: v1
metadata:
name: load-balancer-service1000
spec:
selector:
app: hello-world
ports:
- protocol: "TCP"
# Port accessible inside cluster
port: 8080
# Port to forward to inside the pod
targetPort: 8080
# Port accessible outside cluster
nodePort: 30009
type: LoadBalancer
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: hello-world-deployment1000
spec:
replicas: 5
selector:
matchLabels:
app: hello-world
template:
metadata:
labels:
app: hello-world
spec:
containers:
- name: hello-world
image: tutum/hello-world
ports:
- containerPort: 8080
# ---
# apiVersion: apps/v1
# kind: Deployment
# metadata:
# name: nginx-deployment
# labels:
# app: nginx
# spec:
# replicas: 3
# selector:
# matchLabels:
# app: nginx
# template:
# metadata:
# labels:
# app: nginx
# spec:
# containers:
# - name: nginx
# image: nginx:1.14.2
# ports:
# - containerPort: 80