forked from movetokube/postgres-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoperator.yaml
More file actions
62 lines (62 loc) · 1.59 KB
/
operator.yaml
File metadata and controls
62 lines (62 loc) · 1.59 KB
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
apiVersion: apps/v1
kind: Deployment
metadata:
name: ext-postgres-operator
spec:
replicas: 1
selector:
matchLabels:
name: ext-postgres-operator
template:
metadata:
labels:
name: ext-postgres-operator
spec:
serviceAccountName: ext-postgres-operator
securityContext:
runAsNonRoot: true
containers:
- name: ext-postgres-operator
image: movetokube/postgres-operator:2.0.0
imagePullPolicy: Always
ports:
- name: metrics
containerPort: 8080
protocol: "TCP"
envFrom:
- secretRef:
name: ext-postgres-operator
env:
- name: WATCH_NAMESPACE
value: ""
- name: KEEP_SECRET_NAME
value: "false"
- name: POD_NAME
valueFrom:
fieldRef:
fieldPath: metadata.name
securityContext:
allowPrivilegeEscalation: false
capabilities:
drop:
- "ALL"
livenessProbe:
httpGet:
path: /healthz
port: 8081
initialDelaySeconds: 15
periodSeconds: 20
readinessProbe:
httpGet:
path: /readyz
port: 8081
initialDelaySeconds: 5
periodSeconds: 10
resources:
limits:
cpu: 500m
memory: 128Mi
requests:
cpu: 10m
memory: 64Mi
terminationGracePeriodSeconds: 10