add recipes

This commit is contained in:
2024-02-10 10:45:53 +01:00
parent fe5d6a9014
commit bad024861a
10 changed files with 300 additions and 0 deletions

26
apps/recipes/ingress.yaml Normal file
View File

@@ -0,0 +1,26 @@
apiVersion: traefik.containo.us/v1alpha1
kind: IngressRoute
metadata:
name: recipes-ingressroute
spec:
entryPoints:
- websecure
routes:
- match: Host(`recipes.kluster.moll.re`) && PathPrefix(`/`)
kind: Rule
services:
- name: recipes
port: 8080
- match: Host(`recipes.kluster.moll.re`) && PathPrefix(`/media`)
kind: Rule
services:
- name: recipes
port: 80
- match: Host(`recipes.kluster.moll.re`) && PathPrefix(`/static`)
kind: Rule
services:
- name: recipes
port: 80
tls:
certResolver: default-tls