mirror of
https://github.com/helm/charts.git
synced 2026-08-23 06:17:18 +00:00
Fix typo on hostname variable (#12156)
* Fix typo on hostname variable Signed-off-by: Aidan Moriarty <aidan.moriarty@gmail.com> * Bump version Signed-off-by: Aidan Moriarty <aidan.moriarty@gmail.com> * Document JenkinsUriPrefix Signed-off-by: Aidan Moriarty <aidan.moriarty@gmail.com>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
0f50c5ff2b
commit
3d337d8ddb
@@ -1,6 +1,6 @@
|
||||
name: jenkins
|
||||
home: https://jenkins.io/
|
||||
version: 0.34.0
|
||||
version: 0.34.1
|
||||
appVersion: lts
|
||||
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
|
||||
|
||||
@@ -98,7 +98,8 @@ The following tables list the configurable parameters of the Jenkins chart and t
|
||||
| `Master.Tolerations` | Toleration labels for pod assignment | `{}` |
|
||||
| `Master.PodAnnotations` | Annotations for master pod | `{}` |
|
||||
| `Master.CustomConfigMap` | Deprecated: Use a custom ConfigMap | `false` |
|
||||
| `Master.AdditionalConfig` | Deprecated: Add additional config files | `{}` |
|
||||
| `Master.AdditionalConfig` | Deprecated: Add additional config files | `{}`
|
||||
| `Master.JenkinsUriPrefix` | Root Uri Jenkins will be served on | Not set
|
||||
| `NetworkPolicy.Enabled` | Enable creation of NetworkPolicy resources. | `false` |
|
||||
| `NetworkPolicy.ApiVersion` | NetworkPolicy ApiVersion | `networking.k8s.io/v1` |
|
||||
| `rbac.install` | Create service account and ClusterRoleBinding for Kubernetes plugin | `false` |
|
||||
|
||||
@@ -21,8 +21,8 @@ spec:
|
||||
{{- if .Values.Master.ingress.path }}
|
||||
path: {{ .Values.Master.ingress.path }}
|
||||
{{- end -}}
|
||||
{{- if .Values.Master.hostName }}
|
||||
host: {{ .Values.Master.hostName | quote }}
|
||||
{{- if .Values.Master.ingress.hostName }}
|
||||
host: {{ .Values.Master.ingress.hostName | quote }}
|
||||
{{- end }}
|
||||
{{- if .Values.Master.ingress.tls }}
|
||||
tls:
|
||||
|
||||
Reference in New Issue
Block a user