traefik/pkg/provider/kubernetes/ingress/fixtures/Ingress-with-default-traefik-ingressClass.yml

51 lines
761 B
YAML
Raw Normal View History

kind: Ingress
apiVersion: networking.k8s.io/v1
metadata:
name: ""
namespace: testing
annotations:
kubernetes.io/ingress.class: traefik
spec:
rules:
- http:
paths:
- path: /bar
backend:
service:
name: service1
port:
number: 80
pathType: Prefix
---
kind: Service
apiVersion: v1
metadata:
name: service1
namespace: testing
spec:
ports:
- port: 80
clusterIP: 10.0.0.1
---
2024-06-21 12:56:03 +00:00
kind: EndpointSlice
apiVersion: discovery.k8s.io/v1
metadata:
2024-06-21 12:56:03 +00:00
name: service1-abc
namespace: testing
2024-06-21 12:56:03 +00:00
labels:
kubernetes.io/service-name: service1
2024-06-21 12:56:03 +00:00
addressType: IPv4
ports:
- port: 8080
name: ""
endpoints:
- addresses:
2024-06-21 12:56:03 +00:00
- 10.10.0.1
conditions:
ready: true