Kustomize didn't pick up the Endpoints from the multi-document YAML in svc-forge-external.yaml. Split into a separate endpoints-forge.yaml and add to kustomization.yaml resources. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
15 lines
391 B
YAML
15 lines
391 B
YAML
---
|
|
# ClusterIP service for Forgejo on indri. Paired with endpoints-forge.yaml
|
|
# which provides the actual routing to indri's Tailscale IP.
|
|
# ExternalName services don't have a ClusterIP, which the Tailscale
|
|
# ingress operator requires.
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: forge-external
|
|
namespace: tailscale
|
|
spec:
|
|
ports:
|
|
- name: http
|
|
port: 3001
|
|
protocol: TCP
|