Extract shared operator resources (CRDs, RBAC, Deployment, ProxyClass, DNSConfig) into tailscale-operator-base/ so both indri and ringtail reference the same base without duplication. Ringtail overlay adds a 1-replica ProxyGroup and ExternalSecret for the shared OAuth client. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
16 lines
477 B
YAML
16 lines
477 B
YAML
# DNSConfig for resolving MagicDNS names from within the cluster
|
|
# Deploys a nameserver that resolves ts.net names to egress proxy IPs
|
|
#
|
|
# Requires CoreDNS/kube-dns configuration to forward ts.net queries.
|
|
# See: https://tailscale.com/kb/1438/kubernetes-operator-cluster-egress
|
|
---
|
|
apiVersion: tailscale.com/v1alpha1
|
|
kind: DNSConfig
|
|
metadata:
|
|
name: ts-dns
|
|
namespace: tailscale
|
|
spec:
|
|
nameserver:
|
|
image:
|
|
repo: docker.io/tailscale/k8s-nameserver
|
|
tag: stable
|