updated ingress to networking.k8s.io/v1

This commit is contained in:
Jon
2021-03-23 21:14:52 +00:00
parent 3b91f7ee26
commit 3194f25449

View File

@@ -1,4 +1,4 @@
apiVersion: extensions/v1beta1 apiVersion: networking.k8s.io/v1
kind: Ingress kind: Ingress
metadata: metadata:
name: test-redis name: test-redis
@@ -14,7 +14,10 @@ spec:
- host: test-redis.endofeternity.ca - host: test-redis.endofeternity.ca
http: http:
paths: paths:
- backend: - path: /
serviceName: test-redis-http pathType: Prefix
servicePort: 80 backend:
path: / service:
name: test-redis-http
port:
number: 80