mirror of
https://github.com/lukevella/rallly-selfhosted.git
synced 2025-12-10 10:52:50 +01:00
29 lines
639 B
YAML
29 lines
639 B
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: rallly
|
|
namespace: default
|
|
annotations:
|
|
# Example for cert-manager (uncomment if using)
|
|
# cert-manager.io/cluster-issuer: letsencrypt-prod
|
|
|
|
# Example for NGINX ingress controller size limit
|
|
# nginx.ingress.kubernetes.io/proxy-body-size: "10m"
|
|
spec:
|
|
ingressClassName: nginx
|
|
rules:
|
|
- host: rallly.example.com
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: rallly
|
|
port:
|
|
number: 80
|
|
tls:
|
|
- hosts:
|
|
- rallly.example.com
|
|
secretName: rallly-tls
|