mirror of
https://github.com/lukevella/rallly-selfhosted.git
synced 2025-12-10 02:42:49 +01:00
31 lines
818 B
YAML
31 lines
818 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:
|
|
# NOTE: Explicitly set to 'nginx'. Remove this line if using a different Ingress Controller
|
|
# or if you wish to use the cluster default.
|
|
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
|