| 12345678910111213141516171819202122 |
- # Optional. Apply only if your cluster has an Ingress controller. Replace the
- # host and ingressClassName to match your environment.
- apiVersion: networking.k8s.io/v1
- kind: Ingress
- metadata:
- name: pipeline
- namespace: pipeline
- labels:
- app.kubernetes.io/name: pipeline
- spec:
- ingressClassName: nginx
- rules:
- - host: pipeline.example.com
- http:
- paths:
- - path: /
- pathType: Prefix
- backend:
- service:
- name: pipeline
- port:
- name: http
|