Update app-of-apps and all ArgoCD applications to point at this feature branch for testing. Will change back to main before merging. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
26 lines
811 B
YAML
26 lines
811 B
YAML
# ArgoCD Application for Tailscale Kubernetes Operator
|
|
# Note: OAuth secret is managed separately (not in git)
|
|
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: tailscale-operator
|
|
namespace: argocd
|
|
spec:
|
|
project: default
|
|
# Tailscale operator mutates externalName from "placeholder" to actual proxy service
|
|
ignoreDifferences:
|
|
- group: ""
|
|
kind: Service
|
|
jsonPointers:
|
|
- /spec/externalName
|
|
source:
|
|
repoURL: ssh://forgejo@indri.tail8d86e.ts.net:2200/eblume/blumeops.git
|
|
targetRevision: feature/k8s-phase2-grafana
|
|
path: argocd/manifests/tailscale-operator
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: tailscale
|
|
syncPolicy:
|
|
syncOptions:
|
|
- CreateNamespace=true
|
|
# Manual sync only - no automated sync on git push
|