mirror of
https://github.com/lukevella/rallly-selfhosted.git
synced 2025-12-10 02:42:49 +01:00
35 lines
1.1 KiB
YAML
35 lines
1.1 KiB
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
|
|
# Note: This Secret must be created separately. Options:
|
|
# 1. Use cert-manager (uncomment annotation above) to auto-provision
|
|
# 2. Manually create: kubectl create secret tls rallly-tls --cert=path/to/cert --key=path/to/key
|
|
# 3. Use an existing cluster-issued certificate secret
|