# GitOps Configuration Template # Configuration for Flux GitOps deployments flux: version: "2.0.0" namespace: "flux-system" git: repository: "http://git.local:3000/hc-stack/gitops.git" branch: "main" path: "gitops/" # Authentication (choose one) # Option 1: HTTPS with token https: token: "your-git-token" # Option 2: SSH # ssh: # private_key: "base64-encoded-private-key" applications: - name: "besu" namespace: "blockchain" chart_path: "apps/besu" enabled: true - name: "firefly" namespace: "blockchain" chart_path: "apps/firefly" enabled: true - name: "chainlink-ccip" namespace: "blockchain" chart_path: "apps/chainlink-ccip" enabled: true - name: "blockscout" namespace: "blockchain" chart_path: "apps/blockscout" enabled: true - name: "cacti" namespace: "monitoring" chart_path: "apps/cacti" enabled: true - name: "nginx-proxy" namespace: "hc-stack" chart_path: "apps/nginx-proxy" enabled: true