blob: de33961f8a0b19b98befe1bf7c88f705a9e3d24a [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:
HuabingZhao14391b42017-09-02 14:38:07 +080019 image: {{ .Values.image.consul }}
20 name: msb-consul
HuabingZhaof2a9f562017-08-26 11:49:59 +080021 ports:
HuabingZhao4ea06552017-08-29 15:30:10 +080022 - containerPort: {{ .Values.consulPort }}
HuabingZhaof2a9f562017-08-26 11:49:59 +080023 name: msb-consul
24 readinessProbe:
25 tcpSocket:
HuabingZhao4ea06552017-08-29 15:30:10 +080026 port: {{ .Values.consulPort }}
HuabingZhaof2a9f562017-08-26 11:49:59 +080027 initialDelaySeconds: 5
28 periodSeconds: 10
HuabingZhao14391b42017-09-02 14:38:07 +080029 imagePullPolicy: {{ .Values.pullPolicy }}