blob: 0d988965294e5e557ffc54a8e6d5300a82560ceb [file] [log] [blame]
HuabingZhaof2a9f562017-08-26 11:49:59 +08001apiVersion: extensions/v1beta1
2kind: Deployment
3metadata:
4 name: msb-consul
5spec:
6 replicas: 1
7 selector:
8 matchLabels:
9 app: msb-consul
10 template:
11 metadata:
12 labels:
13 app: msb-consul
14 name: msb-consul
15 spec:
16 hostname: msb-consul
17 containers:
18 - args:
19 image: consul
20 name: "msb-consul"
21 ports:
22 - containerPort: 8500
23 name: msb-consul
24 readinessProbe:
25 tcpSocket:
26 port: 8500
27 initialDelaySeconds: 5
28 periodSeconds: 10
29 imagePullPolicy: "{{ .Values.pullPolicy }}"