blob: 80020d7a4e68213e2d6e9257f658cc97bb2d000e (
plain)
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
|
apiVersion: apps/v1
kind: Deployment
metadata:
name: monitor
labels:
"emco/deployment-id": "monitor"
spec:
replicas: 1
selector:
matchLabels:
"emco/deployment-id": "monitor"
template:
metadata:
labels:
"emco/deployment-id": "monitor"
spec:
serviceAccountName: monitor
containers:
- name: monitor
# Replace this with the built image name
image: emcov2/monitor:latest
command:
- /opt/monitor/monitor
imagePullPolicy: IfNotPresent
env:
- name: WATCH_NAMESPACE
value: ""
- name: POD_NAME
valueFrom:
fieldRef:
fieldPath: metadata.name
- name: OPERATOR_NAME
value: "monitor"
|