#324 Allow set services in Helm Chart
This commit is contained in:
parent
e9581915ff
commit
5ab1984be9
|
|
@ -49,6 +49,12 @@ spec:
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .Values.jenkins.notifications }}
|
{{- with .Values.jenkins.notifications }}
|
||||||
|
{{- with .Values.jenkins.service }}
|
||||||
|
service: {{- toYaml . | nindent 4 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- with .Values.jenkins.slaveService }}
|
||||||
|
slaveService: {{- toYaml . | nindent 4 }}
|
||||||
|
{{- end }}
|
||||||
notifications: {{ toYaml . | nindent 4 }}
|
notifications: {{ toYaml . | nindent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
master:
|
master:
|
||||||
|
|
|
||||||
|
|
@ -108,6 +108,13 @@ jenkins:
|
||||||
persistentVolumeClaim:
|
persistentVolumeClaim:
|
||||||
claimName: jenkins-backup
|
claimName: jenkins-backup
|
||||||
|
|
||||||
|
# http Jenkins service
|
||||||
|
# See https://jenkinsci.github.io/kubernetes-operator/docs/getting-started/latest/schema/#github.com/jenkinsci/kubernetes-operator/pkg/apis/jenkins/v1alpha2.Service for details
|
||||||
|
#service:
|
||||||
|
# slave Jenkins service
|
||||||
|
# See https://jenkinsci.github.io/kubernetes-operator/docs/getting-started/latest/schema/#github.com/jenkinsci/kubernetes-operator/pkg/apis/jenkins/v1alpha2.Service for details
|
||||||
|
#slaveService:
|
||||||
|
|
||||||
# backup is section for configuring operator's backup feature
|
# backup is section for configuring operator's backup feature
|
||||||
# By default backup feature is enabled and pre-configured
|
# By default backup feature is enabled and pre-configured
|
||||||
# This section simplifies the configuration described here: https://jenkinsci.github.io/kubernetes-operator/docs/getting-started/latest/configure-backup-and-restore/
|
# This section simplifies the configuration described here: https://jenkinsci.github.io/kubernetes-operator/docs/getting-started/latest/configure-backup-and-restore/
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue