fix(dispatch) change command to start with dispatch, which is the container bin
This commit is contained in:
parent
938c715455
commit
72b7a58a4a
3 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
name: dispatch
|
name: dispatch
|
||||||
description: Netflix Dispatch incident management system
|
description: Netflix Dispatch incident management system
|
||||||
version: 0.1.3
|
version: 0.1.4
|
|
@ -17,7 +17,7 @@ spec:
|
||||||
initContainers:
|
initContainers:
|
||||||
- name: web-db-init
|
- name: web-db-init
|
||||||
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
|
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
|
||||||
command: ["web", "database", "init"]
|
command: ["dispatch", "web", "database", "init"]
|
||||||
containers:
|
containers:
|
||||||
- name: web
|
- name: web
|
||||||
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
|
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
|
||||||
|
|
|
@ -19,7 +19,7 @@ core:
|
||||||
web:
|
web:
|
||||||
container:
|
container:
|
||||||
port: 8000
|
port: 8000
|
||||||
command: ["server", "start", "dispatch.main:app", "--host=0.0.0.0"]
|
command: ["dispatch", "server", "start", "dispatch.main:app", "--host=0.0.0.0"]
|
||||||
service:
|
service:
|
||||||
type: ClusterIP
|
type: ClusterIP
|
||||||
port: 80
|
port: 80
|
||||||
|
|
Loading…
Reference in a new issue