github.com/replicatedcom/ship@v0.50.0/integration/update/helm-values-files-and-new-files/expected/.ship/upstream/templates/jenkins-master-ingress.yaml (about)

     1  {{- if .Values.Master.HostName }}
     2  apiVersion: {{ .Values.Master.Ingress.ApiVersion }}
     3  kind: Ingress
     4  metadata:
     5  {{- if .Values.Master.Ingress.Annotations }}
     6    annotations:
     7  {{ toYaml .Values.Master.Ingress.Annotations | indent 4 }}
     8  {{- end }}
     9    name: {{ template "jenkins.fullname" . }}
    10  spec:
    11    rules:
    12    - host: {{ .Values.Master.HostName | quote }}
    13      http:
    14        paths:
    15        - backend:
    16            serviceName: {{ template "jenkins.fullname" . }}
    17            servicePort: {{ .Values.Master.ServicePort }}
    18  {{- if .Values.Master.Ingress.TLS }}
    19    tls:
    20  {{ toYaml .Values.Master.Ingress.TLS | indent 4 }}
    21  {{- end -}}
    22  {{- end }}