Skip to content

Commit

Permalink
Merge pull request #64 from lalithkota/main
Browse files Browse the repository at this point in the history
Deployment Rancher Istio: Fixed TLS missing files
  • Loading branch information
lalithkota authored Jul 16, 2024
2 parents f042302 + 57a7da0 commit aa83861
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 0 deletions.
25 changes: 25 additions & 0 deletions kubernetes/keycloak/istio-gateway-tls.template.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
apiVersion: networking.istio.io/v1beta1
kind: Gateway
metadata:
name: keycloak
spec:
selector:
istio: ingressgateway
servers:
- hosts:
- ${KEYCLOAK_HOSTNAME}
port:
name: http2
number: 8080
protocol: HTTP2
tls:
httpsRedirect: true
- hosts:
- "${KEYCLOAK_HOSTNAME}"
port:
name: https
number: 8443
protocol: HTTPS
tls:
credentialName: tls-keycloak-ingress
mode: SIMPLE
25 changes: 25 additions & 0 deletions kubernetes/rancher/istio-gateway-tls.template.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
apiVersion: networking.istio.io/v1beta1
kind: Gateway
metadata:
name: rancher
spec:
selector:
istio: ingressgateway
servers:
- hosts:
- ${RANCHER_HOSTNAME}
port:
name: http2
number: 8080
protocol: HTTP2
tls:
httpsRedirect: true
- hosts:
- "${RANCHER_HOSTNAME}"
port:
name: https
number: 8443
protocol: HTTPS
tls:
credentialName: tls-rancher-ingress
mode: SIMPLE

0 comments on commit aa83861

Please sign in to comment.