feat(meali): configure ingress
All checks were successful
Renovate / renovate (push) Successful in 1m22s

This commit is contained in:
Peter 2024-12-04 21:33:58 +01:00
parent ead7bdbbf9
commit fbeabdb2ff
3 changed files with 30 additions and 0 deletions

View file

@ -14,6 +14,8 @@ resources:
- resources/db/user.yaml - resources/db/user.yaml
- resources/pvc.yaml - resources/pvc.yaml
- resources/deployment.yaml - resources/deployment.yaml
- resources/service.yaml
- resources/routes.yaml
secretGenerator: secretGenerator:
- name: meali-config - name: meali-config

View file

@ -0,0 +1,16 @@
---
apiVersion: gateway.networking.k8s.io/v1
kind: HTTPRoute
metadata:
name: meali-https
spec:
parentRefs:
- name: contour
sectionName: https
namespace: projectcontour
hostnames:
- meali.icb4dc0.de
rules:
- backendRefs:
- name: meali
port: 9000

View file

@ -0,0 +1,12 @@
---
apiVersion: v1
kind: Service
metadata:
name: meali
spec:
selector:
app.kubernetes.io/name: meali
ports:
- protocol: TCP
port: 9000
targetPort: 9000