Sha256: 67c342b919f4d6593dbe8f193ba9b73ee3ddfd8b8d6f223ad8f76d5831863826

Contents?: true

Size: 889 Bytes

Versions: 24

Compression:

Stored size: 889 Bytes

Contents

{{- if .Values.ingress.enabled -}}
{{- $serviceName := include "fullname" . -}}
{{- $servicePort := .Values.service.externalPort -}}
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
  name: {{ template "fullname" . }}
  labels:
    app: {{ template "name" . }}
    chart: {{ .Chart.Name }}-{{ .Chart.Version }}
    release: {{ .Release.Name }}
    heritage: {{ .Release.Service }}
  annotations:
    {{- range $key, $value := .Values.ingress.annotations }}
      {{ $key }}: {{ $value | quote }}
    {{- end }}
spec:
  rules:
    {{- range $host := .Values.ingress.hosts }}
    - host: {{ $host }}
      http:
        paths:
          - path: /
            backend:
              serviceName: {{ $serviceName }}
              servicePort: {{ $servicePort }}
    {{- end -}}
  {{- if .Values.ingress.tls }}
  tls:
{{ toYaml .Values.ingress.tls | indent 4 }}
  {{- end -}}
{{- end -}}

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
kite-1.2.3 tpl/service/%output_path%/charts/%app_name%/templates/ingress.yaml
kite-1.2.2 tpl/service/%output_path%/charts/%app_name%/templates/ingress.yaml
kite-1.2.1 tpl/service/%output_path%/charts/%app_name%/templates/ingress.yaml
kite-1.2.0 tpl/service/%output_path%/charts/%app_name%/templates/ingress.yaml
kite-1.1.17 tpl/service/%output_path%/charts/%app_name%/templates/ingress.yaml
kite-1.1.16 tpl/service/%output_path%/charts/%app_name%/templates/ingress.yaml
kite-1.1.15 tpl/service/%output_path%/charts/%app_name%/templates/ingress.yaml
kite-1.1.14 tpl/service/%output_path%/charts/%app_name%/templates/ingress.yaml
kite-1.1.13 tpl/service/%output_path%/charts/%app_name%/templates/ingress.yaml
kite-1.1.12 tpl/service/%output_path%/charts/%app_name%/templates/ingress.yaml
kite-1.1.11 tpl/service/%output_path%/charts/%app_name%/templates/ingress.yaml
kite-1.1.10 tpl/service/%output_path%/charts/%app_name%/templates/ingress.yaml
kite-1.1.9 tpl/service/%output_path%/charts/%app_name%/templates/ingress.yaml
kite-1.1.8 tpl/service/%output_path%/charts/%app_name%/templates/ingress.yaml
kite-1.1.7 tpl/service/%output_path%/charts/%app_name%/templates/ingress.yaml
kite-1.1.3 tpl/service/%output_path%/charts/%app_name%/templates/ingress.yaml
kite-1.1.1 tpl/service/%output_path%/charts/%app_name%/templates/ingress.yaml
kite-1.0.10 tpl/service/%output_path%/charts/%app_name%/templates/ingress.yaml
kite-1.0.6 tpl/service/%output_path%/charts/%app_name%/templates/ingress.yaml
kite-1.0.4 tpl/service/%output_path%/charts/%app_name%/templates/ingress.yaml