Pushing mongod and mongoexpress integration

This commit is contained in:
plm
2024-11-29 15:18:56 +01:00
parent ffff95b694
commit 98ef81fe2d
185 changed files with 25183 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
{{- if index .Values "mongo-express" "enabled" }}
apiVersion: traefik.io/v1alpha1
kind: IngressRoute
metadata:
name: mongo-express-ingress
spec:
entryPoints:
- web
routes:
- kind: Rule
match: Host(`{{ .Values.host }}`) && PathPrefix(`/mongoexpress`)
priority: 10
services:
- kind: Service
name: {{ .Release.Name }}-mongo-express
passHostHeader: true
port: 8081
{{- end }}