-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathk8s.yaml
More file actions
98 lines (98 loc) · 1.61 KB
/
Copy pathk8s.yaml
File metadata and controls
98 lines (98 loc) · 1.61 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
apiVersion: v1
kind: Namespace
metadata:
name: dev
labels:
istio-injection : enabled
---
apiVersion: v1
kind: Namespace
metadata:
name: test
labels:
istio-injection : enabled
---
apiVersion: v1
kind: Namespace
metadata:
name: prod
labels:
istio-injection : enabled
---
kind: Service
apiVersion: v1
metadata:
name: svc-client
namespace: dev
spec:
selector:
app: client
type: ClusterIP
ports:
- name: grpc
port: 80
targetPort: 8000
---
kind: Service
apiVersion: v1
metadata:
name: svc-server
namespace: dev
spec:
selector:
app: server
type: ClusterIP
ports:
- name: grpc
port: 80
targetPort: 8001
---
apiVersion: apps/v1beta1
kind: Deployment
metadata:
name: app-client
namespace: dev
labels:
app: client
spec:
selector:
matchLabels:
app: client
replicas: 2
template:
metadata:
labels:
app: client
spec:
containers:
- name: client
image: jacenr/client:$VERSION
imagePullPolicy: IfNotPresent
ports:
- name: grpc-port
containerPort: 8000
---
apiVersion: apps/v1beta1
kind: Deployment
metadata:
name: app-server
namespace: dev
labels:
app: server
spec:
selector:
matchLabels:
app: server
replicas: 2
template:
metadata:
labels:
app: server
spec:
containers:
- name: server
image: jacenr/server:$VERSION
imagePullPolicy: IfNotPresent
ports:
- name: grpc-port
containerPort: 8001