-
Notifications
You must be signed in to change notification settings - Fork 5
/
egress.yml
230 lines (226 loc) · 5.04 KB
/
egress.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
221
222
223
224
225
226
227
228
229
230
apiVersion: v1
kind: Namespace
metadata:
name: egress
---
apiVersion: v1
kind: Service
metadata:
name: proxy
namespace: egress
labels:
app.kubernetes.io/instance: nginx
app.kubernetes.io/name: egress-proxy
spec:
selector:
app.kubernetes.io/instance: nginx
app.kubernetes.io/name: egress-proxy
ports:
- name: http
port: 80
targetPort: 8080
- name: proxy
port: 8080
targetPort: 8080
---
apiVersion: v1
kind: ConfigMap
metadata:
name: nginx
namespace: egress
labels:
app.kubernetes.io/instance: nginx
app.kubernetes.io/name: egress-proxy
data:
nginx.conf: |-
events {
}
http {
include /etc/nginx/resolvers-data/resolvers.conf;
server {
listen 8080;
location / {
if ($host ~* "(.*)\.egress\.local") {
set $real_host $1;
}
proxy_pass https://$real_host;
proxy_set_header Host $real_host;
}
}
}
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx
namespace: egress
labels:
app.kubernetes.io/instance: nginx
app.kubernetes.io/name: egress-proxy
spec:
replicas: 1
selector:
matchLabels:
app.kubernetes.io/instance: nginx
app.kubernetes.io/name: egress-proxy
template:
metadata:
annotations:
linkerd.io/inject: enabled
labels:
app.kubernetes.io/instance: nginx
app.kubernetes.io/name: egress-proxy
spec:
volumes:
- name: config
configMap:
name: nginx
- name: resolvers-data
emptyDir: {}
initContainers:
- name: setup-resolvers
image: busybox:1.28
command: ["sh", "-c", "echo resolver $(awk 'BEGIN{ORS=\" \"} $1==\"nameserver\" {print $2}' /etc/resolv.conf)\";\" > /etc/nginx/resolvers-data/resolvers.conf"]
volumeMounts:
- name: resolvers-data
mountPath: /etc/nginx/resolvers-data
containers:
- name: nginx
image: nginx:1.17
ports:
- name: http
containerPort: 8080
volumeMounts:
- name: config
mountPath: /etc/nginx
- name: resolvers-data
mountPath: /etc/nginx/resolvers-data
---
apiVersion: v1
kind: ConfigMap
metadata:
name: coredns
namespace: egress
labels:
app.kubernetes.io/instance: coredns
app.kubernetes.io/name: coredns
data:
Corefile: |-
.:53 {
errors
health {
lameduck 5s
}
ready
kubernetes cluster.local in-addr.arpa ip6.arpa {
pods insecure
fallthrough in-addr.arpa ip6.arpa
ttl 30
}
prometheus 0.0.0.0:9153
forward . /etc/resolv.conf
cache 30
loop
reload
loadbalance
rewrite name regex (.*)\.egress.local proxy.egress.svc.cluster.local
log
}
---
apiVersion: v1
kind: Service
metadata:
name: coredns
namespace: egress
labels:
app.kubernetes.io/instance: coredns
app.kubernetes.io/name: coredns
annotations:
prometheus.io/port: "9153"
prometheus.io/scrape: "true"
spec:
selector:
app.kubernetes.io/instance: coredns
app.kubernetes.io/name: coredns
ports:
- port: 53
protocol: UDP
name: udp-53
- port: 53
protocol: TCP
name: tcp-53
type: ClusterIP
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: coredns
namespace: egress
labels:
app.kubernetes.io/instance: coredns
app.kubernetes.io/name: coredns
spec:
replicas: 1
strategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 1
maxSurge: 10%
selector:
matchLabels:
app.kubernetes.io/instance: coredns
app.kubernetes.io/name: coredns
template:
metadata:
labels:
app.kubernetes.io/name: coredns
app.kubernetes.io/instance: coredns
spec:
serviceAccountName: default
containers:
- name: "coredns"
image: "coredns/coredns:1.6.9"
imagePullPolicy: IfNotPresent
args: [ "-conf", "/etc/coredns/Corefile" ]
volumeMounts:
- name: config-volume
mountPath: /etc/coredns
resources:
limits:
cpu: 100m
memory: 128Mi
requests:
cpu: 100m
memory: 128Mi
ports:
- containerPort: 53
protocol: UDP
name: udp-53
- containerPort: 53
protocol: TCP
name: tcp-53
livenessProbe:
httpGet:
path: /health
port: 8080
scheme: HTTP
initialDelaySeconds: 60
timeoutSeconds: 5
successThreshold: 1
failureThreshold: 5
readinessProbe:
httpGet:
path: /ready
port: 8181
scheme: HTTP
initialDelaySeconds: 10
timeoutSeconds: 5
successThreshold: 1
failureThreshold: 5
volumes:
- name: config-volume
configMap:
name: coredns-coredns
items:
- key: Corefile
path: Corefile