aboutsummaryrefslogtreecommitdiffstats
path: root/vagrant/tests/edgex/deployments/rulesengine-deployment.yaml
blob: 1d49b67a4d55e5f47c896be69f68314befcabe44 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
apiVersion: apps/v1
kind: Deployment
metadata:
  labels:
    io.kompose.service: edgex-support-rulesengine
  name: rulesengine
spec:
  selector:
    matchLabels:
      io.kompose.service: edgex-support-rulesengine
  replicas: 1
  template:
    metadata:
      labels:
        io.kompose.service: edgex-support-rulesengine
    spec:
      containers:
      - image: edgexfoundry/docker-support-rulesengine:0.2.1
        name: edgex-support-rulesengine
        ports:
        - containerPort: 48075
        resources: {}
        volumeMounts:
        - mountPath: /data/db
          name: data-db
        - mountPath: /edgex/logs
          name: edgex-logs
        - mountPath: /consul/config
          name: consul-config
        - mountPath: /consul/data
          name: consul-data
      restartPolicy: Always
      volumes:
      - name: data-db
        hostPath:
          path: /data/db
      - name: edgex-logs
        hostPath:
          path: /edgex/logs
      - name: consul-config
        hostPath:
          path: /consul/config
      - name: consul-data
        hostPath:
          path: /consul/data
status: {}