mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
Respect SlaveListenerPort value in config.xml (#7220)
Signed-off-by: Jacob LeGrone <git@jacob.work>
This commit is contained in:
committed by
k8s-ci-robot
parent
cef08ecdbe
commit
0a5ddac35d
@@ -1,6 +1,6 @@
|
||||
name: jenkins
|
||||
home: https://jenkins.io/
|
||||
version: 0.18.0
|
||||
version: 0.18.1
|
||||
appVersion: 2.121.3
|
||||
description: Open source continuous integration server. It supports multiple SCM tools
|
||||
including CVS, Subversion and Git. It can execute Apache Ant and Apache Maven-based
|
||||
|
||||
@@ -107,10 +107,10 @@ data:
|
||||
<namespace>{{ default .Release.Namespace .Values.Master.SlaveKubernetesNamespace }}</namespace>
|
||||
{{- if .Values.Master.SlaveKubernetesNamespace }}
|
||||
<jenkinsUrl>http://{{ template "jenkins.fullname" . }}.{{.Release.Namespace}}:{{.Values.Master.ServicePort}}{{ default "" .Values.Master.JenkinsUriPrefix }}</jenkinsUrl>
|
||||
<jenkinsTunnel>{{ template "jenkins.fullname" . }}-agent.{{.Release.Namespace}}:50000</jenkinsTunnel>
|
||||
<jenkinsTunnel>{{ template "jenkins.fullname" . }}-agent.{{.Release.Namespace}}:{{ .Values.Master.SlaveListenerPort }}</jenkinsTunnel>
|
||||
{{- else }}
|
||||
<jenkinsUrl>http://{{ template "jenkins.fullname" . }}:{{.Values.Master.ServicePort}}{{ default "" .Values.Master.JenkinsUriPrefix }}</jenkinsUrl>
|
||||
<jenkinsTunnel>{{ template "jenkins.fullname" . }}-agent:50000</jenkinsTunnel>
|
||||
<jenkinsTunnel>{{ template "jenkins.fullname" . }}-agent:{{ .Values.Master.SlaveListenerPort }}</jenkinsTunnel>
|
||||
{{- end }}
|
||||
<containerCap>10</containerCap>
|
||||
<retentionTimeout>5</retentionTimeout>
|
||||
@@ -131,7 +131,7 @@ data:
|
||||
</hudson.model.AllView>
|
||||
</views>
|
||||
<primaryView>All</primaryView>
|
||||
<slaveAgentPort>50000</slaveAgentPort>
|
||||
<slaveAgentPort>{{ .Values.Master.SlaveListenerPort }}</slaveAgentPort>
|
||||
<disabledAgentProtocols>
|
||||
{{- range .Values.Master.DisabledAgentProtocols }}
|
||||
<string>{{ . }}</string>
|
||||
|
||||
Reference in New Issue
Block a user