-
Notifications
You must be signed in to change notification settings - Fork 2
/
service.yaml
66 lines (63 loc) · 1015 Bytes
/
service.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
apiVersion: v1 #nginx service
kind: Service
metadata:
name: nginx-service
namespace: k8s-istio
spec:
selector:
app: nginx
ports:
- port: 80
name: http
---
apiVersion: app/v1 #nginx deployment
kind: Deployment
metadata:
name: nginx
namespace: k8s-istio
spec:
replicas: 1
template:
metadata:
labels:
app: nginx
spec:
containers:
- name: nginx
image: nginx
ports:
- name: http
port: 80
protocol: TCP
---
apiVersion: v1 #redis service
kind: Service
metadata:
name: redis-service
namespace: k8s-istio
spec:
selector:
app: redis
ports:
- port: 6379
name: redis-port
---
apiVersion: app/v1 #redis deployment
kind: Deployment
metadata:
name: redis
namespace: k8s-istio
spec:
replicas: 1
template:
metadata:
labels:
app: redis
spec:
containers:
- name: redis
image: redis
ports:
- name: http
port: 80
protocol: TCP