-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
deploy.yaml
74 lines (74 loc) · 1.6 KB
/
deploy.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
---
apiVersion: v1
kind: Service
metadata:
namespace: default
name: saymyname
spec:
selector:
app: saymyname
ports:
- port: 8787
type: ClusterIP
---
apiVersion: apps/v1
kind: Deployment
metadata:
namespace: default
name: saymyname
labels:
app: saymyname
spec:
replicas: 2
strategy:
type: RollingUpdate
rollingUpdate:
maxSurge: 1
maxUnavailable: 1
selector:
matchLabels:
app: saymyname
template:
metadata:
labels:
app: saymyname
spec:
serviceAccountName: "hook"
terminationGracePeriodSeconds: 180
containers:
- name: saymyname
image: leodido/saymyname-prow-plugin:latest
imagePullPolicy: Always
args:
- --dry-run=false
- --github-token-path=/etc/github/oauth
ports:
- name: http
containerPort: 8787
volumeMounts:
- name: hmac
mountPath: /etc/webhook
readOnly: true
- name: oauth
mountPath: /etc/github
readOnly: true
livenessProbe:
httpGet:
path: /healthz
port: 8081
initialDelaySeconds: 3
periodSeconds: 3
readinessProbe:
httpGet:
path: /healthz/ready
port: 8081
initialDelaySeconds: 10
periodSeconds: 3
timeoutSeconds: 600
volumes:
- name: hmac
secret:
secretName: hmac-token
- name: oauth
secret:
secretName: oauth-token