Merge pull request #244 from wilreichert/dbcmd

use pod command: instead of the COMMAND environment variable
This commit is contained in:
Brandon B. Jozsa 2017-03-04 11:57:41 -05:00 committed by GitHub
commit 97fd35009a
2 changed files with 6 additions and 4 deletions

View File

@ -66,6 +66,9 @@ spec:
cpu: {{ .Values.resources.api.requests.cpu | quote }}
memory: {{ .Values.resources.api.requests.memory | quote }}
{{- end }}
command:
- bash
- /tmp/start.sh
env:
- name: INTERFACE_NAME
value: "eth0"
@ -81,8 +84,6 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.namespace
- name: COMMAND
value: "bash /tmp/start.sh"
ports:
- containerPort: {{ .Values.network.port.mariadb }}
- containerPort: {{ .Values.network.port.wsrep }}

View File

@ -39,6 +39,9 @@ spec:
cpu: {{ .Values.resources.job.seed.requests.cpu | quote }}
memory: {{ .Values.resources.job.seed.requests.memory | quote }}
{{- end }}
command:
- bash
- /tmp/seed.sh
env:
- name: INTERFACE_NAME
value: "eth0"
@ -54,8 +57,6 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.namespace
- name: COMMAND
value: "bash /tmp/seed.sh"
ports:
- containerPort: {{ .Values.network.port.mariadb }}
- containerPort: {{ .Values.network.port.wsrep }}