Sha256: b2fb6fa628f7ad286dadca93327a3bb97c241e03cb3304b9e7c9030dcfcc03bb

Contents?: true

Size: 861 Bytes

Versions: 5

Compression:

Stored size: 861 Bytes

Contents

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
  name: web
  labels:
    app.kubernetes.io/name: web
    app.kubernetes.io/component: ingress
    app.kubernetes.io/part-of: waylon
  annotations:
    kubernetes.io/ingress.class: nginx
    nginx.ingress.kubernetes.io/preserve-host: "true"
    nginx.ingress.kubernetes.io/force-ssl-redirect: "true"
    cert-manager.io/cluster-issuer: letsencrypt
    cert-manager.io/acme-challenge-type: http01
spec:
  rules:
  # This needs to be a real name accessible from the Internet
  - host: foo.bar
    http:
      paths:
      - pathType: Prefix
        path: /
        backend:
          service:
            name: waylon
            port:
              name: waylon
  tls:
  - hosts:
    # This needs to be a real name accessible from the Internet, same as above
    - foo.bar
    secretName: web-ingress-tls

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
waylon-0.3.0 examples/deploying/k8s/web-ingress.yaml
waylon-0.2.6 examples/deploying/k8s/web-ingress.yaml
waylon-0.2.5 examples/deploying/k8s/web-ingress.yaml
waylon-0.2.4 examples/deploying/k8s/web-ingress.yaml
waylon-0.2.2 examples/deploying/k8s/web-ingress.yaml