k3s/tests/e2e/cis_amd64_resource_files/ingress.yaml
ShylajaDevadiga 6b7b9c5aa9
Add scripts to run e2e test using ansible (#5134)
Signed-off-by: Shylaja Devadiga <shylaja.devadiga@suse.com>
2022-08-05 09:16:10 -07:00

29 lines
491 B
YAML

apiVersion: v1
kind: Service
metadata:
name: nginx-ingress-svc
labels:
k8s-app: nginx-app-ingress
spec:
ports:
- port: 8080
targetPort: 8080
protocol: TCP
name: http
selector:
k8s-app: nginx-app-ingress
---
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: test-ingress
spec:
rules:
- host: foo1.bar.com
http:
paths:
- backend:
serviceName: nginx-ingress-svc
servicePort: 8080
pathType: ImplementationSpecific