Migrate Homepage Ingress to shared ProxyGroup
Disable Helm-managed Ingress (chart doesn't support tailscale.com/* annotations) and create a separate ingress-tailscale.yaml with proxy-group annotation, matching the pattern used by all other services. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
0da6a0833b
commit
eb3957fed6
2 changed files with 30 additions and 14 deletions
27
argocd/manifests/homepage/ingress-tailscale.yaml
Normal file
27
argocd/manifests/homepage/ingress-tailscale.yaml
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
# Tailscale Ingress for Homepage
|
||||
# Exposes at go.tail8d86e.ts.net
|
||||
# Caddy proxies go.ops.eblu.me to this
|
||||
apiVersion: networking.k8s.io/v1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: homepage-tailscale
|
||||
namespace: homepage
|
||||
annotations:
|
||||
tailscale.com/funnel: "false"
|
||||
tailscale.com/proxy-group: "ingress"
|
||||
gethomepage.dev/enabled: "false"
|
||||
spec:
|
||||
ingressClassName: tailscale
|
||||
rules:
|
||||
- http:
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
backend:
|
||||
service:
|
||||
name: homepage
|
||||
port:
|
||||
number: 3000
|
||||
tls:
|
||||
- hosts:
|
||||
- go
|
||||
|
|
@ -7,22 +7,11 @@ enableRbac: true
|
|||
serviceAccount:
|
||||
create: true
|
||||
|
||||
# Tailscale Ingress - exposes at go.tail8d86e.ts.net
|
||||
# Caddy proxies go.ops.eblu.me to this
|
||||
# Tailscale Ingress is managed separately in ingress-tailscale.yaml
|
||||
# (Helm chart template doesn't support tailscale.com/* annotations)
|
||||
ingress:
|
||||
main:
|
||||
enabled: true
|
||||
ingressClassName: tailscale
|
||||
annotations:
|
||||
gethomepage.dev/enabled: "false"
|
||||
hosts:
|
||||
- host: go
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
tls:
|
||||
- hosts:
|
||||
- go
|
||||
enabled: false
|
||||
|
||||
env:
|
||||
- name: HOMEPAGE_ALLOWED_HOSTS
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue