forked from heubeck/flux-kind-flagger-cilium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeployment.yaml
54 lines (54 loc) · 1.33 KB
/
deployment.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
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: examiner
namespace: plain
spec:
selector:
matchLabels:
app.kubernetes.io/name: examiner
template:
metadata:
annotations:
kubectl.kubernetes.io/default-container: examiner
labels:
app.kubernetes.io/name: examiner
spec:
automountServiceAccountToken: false
containers:
- envFrom:
- configMapRef:
name: examiner
image: quay.io/heubeck/examiner:latest
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 3
httpGet:
path: /.well-known/live
port: 8080
scheme: HTTP
initialDelaySeconds: 10
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 5
name: examiner
ports:
- containerPort: 8080
name: http
protocol: TCP
readinessProbe:
failureThreshold: 3
httpGet:
path: /.well-known/ready
port: 8080
scheme: HTTP
initialDelaySeconds: 10
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 5
resources: {}
securityContext:
allowPrivilegeEscalation: false
restartPolicy: Always
serviceAccountName: examiner