summaryrefslogtreecommitdiffstats
path: root/kubernetes/msb/templates/msb-consul-deployment.yaml
blob: 0d988965294e5e557ffc54a8e6d5300a82560ceb (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
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
  name: msb-consul
spec:
  replicas: 1
  selector:
    matchLabels:
      app: msb-consul
  template:
    metadata:
      labels:
        app: msb-consul
      name: msb-consul
    spec:
      hostname: msb-consul
      containers:
      - args:
        image: consul
        name: "msb-consul"
        ports:
        - containerPort: 8500
          name: msb-consul
        readinessProbe:
          tcpSocket:
            port: 8500
          initialDelaySeconds: 5
          periodSeconds: 10
        imagePullPolicy: "{{ .Values.pullPolicy }}"