Fix cat and tty
This commit is contained in:
parent
62114aecc4
commit
633863e7f7
|
@ -77,7 +77,7 @@ data:
|
||||||
<alwaysPullImage>false</alwaysPullImage>
|
<alwaysPullImage>false</alwaysPullImage>
|
||||||
{{- end }}
|
{{- end }}
|
||||||
<workingDir>/home/jenkins</workingDir>
|
<workingDir>/home/jenkins</workingDir>
|
||||||
<command>{{ .Command | default "cat" }}</command>
|
<command>{{ .Command | default "" }}</command>
|
||||||
<args>{{ .Args | default "" }}</args>
|
<args>{{ .Args | default "" }}</args>
|
||||||
{{- if .TTY }}
|
{{- if .TTY }}
|
||||||
<ttyEnabled>true</ttyEnabled>
|
<ttyEnabled>true</ttyEnabled>
|
||||||
|
|
|
@ -97,6 +97,7 @@ jenkins:
|
||||||
Containers:
|
Containers:
|
||||||
maven:
|
maven:
|
||||||
Image: "registry.webhosting.rug.nl/molgenis/maven"
|
Image: "registry.webhosting.rug.nl/molgenis/maven"
|
||||||
|
Command: cat
|
||||||
TTY: true
|
TTY: true
|
||||||
resources:
|
resources:
|
||||||
requests:
|
requests:
|
||||||
|
@ -105,11 +106,11 @@ jenkins:
|
||||||
memory: "1Gi"
|
memory: "1Gi"
|
||||||
alpine:
|
alpine:
|
||||||
Image: "spotify/alpine"
|
Image: "spotify/alpine"
|
||||||
|
Command: cat
|
||||||
TTY: true
|
TTY: true
|
||||||
elasticsearch:
|
elasticsearch:
|
||||||
Image: "elasticsearch"
|
Image: "elasticsearch"
|
||||||
ImageTag: "5.5.1"
|
ImageTag: "5.5.1"
|
||||||
TTY: true
|
|
||||||
Ports:
|
Ports:
|
||||||
- name: rest
|
- name: rest
|
||||||
containerPort: "9200"
|
containerPort: "9200"
|
||||||
|
@ -120,7 +121,6 @@ jenkins:
|
||||||
postgres:
|
postgres:
|
||||||
Image: "postgres"
|
Image: "postgres"
|
||||||
ImageTag: "9.6-alpine"
|
ImageTag: "9.6-alpine"
|
||||||
TTY: true
|
|
||||||
Ports:
|
Ports:
|
||||||
- name: postgres
|
- name: postgres
|
||||||
containerPort: "5432"
|
containerPort: "5432"
|
||||||
|
|
Loading…
Reference in New Issue