1
0
Fork 0

Compare commits

...

2 Commits

Author SHA1 Message Date
Fleur Kelpin 633863e7f7 Fix cat and tty 2018-06-29 23:37:47 +02:00
Fleur Kelpin 62114aecc4 Increase container cap 2018-06-29 23:31:08 +02:00
2 changed files with 4 additions and 4 deletions

View File

@ -77,7 +77,7 @@ data:
<alwaysPullImage>false</alwaysPullImage>
{{- end }}
<workingDir>/home/jenkins</workingDir>
<command>{{ .Command | default "cat" }}</command>
<command>{{ .Command | default "" }}</command>
<args>{{ .Args | default "" }}</args>
{{- if .TTY }}
<ttyEnabled>true</ttyEnabled>
@ -129,7 +129,7 @@ data:
<namespace>{{ .Release.Namespace }}</namespace>
<jenkinsUrl>http://{{ template "jenkins.fullname" . }}:{{.Values.Master.ServicePort}}{{ default "" .Values.Master.JenkinsUriPrefix }}</jenkinsUrl>
<jenkinsTunnel>{{ template "jenkins.fullname" . }}-agent:50000</jenkinsTunnel>
<containerCap>10</containerCap>
<containerCap>50</containerCap>
<retentionTimeout>5</retentionTimeout>
<connectTimeout>0</connectTimeout>
<readTimeout>0</readTimeout>

View File

@ -97,6 +97,7 @@ jenkins:
Containers:
maven:
Image: "registry.webhosting.rug.nl/molgenis/maven"
Command: cat
TTY: true
resources:
requests:
@ -105,11 +106,11 @@ jenkins:
memory: "1Gi"
alpine:
Image: "spotify/alpine"
Command: cat
TTY: true
elasticsearch:
Image: "elasticsearch"
ImageTag: "5.5.1"
TTY: true
Ports:
- name: rest
containerPort: "9200"
@ -120,7 +121,6 @@ jenkins:
postgres:
Image: "postgres"
ImageTag: "9.6-alpine"
TTY: true
Ports:
- name: postgres
containerPort: "5432"