mirror of
https://github.com/ryankazokas/turbovault-app.git
synced 2026-04-17 01:42:53 +00:00
Moving to github
This commit is contained in:
27
k8s/ingress.yaml
Normal file
27
k8s/ingress.yaml
Normal file
@@ -0,0 +1,27 @@
|
||||
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
|
||||
Reference in New Issue
Block a user