-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkubernetes.yml
220 lines (220 loc) · 4.4 KB
/
kubernetes.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
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
apiVersion: apps/v1
kind: Deployment
metadata:
name: http-gateway
spec:
replicas: 1
strategy:
rollingUpdate:
maxSurge: 1
maxUnavailable: 0
type: RollingUpdate
selector:
matchLabels:
name: http-gateway
template:
metadata:
labels:
name: http-gateway
spec:
containers:
- name: http-gateway
image: vskrachkov/fastapi-microservices-http-gateway:latest
imagePullPolicy: Always
resources:
requests:
cpu : "0.02"
memory: "30Mi"
limits:
cpu : "0.9"
memory: "400Mi"
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: hello-service
spec:
replicas: 1
strategy:
rollingUpdate:
maxSurge: 1
maxUnavailable: 0
type: RollingUpdate
selector:
matchLabels:
name: hello-service
template:
metadata:
labels:
name: hello-service
spec:
containers:
- name: hello-service
image: vskrachkov/fastapi-microservices-hello-service:latest
imagePullPolicy: Always
resources:
requests:
cpu : "0.02"
memory: "30Mi"
limits:
cpu : "0.9"
memory: "400Mi"
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: ws-gateway
spec:
replicas: 1
strategy:
rollingUpdate:
maxSurge: 1
maxUnavailable: 0
type: RollingUpdate
selector:
matchLabels:
name: ws-gateway
template:
metadata:
labels:
name: ws-gateway
spec:
containers:
- name: ws-gateway
image: vskrachkov/fastapi-microservices-ws-gateway:latest
imagePullPolicy: Always
resources:
requests:
cpu : "0.02"
memory: "30Mi"
limits:
cpu : "0.9"
memory: "400Mi"
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: rabbitmq-stomp
spec:
replicas: 1
strategy:
rollingUpdate:
maxSurge: 1
maxUnavailable: 0
type: RollingUpdate
selector:
matchLabels:
name: rabbitmq-stomp
template:
metadata:
labels:
name: rabbitmq-stomp
spec:
containers:
- name: rabbitmq-stomp
image: vskrachkov/fastapi-microservices-rabbitmq-stomp:latest
imagePullPolicy: Always
resources:
requests:
cpu : "0.02"
memory: "30Mi"
limits:
cpu : "0.9"
memory: "400Mi"
---
apiVersion: v1
kind: Service
metadata:
name: http-gateway
labels:
name: http-gateway
spec:
ports:
- name: web
port: 80
protocol: TCP
targetPort: 8000
selector:
name: http-gateway
---
apiVersion: v1
kind: Service
metadata:
name: hello-service
labels:
name: hello-service
spec:
ports:
- name: web
port: 80
protocol: TCP
targetPort: 80
selector:
name: hello-service
---
apiVersion: v1
kind: Service
metadata:
name: ws-gateway
labels:
name: ws-gateway
spec:
ports:
- name: web
port: 80
protocol: TCP
targetPort: 80
selector:
name: ws-gateway
---
apiVersion: v1
kind: Service
metadata:
name: rabbitmq-stomp
labels:
name: rabbitmq-stomp
spec:
ports:
- name: management
port: 15672
protocol: TCP
targetPort: 15672
- name: rabbit-web-stomp
port: 15674
protocol: TCP
targetPort: 15674
selector:
name: rabbitmq-stomp
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: http-gateway
annotations:
nginx.ingress.kubernetes.io/cors-allow-credentials: "true"
nginx.ingress.kubernetes.io/cors-allow-methods: PUT, GET, POST, OPTIONS, PATCH
nginx.ingress.kubernetes.io/cors-allow-origin: '*'
cert-manager.io/cluster-issuer: "letsencrypt"
spec:
rules:
- host: http-gateway.io
http:
paths:
- backend:
service:
name: http-gateway
port:
number: 80
path: /
pathType: ImplementationSpecific
- backend:
service:
name: ws-gateway
port:
number: 80
path: /ws
pathType: ImplementationSpecific
tls:
- hosts:
- http-gateway.io
secretName: http-gateway-https