Skip to content

Commit

Permalink
[KEYCLOAK-18329] updated ingress definition for new k8s version
Browse files Browse the repository at this point in the history
  • Loading branch information
rbbl-dev authored and pedroigor committed Dec 13, 2021
1 parent e46e140 commit 281011d
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions kubernetes-examples/keycloak-ingress.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: extensions/v1beta1
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: keycloak
Expand All @@ -10,7 +10,10 @@ spec:
- host: KEYCLOAK_HOST
http:
paths:
- backend:
serviceName: keycloak
servicePort: 8080

- path: /
pathType: Prefix
backend:
service:
name: keycloak
port:
number: 8080

0 comments on commit 281011d

Please sign in to comment.