yuryn | fcef994 | 2017-10-26 17:10:50 +0300 | [diff] [blame^] | 1 | #{{ if not .Values.disableMsbMsbDiscovery }} |
HuabingZhao | c2b4fcf | 2017-08-29 10:48:25 +0800 | [diff] [blame] | 2 | apiVersion: extensions/v1beta1 |
| 3 | kind: Deployment |
| 4 | metadata: |
| 5 | name: msb-discovery |
HuabingZhao | 3f1a25e | 2017-09-02 14:45:28 +0800 | [diff] [blame] | 6 | namespace: "{{ .Values.nsPrefix }}-msb" |
HuabingZhao | c2b4fcf | 2017-08-29 10:48:25 +0800 | [diff] [blame] | 7 | spec: |
HuabingZhao | 77d44cd | 2017-08-30 09:30:03 +0800 | [diff] [blame] | 8 | replicas: {{ .Values.discoveryReplicas }} |
HuabingZhao | c2b4fcf | 2017-08-29 10:48:25 +0800 | [diff] [blame] | 9 | selector: |
| 10 | matchLabels: |
| 11 | app: msb-discovery |
| 12 | template: |
| 13 | metadata: |
| 14 | labels: |
| 15 | app: msb-discovery |
| 16 | name: msb-discovery |
| 17 | spec: |
| 18 | hostname: msb-discovery |
| 19 | containers: |
| 20 | - args: |
HuabingZhao | 14391b4 | 2017-09-02 14:38:07 +0800 | [diff] [blame] | 21 | image: {{ .Values.image.discovery }} |
HuabingZhao | c2b4fcf | 2017-08-29 10:48:25 +0800 | [diff] [blame] | 22 | name: "msb-discovery" |
| 23 | env: |
| 24 | - name: CONSUL_IP |
HuabingZhao | aac1c92 | 2017-09-09 15:59:00 +0800 | [diff] [blame] | 25 | value: msb-consul.{{ .Values.nsPrefix }}-msb |
HuabingZhao | c2b4fcf | 2017-08-29 10:48:25 +0800 | [diff] [blame] | 26 | ports: |
HuabingZhao | 4ea0655 | 2017-08-29 15:30:10 +0800 | [diff] [blame] | 27 | - containerPort: {{ .Values.discoveryPort }} |
HuabingZhao | c2b4fcf | 2017-08-29 10:48:25 +0800 | [diff] [blame] | 28 | name: msb-discovery |
| 29 | readinessProbe: |
| 30 | tcpSocket: |
HuabingZhao | 4ea0655 | 2017-08-29 15:30:10 +0800 | [diff] [blame] | 31 | port: {{ .Values.discoveryPort }} |
HuabingZhao | c2b4fcf | 2017-08-29 10:48:25 +0800 | [diff] [blame] | 32 | initialDelaySeconds: 5 |
| 33 | periodSeconds: 10 |
HuabingZhao | 14391b4 | 2017-09-02 14:38:07 +0800 | [diff] [blame] | 34 | imagePullPolicy: {{ .Values.pullPolicy }} |
HuabingZhao | ba8f349 | 2017-09-09 10:17:20 +0800 | [diff] [blame] | 35 | imagePullSecrets: |
| 36 | - name: "{{ .Values.nsPrefix }}-docker-registry-key" |
yuryn | fcef994 | 2017-10-26 17:10:50 +0300 | [diff] [blame^] | 37 | #{{ end }} |