Add Flux GitRepository and Kustomization resources to enable automated cluster synchronization from Gitea repository. - GitRepository: monitors ssh://git@10.0.1.10/0xWheatyz/Talos - Kustomization: syncs testing1/first-cluster/ to cluster - Interval: 1m for git polling, 5m for reconciliation - Prune enabled for automatic cleanup 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
14 lines
241 B
YAML
14 lines
241 B
YAML
---
|
|
apiVersion: source.toolkit.fluxcd.io/v1
|
|
kind: GitRepository
|
|
metadata:
|
|
name: talos-gitops
|
|
namespace: flux-system
|
|
spec:
|
|
interval: 1m
|
|
url: ssh://git@10.0.1.10/0xWheatyz/Talos
|
|
ref:
|
|
branch: main
|
|
secretRef:
|
|
name: gitea-ssh
|