forked from theonemule/docker-waf
-
Notifications
You must be signed in to change notification settings - Fork 1
/
kube.yml
67 lines (67 loc) · 1.36 KB
/
kube.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
---
apiVersion: v1
kind: Service #Service for exposing the WAF externally.
metadata:
name: waf-service
labels:
app: waf
spec:
ports:
- port: 80
name: http
selector:
app: waf
type: LoadBalancer
---
apiVersion: apps/v1
kind: Deployment #Deployment for the WAF. Scale as needed with replicas.
metadata:
name: waf-deployment
spec:
selector:
matchLabels:
app: waf
replicas: 1
template:
metadata:
labels:
app: waf
spec:
containers:
- name: waf
image: your.container.registry/waf #insert the reference to your wAF image here.
ports:
- containerPort: 80
---
kind: Service #Service for the app
apiVersion: v1
metadata:
name: app #This is the name of the reverse proxy used in the nginx.conf file. If you change this, be sure to update your nginx.conf too
spec:
selector:
app: app-deployment
ports:
- protocol: TCP
port: 80
targetPort: 80
type: ClusterIP
---
apiVersion: apps/v1
kind: Deployment #Deployment for the app
metadata:
name: app-deployment
spec:
selector:
matchLabels:
app: app-deployment
replicas: 1
template:
metadata:
labels:
app: app-deployment
spec:
containers:
- name: waf
image: your.container.registry/app #insert the reference to your image here.
ports:
- containerPort: 80