-
Notifications
You must be signed in to change notification settings - Fork 0
/
services.yaml
121 lines (117 loc) · 2.02 KB
/
services.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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: blissful-goodall-deployment
labels:
service: blissful-goodall
applicationGroup: beta
spec:
replicas: 1
selector:
matchLabels:
service: blissful-goodall
template:
metadata:
labels:
service: blissful-goodall
spec:
containers:
- name: nginx
image: nginx:1.15.8
ports:
- containerPort: 80
...
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: stoic-sammet-deployment
labels:
service: stoic-sammet
applicationGroup: alpha
spec:
replicas: 2
selector:
matchLabels:
service: stoic-sammet
template:
metadata:
labels:
service: stoic-sammet
spec:
containers:
- name: nginx
image: nginx:1.15.8
ports:
- containerPort: 80
...
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: quirky-raman-deployment
labels:
service: quirky-raman
applicationGroup: gamma
spec:
replicas: 1
selector:
matchLabels:
service: quirky-raman
template:
metadata:
labels:
service: quirky-raman
spec:
containers:
- name: nginx
image: nginx:1.15.8
ports:
- containerPort: 80
...
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: confident-cartwright-deployment
labels:
service: confident-cartwright
applicationGroup: beta
spec:
replicas: 1
selector:
matchLabels:
service: confident-cartwright
template:
metadata:
labels:
service: confident-cartwright
spec:
containers:
- name: nginx
image: nginx:1.14.2
ports:
- containerPort: 80
...
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: happy-colden-deployment
spec:
replicas: 1
selector:
matchLabels:
service: happy-colden
template:
metadata:
labels:
service: happy-colden
spec:
containers:
- name: nginx
image: nginx:1.15.8
ports:
- containerPort: 80
...