github.com/SamarSidharth/kpt@v0.0.0-20231122062228-c7d747ae3ace/package-examples/ghost/ghost-app/ingress-ghost.yaml (about)

     1  apiVersion: networking.k8s.io/v1beta1
     2  kind: Ingress
     3  metadata:
     4    name: ghost-app
     5    namespace: example
     6    labels:
     7      app.kubernetes.io/name: ghost-app
     8  spec:
     9    ingressClassName: nginx
    10    rules:
    11    - host: example.com
    12      http:
    13        paths:
    14        - backend:
    15            serviceName: ghost-app
    16            servicePort: 80