-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathk8s.yml
44 lines (44 loc) · 891 Bytes
/
k8s.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
apiVersion: apps/v1
kind: Deployment
metadata:
name: "askme"
spec:
selector:
matchLabels:
app: "askme"
template:
metadata:
labels:
app: "askme"
spec:
containers:
- name: "askme"
image: "gcr.io/askme/jib-image"
ports:
- name: http
containerPort: 8080
readinessProbe:
httpGet:
path: /health/readiness
port: 8080
initialDelaySeconds: 5
timeoutSeconds: 3
livenessProbe:
httpGet:
path: /health/liveness
port: 8080
initialDelaySeconds: 5
timeoutSeconds: 3
failureThreshold: 10
---
apiVersion: v1
kind: Service
metadata:
name: "askme"
spec:
selector:
app: "askme"
type: LoadBalancer
ports:
- protocol: "TCP"
port: 8080