mirror of
https://github.com/ryankazokas/turbovault-app.git
synced 2026-04-17 01:42:53 +00:00
28 lines
721 B
YAML
28 lines
721 B
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: turbovault-ingress
|
|
namespace: turbovault
|
|
annotations:
|
|
# Update these based on your ingress controller
|
|
# nginx.ingress.kubernetes.io/ssl-redirect: "true"
|
|
# cert-manager.io/cluster-issuer: "letsencrypt-prod"
|
|
spec:
|
|
ingressClassName: nginx # Or traefik, depending on your setup
|
|
rules:
|
|
- host: turbovault.example.com # Update with your domain
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: turbovault-service
|
|
port:
|
|
number: 80
|
|
# Uncomment for TLS/HTTPS
|
|
# tls:
|
|
# - hosts:
|
|
# - turbovault.example.com
|
|
# secretName: turbovault-tls
|