Compare commits

..

No commits in common. "c540580782e1c0371bac2667b913727d0ae494ab" and "0b7b010a01e6d132481eb6b88b3876e0249b3534" have entirely different histories.

View File

@ -198,31 +198,6 @@ spec:
serviceName: inlets serviceName: inlets
servicePort: 80 servicePort: 80
---
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: photos
namespace: inlets
annotations:
cert-manager.io/cluster-issuer: letsencrypt
traefik.ingress.kubernetes.io/frontend-entry-points: http,https
traefik.ingress.kubernetes.io/redirect-entry-point: https
traefik.ingress.kubernetes.io/redirect-permanent: "true"
spec:
tls:
- hosts:
- photos.cluster.fun
secretName: photos-ingress
rules:
- host: photos.cluster.fun
http:
paths:
- path: /
backend:
serviceName: inlets
servicePort: 80
--- ---
kind: Service kind: Service
apiVersion: v1 apiVersion: v1
@ -238,3 +213,91 @@ spec:
selector: selector:
app: inlets app: inlets
--- ---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: workadventure
labels:
name: workadventure
annotations:
cert-manager.io/cluster-issuer: letsencrypt
traefik.ingress.kubernetes.io/frontend-entry-points: http,https
traefik.ingress.kubernetes.io/redirect-entry-point: https
traefik.ingress.kubernetes.io/redirect-permanent: "true"
spec:
tls:
- hosts:
- workadventure.cluster.fun
secretName: workadventure-ingress
rules:
- host: workadventure.cluster.fun
http:
paths:
- pathType: Prefix
path: "/"
backend:
service:
name: inlets
port:
number: 80
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: workadventure-pusher
labels:
name: workadventure-pusher
annotations:
cert-manager.io/cluster-issuer: letsencrypt
traefik.ingress.kubernetes.io/frontend-entry-points: http,https
traefik.ingress.kubernetes.io/redirect-entry-point: https
traefik.ingress.kubernetes.io/redirect-permanent: "true"
ingress.kubernetes.io/custom-response-headers: "Access-Control-Allow-Origin:*"
spec:
tls:
- hosts:
- workadventure-pusher.cluster.fun
secretName: workadventure-pusher-ingress
rules:
- host: workadventure-pusher.cluster.fun
http:
paths:
- pathType: Prefix
path: "/"
backend:
service:
name: inlets
port:
number: 80
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: workadventure-maps
labels:
name: workadventure-maps
annotations:
cert-manager.io/cluster-issuer: letsencrypt
traefik.ingress.kubernetes.io/frontend-entry-points: http,https
traefik.ingress.kubernetes.io/redirect-entry-point: https
traefik.ingress.kubernetes.io/redirect-permanent: "true"
ingress.kubernetes.io/custom-response-headers: "Access-Control-Allow-Origin:*"
spec:
tls:
- hosts:
- maps.workadventure.cluster.fun
secretName: workadventure-maps-ingress
rules:
- host: maps.workadventure.cluster.fun
http:
paths:
- pathType: Prefix
path: "/"
backend:
service:
name: inlets
port:
number: 80