aboutsummaryrefslogtreecommitdiffstats
path: root/src/monitor/deploy/operator.yaml
blob: 93e4522c8b920d6de3dc58f088001cdc77202b45 (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: ewmduck/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"