Drop args from container spec

The args with using the command `-d` is no longer necessary due to the
fact that the images already ship with a default value of using `-f`
which now runs in foreground without having to enable logging, which
should significantly decrease log noise.

Change-Id: Iea2f9d2d6179ea312207dd456df8d8098aa5a1c9
This commit is contained in:
Mohammed Naser 2020-02-24 09:16:16 +01:00
parent 4243d8d6de
commit cb1be93e93
4 changed files with 4 additions and 16 deletions

View File

@ -23,9 +23,6 @@ spec:
containers:
- name: executor
image: zuul/zuul-executor:latest
args:
- /usr/local/bin/zuul-executor
- -d
ports:
- name: logs
containerPort: 7900
@ -47,4 +44,4 @@ spec:
nodeSelector:
{{ toYaml . | indent 8 }}
{{- end }}
{{ end }}
{{ end }}

View File

@ -22,9 +22,6 @@ spec:
containers:
- name: merger
image: zuul/zuul-merger:latest
args:
- /usr/local/bin/zuul-merger
- -d
volumeMounts:
- name: zuul-config
mountPath: /etc/zuul
@ -41,4 +38,4 @@ spec:
nodeSelector:
{{ toYaml . | indent 8 }}
{{- end }}
{{ end }}
{{ end }}

View File

@ -23,9 +23,6 @@ spec:
containers:
- name: launcher
image: zuul/zuul-scheduler:latest
args:
- /usr/local/bin/zuul-scheduler
- -d
ports:
- name: gearman
containerPort: {{ .Values.scheduler.gearman.port }}
@ -65,4 +62,4 @@ spec:
resources:
requests:
storage: 80Gi
{{ end }}
{{ end }}

View File

@ -22,9 +22,6 @@ spec:
containers:
- name: web
image: zuul/zuul-web:latest
args:
- /usr/local/bin/zuul-web
- -d
ports:
- name: zuul-web
containerPort: {{ .Values.web.port }}
@ -44,4 +41,4 @@ spec:
nodeSelector:
{{ toYaml . | indent 8 }}
{{- end }}
{{ end }}
{{ end }}