forked from gothinkster/golang-gin-realworld-example-app
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathk8s.yaml
154 lines (154 loc) · 3.41 KB
/
k8s.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
apiVersion: v1
kind: Service
metadata:
name: golang-gin
labels:
app: golang-gin
tier: backend
spec:
type: LoadBalancer
# type: NodePort
ports:
- targetPort: 8080
port: 80
selector:
app: golang-gin
tier: backend
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: golang-gin
labels:
app: golang-gin
tier: backend
spec:
replicas: 1
selector:
matchLabels:
app: golang-gin
tier: backend
strategy:
rollingUpdate:
maxSurge: 1
maxUnavailable: 0
type: RollingUpdate
template:
metadata:
labels:
app: golang-gin
tier: backend
version: "0"
spec:
# affinity:
# nodeAffinity:
# requiredDuringSchedulingIgnoredDuringExecution:
# nodeSelectorTerms:
# - matchExpressions:
# - key: cloud.google.com/gke-preemptible
# operator: DoesNotExist
containers:
- name: golang-gin
image: gcr.io/hypnotic-bounty-289511/golang-gin:latest
imagePullPolicy: Always
env:
- name: LINES
value: "42"
- name: COLUMNS
value: "178"
ports:
- containerPort: 8080
livenessProbe:
httpGet:
path: /api/ping
port: 8080
initialDelaySeconds: 10
timeoutSeconds: 5
periodSeconds: 30
readinessProbe:
httpGet:
path: /api/ping
port: 8080
initialDelaySeconds: 10
periodSeconds: 60
timeoutSeconds: 1
successThreshold: 1
failureThreshold: 10
---
#########################################################
apiVersion: v1
kind: Service
metadata:
name: react-redux
labels:
app: react-redux
tier: frontend
spec:
type: LoadBalancer
# type: NodePort
ports:
- port: 80
targetPort: 4100
selector:
app: react-redux
tier: frontend
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: react-redux
labels:
app: react-redux
tier: frontend
spec:
replicas: 1
selector:
matchLabels:
app: react-redux
tier: frontend
strategy:
rollingUpdate:
maxSurge: 1
maxUnavailable: 0
type: RollingUpdate
template:
metadata:
labels:
app: react-redux
tier: frontend
version: "0"
spec:
# affinity:
# nodeAffinity:
# requiredDuringSchedulingIgnoredDuringExecution:
# nodeSelectorTerms:
# - matchExpressions:
# - key: cloud.google.com/gke-preemptible
# operator: DoesNotExist
containers:
- name: react-redux
image: gcr.io/hypnotic-bounty-289511/react-redux:latest
imagePullPolicy: Always
env:
- name: LINES
value: "42"
- name: COLUMNS
value: "178"
ports:
- containerPort: 4100
livenessProbe:
httpGet:
path: /
port: 4100
initialDelaySeconds: 10
timeoutSeconds: 5
periodSeconds: 30
readinessProbe:
httpGet:
path: /
port: 4100
initialDelaySeconds: 10
periodSeconds: 60
timeoutSeconds: 1
successThreshold: 1
failureThreshold: 10