-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnginx.yaml
59 lines (59 loc) · 1.04 KB
/
nginx.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
---
kind: "Deployment"
apiVersion: "apps/v1"
metadata:
annotations: {}
name: "nginx-master"
spec:
replicas: 2
revisionHistoryLimit: 3
selector:
matchLabels:
app: "nginx-master"
strategy:
type: "RollingUpdate"
rollingUpdate:
maxSurge: 2
maxUnavailable: 0
template:
metadata:
labels:
app.kubernetes.io/name: "nginx-master"
app: "nginx-master"
annotations: {}
spec:
terminationGracePeriodSeconds: 15
nodeSelector: {}
containers:
- name: "nginx-master"
image: "nginx:latest"
imagePullPolicy: "IfNotPresent"
env:
- name: BAR3
value: "I can not do that Dave?"
- name: FOOburger
value: "Eaten"
---
apiVersion: v1
kind: Service
metadata:
name: foo
spec:
selector:
app: foo
ports:
- protocol: TCP
port: 80
targetPort: 80
---
apiVersion: v1
kind: Service
metadata:
name: foo-https
spec:
selector:
app: foo
ports:
- protocol: TCP
port: 80
targetPort: 80