-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkubes.yaml
220 lines (220 loc) · 4.2 KB
/
kubes.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
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: v1
kind: ConfigMap
metadata:
name: kosmos-config
data:
RUST_LOG: "info"
LISTEN_ADDRESS: "[::]:10800"
NAT64_PREFIX: "2a0d:1a40:7900:6::/64"
SOURCE_IPS: "12.47.179.11,81.187.83.184"
---
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: kosmos
part: server
name: kosmos-server
spec:
replicas: 1
selector:
matchLabels:
app: kosmos
part: server
template:
metadata:
annotations:
cni.projectcalico.org/ipv6pools: '["default-ipv6-ippool"]'
labels:
app: kosmos
part: server
spec:
containers:
- envFrom:
- configMapRef:
name: kosmos-config
- secretRef:
name: kosmos-config
image: as207960/kosmos:(version)
imagePullPolicy: IfNotPresent
name: server
command: ["/kosmos_server"]
ports:
- containerPort: 10800
protocol: TCP
---
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: kosmos-server
spec:
podSelector:
matchLabels:
app: kosmos
part: server
policyTypes:
- Ingress
ingress:
- ports:
- protocol: TCP
port: 10800
---
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: kosmos
part: http
name: kosmos-http
spec:
replicas: 1
selector:
matchLabels:
app: kosmos
part: http
template:
metadata:
annotations:
cni.projectcalico.org/ipv6pools: '["default-ipv6-ippool"]'
labels:
app: kosmos
part: http
spec:
containers:
- env:
- name: RUST_LOG
value: "info"
- name: LISTEN_ADDRESS
value: "[::]:80"
envFrom:
- secretRef:
name: kosmos-config
image: as207960/kosmos:(version)
imagePullPolicy: IfNotPresent
name: server
command: ["/kosmos_http"]
ports:
- containerPort: 80
protocol: TCP
---
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: kosmos-http
spec:
podSelector:
matchLabels:
app: kosmos
part: http
policyTypes:
- Ingress
ingress:
- ports:
- protocol: TCP
port: 80
---
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: kosmos
part: worker
name: kosmos-worker
spec:
replicas: 1
selector:
matchLabels:
app: kosmos
part: worker
template:
metadata:
annotations:
cni.projectcalico.org/ipv6pools: '["default-ipv6-ippool"]'
labels:
app: kosmos
part: worker
spec:
containers:
- env:
- name: RUST_LOG
value: "info"
envFrom:
- secretRef:
name: kosmos-config
image: as207960/kosmos:(version)
imagePullPolicy: IfNotPresent
name: server
command: ["/kosmos_worker"]
---
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: kosmos-worker
spec:
podSelector:
matchLabels:
app: kosmos
part: worker
policyTypes:
- Ingress
---
apiVersion: v1
kind: Service
metadata:
name: kosmos-server
labels:
app: kosmos
part: server
spec:
type: LoadBalancer
externalTrafficPolicy: Local
selector:
app: kosmos
part: server
ports:
- port: 10800
targetPort: 10800
protocol: TCP
name: sbd
---
apiVersion: v1
kind: Service
metadata:
name: kosmos-http
labels:
app: kosmos
part: http
spec:
selector:
app: kosmos
part: http
ports:
- port: 80
targetPort: 80
protocol: TCP
name: http
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: kosmos-ingress
annotations:
nginx.ingress.kubernetes.io/proxy-body-size: "0"
cert-manager.io/cluster-issuer: gts
spec:
ingressClassName: nginx
tls:
- hosts:
- kosmos.iridium.as207960.ltd.uk
secretName: kosmos-tls
rules:
- host: kosmos.iridium.as207960.ltd.uk
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: kosmos-http
port:
number: 80