github.com/wmuizelaar/kpt@v0.0.0-20221018115725-bd564717b2ed/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