aboutsummaryrefslogtreecommitdiffstats
path: root/vagrant/tests/vnfs/edgex/helm/edgex/charts/consul/templates/consul-deployment.yaml
blob: 5db9b8555b31ed38a3704297bff1d874832f8b9d (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
47
48
49
50
apiVersion: apps/v1
kind: Deployment
metadata:
  name: edgex-core-consul
  labels:
    app: edgex-core-consul
    release: {{ .Release.Name }}
spec:
  replicas: 1
  selector:
    matchLabels:
      app: edgex-core-consul
      release: {{ .Release.Name }}
  template:
    metadata:
      labels:
        app: edgex-core-consul
        release: {{ .Release.Name }}
    spec:
      containers:
      - image: edgexfoundry/docker-core-consul:latest
        name: edgex-core-consul
        ports:
        {{- range $k, $v := .Values.service.ports }}
        - containerPort: {{ $v.port }}
        {{- end }}
        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
        persistentVolumeClaim:
          claimName: {{ .Release.Name }}-edgex-data
      - name: edgex-logs
        persistentVolumeClaim:
          claimName: {{ .Release.Name }}-edgex-logs
      - name: consul-config
        persistentVolumeClaim:
          claimName: {{ .Release.Name }}-edgex-consul-config
      - name: consul-data
        persistentVolumeClaim:
          claimName: {{ .Release.Name }}-edgex-consul-data