b6d8f1eb53
The operator currently creates an ingress object, but this was really just to aid testing. The operator probably shouldn't really create one since doing so may be site-specific. Having the ingress greatly aids local and functional testing though, so move it to the functional test playbook. Change-Id: Ic6296120f8c107ecc29556fdab4d6cddb5216a50
16 lines
337 B
YAML
16 lines
337 B
YAML
- k8s:
|
|
namespace: default
|
|
definition:
|
|
apiVersion: networking.k8s.io/v1beta1
|
|
kind: Ingress
|
|
metadata:
|
|
name: zuul-test-ingress
|
|
spec:
|
|
rules:
|
|
- http:
|
|
paths:
|
|
- path: /
|
|
backend:
|
|
serviceName: zuul-web
|
|
servicePort: 9000
|