gcloud-lab/apps/base/customer1/trading-platform/dashboard/service.yaml
Sirius Devops ceb832b169 fix(dashboard): add explicit tailscale.com/ports: "http:3000" annotation
Matches the exact annotation pattern used for other tailnet services (Grafana, trade-dashboard, hermes-webui, etc.).

This ensures the Tailscale operator correctly maps the exposed port after the 3000 change.
2026-05-25 06:05:51 +00:00

18 lines
397 B
YAML

apiVersion: v1
kind: Service
metadata:
name: trading-dashboard-svc
namespace: customer1
annotations:
tailscale.com/expose: "true"
tailscale.com/hostname: "trading-dashboard"
tailscale.com/tags: "tag:k8s-operator"
tailscale.com/ports: "http:3000"
spec:
selector:
app: trading-dashboard
ports:
- port: 3000
targetPort: 3000
name: http
type: ClusterIP