infrastructure/flux/olympus/apps/services/grist/ingress.yaml
Victor 6da9551d66
Some checks failed
Lint / lint (push) Failing after 1m3s
Plex Update / update (push) Successful in 1m41s
add oauth2-proxy
2023-11-07 15:58:47 +01:00

29 lines
496 B
YAML

apiVersion: v1
kind: Service
metadata:
name: grist
namespace: services
spec:
selector:
app: grist
ports:
- protocol: TCP
port: 8484
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: grist
namespace: services
spec:
rules:
- host: "grist.0x76.dev"
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: grist
port:
number: 8484