Skip to content

ingress

To add an ingress add the following to values.yaml. The following entry create a single ingress with.

ingress:
  - name: myspecialingress
    namespace: default
    annotations: 
      nginx.ingress.kubernetes.io/rewrite-target: /
    tls:
        - secretName: secret-tls
          hosts:
            - chart-example.local
    hosts:
      - host: chart-example.local
        http:
          paths:
          - path: /
            backend:
              serviceName: your-service-name-here
              servicePort: http