├── .github ├── lint │ ├── .markdownlint.yaml │ └── .yamllint.yaml ├── renovate.json5 ├── renovate │ ├── allowedVersions.json5 │ ├── autoMerge.json5 │ ├── automerge-github-actions.json │ ├── commit-message.json │ ├── custom-managers.json5 │ ├── disabledDatasources.json5 │ ├── grafanaDashboards.json5 │ ├── groups.json5 │ ├── pr-labels.json │ ├── semantic-commits.json │ └── versioning.json5 ├── scripts │ └── helmReleaseDiff.mjs └── workflows │ ├── diff-hr-on-pr.yaml │ └── publish-docs.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── apps ├── .argocd-allow-concurrency ├── Chart.yaml ├── templates │ └── app.yaml └── values.yaml ├── archive ├── change-detection │ ├── Chart.yaml │ └── values.yaml ├── dashy │ ├── .argocd-allow-concurrency │ ├── Chart.yaml │ └── values.yaml ├── firefly.yaml ├── firefly │ ├── .argocd-allow-concurrency │ ├── Chart.yaml │ └── values.yaml ├── goldilocks.yaml ├── goldilocks │ ├── .argocd-allow-concurrency │ ├── Chart.yaml │ └── values.yaml ├── grocy │ ├── .argocd-allow-concurrency │ ├── Chart.yaml │ └── values.yaml ├── heimdall │ ├── .argocd-allow-concurrency │ ├── Chart.yaml │ └── values.yaml ├── mariadb.yaml ├── mariadb │ ├── .argocd-allow-concurrency │ ├── Chart.yaml │ ├── mariadb-secret.txt │ ├── templates │ │ └── mariadb-secret.yaml │ └── values.yaml ├── scrypted │ ├── .argocd-allow-concurrency │ ├── Chart.yaml │ └── values.yaml ├── traccar │ ├── .argocd-allow-concurrency │ ├── Chart.yaml │ ├── templates │ │ └── traccar-secret.yaml │ ├── traccar-helm-values.yaml │ ├── traccar-secret.txt │ └── values.yaml ├── vault-secrets-operator │ ├── .argocd-allow-concurrency │ ├── Chart.yaml │ └── values.yaml ├── vault │ ├── cert-manager-vault.yaml │ └── vault │ │ ├── .argocd-allow-concurrency │ │ ├── Chart.yaml │ │ └── values.yaml ├── vpa.yaml └── vpa │ ├── .argocd-allow-concurrency │ ├── Chart.yaml │ └── values.yaml ├── argocd ├── .argocd-allow-concurrency ├── Chart.yaml ├── templates │ ├── argocd-notifications-secret.yml │ └── argocd-oidc-secret.yaml └── values.yaml ├── docs ├── _snippets │ └── links.jinja2 ├── _static │ └── custom.css ├── index.md └── installation │ ├── bootstrap-applications.md │ ├── installing-kubernetes.md │ └── preparing-nodes.md ├── infrastructure ├── .argocd-allow-concurrency ├── Chart.yaml ├── argocd-patch │ ├── .argocd-allow-concurrency │ ├── Chart.yaml │ ├── secret-helm-values.yaml │ ├── templates │ │ └── webhook-ingress.yaml │ └── values.yaml ├── cert-manager │ ├── .argocd-allow-concurrency │ ├── Chart.yaml │ ├── templates │ │ ├── cert-manager-cloudflare-api-key.yaml │ │ └── cert-manager-letsencrypt.yaml │ └── values.yaml ├── cloudnative-pg │ ├── .argocd-allow-concurrency │ ├── Chart.yaml │ ├── templates │ │ ├── cluster-live.yaml │ │ ├── cluster-previous.yaml │ │ ├── cluster-upgrade.yaml │ │ ├── custom-backup-cron.yaml │ │ ├── postgres-minio-secret.yaml │ │ ├── postgres-superuser-secret.yaml │ │ ├── prometheusrule.yaml │ │ ├── scheduled-backup.yaml │ │ └── service.yaml │ └── values.yaml ├── couchdb │ ├── Chart.yaml │ ├── templates │ │ ├── configmap.yaml │ │ └── couchdb-secret.yaml │ └── values.yaml ├── descheduler │ ├── .argocd-allow-concurrency │ ├── Chart.yaml │ └── values.yaml ├── external-secrets │ ├── Chart.yaml │ └── values.yaml ├── ingress-nginx │ ├── .argocd-allow-concurrency │ ├── Chart.yaml │ └── values.yaml ├── intel-gpu-plugins │ ├── .argocd-allow-concurrency │ ├── Chart.yaml │ └── values.yaml ├── kube-cleanup-operator │ ├── .argocd-allow-concurrency │ ├── Chart.yaml │ └── values.yaml ├── kured │ ├── .argocd-allow-concurrency │ ├── Chart.yaml │ ├── secret-helm-values.yaml │ └── values.yaml ├── longhorn │ ├── .argocd-allow-concurrency │ ├── Chart.yaml │ ├── templates │ │ ├── longhorn-backup-secret.yaml │ │ ├── nfs-storageclass.yaml │ │ └── servicemonitor.yaml │ └── values.yaml ├── metallb │ ├── .argocd-allow-concurrency │ ├── Chart.yaml │ ├── templates │ │ └── bgp-pool.yaml │ └── values.yaml ├── node-feature-discovery │ ├── .argocd-allow-concurrency │ ├── Chart.yaml │ ├── templates │ │ ├── coral-device.yaml │ │ ├── geforce-device.yaml │ │ ├── gpu-device.yaml │ │ ├── radeon-device.yaml │ │ ├── zigbee-device.yaml │ │ └── zwave-device.yaml │ └── values.yaml ├── node-problem-detector │ ├── .argocd-allow-concurrency │ ├── Chart.yaml │ └── values.yaml ├── oauth2-proxy │ ├── .argocd-allow-concurrency │ ├── Chart.yaml │ ├── templates │ │ └── oauth2-proxy-secret.yaml │ └── values.yaml ├── onepassword │ ├── Chart.yaml │ ├── templates │ │ └── clustersecretstore.yaml │ └── values.yaml ├── registry-creds │ ├── dockerhub-registrycreds.yaml │ ├── dockerhub.yaml │ └── registry-creds.yaml ├── reloader │ ├── .argocd-allow-concurrency │ ├── Chart.yaml │ └── values.yaml ├── spegel │ ├── .argocd-allow-concurrency │ ├── Chart.yaml │ └── values.yaml ├── step-certificates │ ├── Chart.yaml │ ├── templates │ │ └── external-secret.yaml │ └── values.yaml ├── step-issuer │ ├── Chart.yaml │ ├── secret-helm-values.yaml │ └── values.yaml ├── tailscale-gateway │ ├── Chart.yaml │ ├── templates │ │ ├── external-secret.yaml │ │ └── roles.yaml │ └── values.yaml ├── templates │ ├── app.yaml │ └── argo-helm-secrets.yaml └── values.yaml ├── main ├── .argocd-allow-concurrency ├── Chart.yaml ├── homelab │ ├── .argocd-allow-concurrency │ ├── Chart.yaml │ ├── actual │ │ ├── .argocd-allow-concurrency │ │ ├── Chart.yaml │ │ └── values.yaml │ ├── airprint │ │ ├── .argocd-allow-concurrency │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ └── values.yaml │ ├── cloudflare-ddns │ │ ├── .argocd-allow-concurrency │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── script │ │ │ └── cloudflare-ddns.sh │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── cloudflare-ddns-secret.yaml │ │ │ ├── configmap.yaml │ │ │ └── cronjob.yaml │ │ └── values.yaml │ ├── cyberchef │ │ ├── .argocd-allow-concurrency │ │ ├── Chart.yaml │ │ └── values.yaml │ ├── echo-server │ │ ├── Chart.yaml │ │ └── values.yaml │ ├── emqx │ │ ├── .argocd-allow-concurrency │ │ ├── Chart.yaml │ │ ├── secret-helm-values.yaml │ │ ├── templates │ │ │ └── configmap.yaml │ │ └── values.yaml │ ├── external-ingress │ │ ├── .argocd-allow-concurrency │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ └── external-ingress.yaml │ │ └── values.yaml │ ├── focalboard │ │ ├── Chart.yaml │ │ └── values.yaml │ ├── frigate │ │ ├── .argocd-allow-concurrency │ │ ├── Chart.yaml │ │ ├── secret-helm-values.yaml │ │ ├── templates │ │ │ ├── configmap.yml │ │ │ └── noauth-ingress.yaml │ │ └── values.yaml │ ├── gethomepage │ │ ├── .argocd-allow-concurrency │ │ ├── Chart.yaml │ │ └── values.yaml │ ├── home-assistant │ │ ├── .argocd-allow-concurrency │ │ ├── Chart.yaml │ │ ├── secret-helm-values.yaml │ │ ├── templates │ │ │ ├── home-assistant-gcp-secret.yaml │ │ │ └── home-assistant-secret.yaml │ │ └── values.yaml │ ├── kanboard │ │ ├── .argocd-allow-concurrency │ │ ├── Chart.yaml │ │ ├── templates │ │ │ └── kanboard-secret.yaml │ │ └── values.yaml │ ├── mealie │ │ ├── .argocd-allow-concurrency │ │ ├── Chart.yaml │ │ ├── templates │ │ │ └── mealie-secret.yaml │ │ └── values.yaml │ ├── minio │ │ ├── .argocd-allow-concurrency │ │ ├── Chart.yaml │ │ ├── secret-helm-values.yaml │ │ ├── templates │ │ │ └── minio-secret.yaml │ │ └── values.yaml │ ├── node-red │ │ ├── .argocd-allow-concurrency │ │ ├── Chart.yaml │ │ └── values.yaml │ ├── nomie │ │ ├── Chart.yaml │ │ └── values.yaml │ ├── openttd │ │ ├── .argocd-allow-concurrency │ │ ├── Chart.yaml │ │ └── values.yaml │ ├── oscar │ │ ├── .argocd-allow-concurrency │ │ ├── Chart.yaml │ │ ├── templates │ │ │ └── cronjob.yaml │ │ └── values.yaml │ ├── planka │ │ ├── .argocd-allow-concurrency │ │ ├── Chart.yaml │ │ ├── templates │ │ │ └── planka-secret.yaml │ │ └── values.yaml │ ├── templates │ │ ├── app.yaml │ │ └── argo-helm-secrets.yaml │ ├── tesla-dashcam │ │ ├── .argocd-allow-concurrency │ │ ├── Chart.yaml │ │ └── values.yaml │ ├── teslamate │ │ ├── .argocd-allow-concurrency │ │ ├── Chart.yaml │ │ ├── templates │ │ │ └── teslamate-secret.yaml │ │ └── values.yaml │ ├── values.yaml │ ├── webtrees │ │ ├── .argocd-allow-concurrency │ │ ├── Chart.yaml │ │ ├── templates │ │ │ └── webtrees-secret.yaml │ │ └── values.yaml │ ├── wyze-bridge │ │ ├── .argocd-allow-concurrency │ │ ├── Chart.yaml │ │ ├── templates │ │ │ └── wyze-bridge-secret.yaml │ │ └── values.yaml │ ├── zigbee2mqtt │ │ ├── .argocd-allow-concurrency │ │ ├── Chart.yaml │ │ ├── templates │ │ │ └── zigbee2mqtt-secret.yaml │ │ └── values.yaml │ └── zwavejs2mqtt │ │ ├── .argocd-allow-concurrency │ │ ├── Chart.yaml │ │ └── values.yaml ├── logs │ ├── .argocd-allow-concurrency │ ├── Chart.yaml │ ├── loki │ │ ├── .argocd-allow-concurrency │ │ ├── Chart.yaml │ │ ├── secret-helm-values.yaml │ │ ├── templates │ │ │ └── loki-alerting-rules-config-map.yaml │ │ └── values.yaml │ ├── templates │ │ ├── app.yaml │ │ └── argo-helm-secrets.yaml │ ├── values.yaml │ └── vector │ │ ├── Chart.yaml │ │ └── values.yaml ├── monitoring │ ├── .argocd-allow-concurrency │ ├── Chart.yaml │ ├── alertmanager-discord │ │ ├── .argocd-allow-concurrency │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ │ └── alertmanager-discord-secret.yaml │ │ └── values.yaml │ ├── blackbox-exporter │ │ ├── .argocd-allow-concurrency │ │ ├── Chart.yaml │ │ └── values.yaml │ ├── botkube │ │ ├── .argocd-allow-concurrency │ │ ├── Chart.yaml │ │ ├── secret-helm-values.yaml │ │ └── values.yaml │ ├── grafana │ │ ├── .argocd-allow-concurrency │ │ ├── Chart.yaml │ │ ├── templates │ │ │ └── grafana-secret.yaml │ │ └── values.yaml │ ├── influxdb │ │ ├── .argocd-allow-concurrency │ │ ├── Chart.yaml │ │ └── values.yaml │ ├── karma │ │ ├── .argocd-allow-concurrency │ │ ├── Chart.yaml │ │ └── values.yaml │ ├── pushgateway │ │ ├── .argocd-allow-concurrency │ │ ├── Chart.yaml │ │ └── values.yaml │ ├── speedtest-exporter │ │ ├── .argocd-allow-concurrency │ │ ├── Chart.yaml │ │ └── values.yaml │ ├── templates │ │ ├── app.yaml │ │ └── argo-helm-secrets.yaml │ ├── trivy │ │ ├── .argocd-allow-concurrency │ │ ├── Chart.yaml │ │ └── values.yaml │ ├── unifi-poller │ │ ├── .argocd-allow-concurrency │ │ ├── Chart.yaml │ │ ├── templates │ │ │ ├── prometheusrules.yaml │ │ │ └── unifi-poller-secret.yaml │ │ └── values.yaml │ ├── uptime-kuma │ │ ├── .argocd-allow-concurrency │ │ ├── Chart.yaml │ │ └── values.yaml │ ├── values.yaml │ └── victoria-metrics │ │ ├── .argocd-allow-concurrency │ │ ├── Chart.yaml │ │ ├── secret-helm-values.yaml │ │ ├── templates │ │ ├── dockerhub.yaml │ │ ├── ingress-nginx.yaml │ │ ├── kured.yaml │ │ ├── node-exporter.yaml │ │ ├── oom.yaml │ │ ├── server-tracker.yaml │ │ └── victoria-metrics-secret.yaml │ │ └── values.yaml ├── templates │ ├── app.yaml │ └── nas-nfs-pv.yaml └── values.yaml ├── mkdocs.yaml ├── setup ├── .env.sample ├── bootstrap-certmanager-new.sh ├── bootstrap-certmanager.sh ├── bootstrap-cluster.sh ├── bootstrap-objects-new.sh ├── bootstrap-objects.sh ├── bootstrap-step-certificate.sh └── bootstrap-vault.sh └── system-upgrade ├── README.md ├── k3s-plan.yaml ├── kustomization.yaml └── system-upgrade-controller.yaml /.github/lint/.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/.github/lint/.markdownlint.yaml -------------------------------------------------------------------------------- /.github/lint/.yamllint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/.github/lint/.yamllint.yaml -------------------------------------------------------------------------------- /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /.github/renovate/allowedVersions.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/.github/renovate/allowedVersions.json5 -------------------------------------------------------------------------------- /.github/renovate/autoMerge.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/.github/renovate/autoMerge.json5 -------------------------------------------------------------------------------- /.github/renovate/automerge-github-actions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/.github/renovate/automerge-github-actions.json -------------------------------------------------------------------------------- /.github/renovate/commit-message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/.github/renovate/commit-message.json -------------------------------------------------------------------------------- /.github/renovate/custom-managers.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/.github/renovate/custom-managers.json5 -------------------------------------------------------------------------------- /.github/renovate/disabledDatasources.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/.github/renovate/disabledDatasources.json5 -------------------------------------------------------------------------------- /.github/renovate/grafanaDashboards.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/.github/renovate/grafanaDashboards.json5 -------------------------------------------------------------------------------- /.github/renovate/groups.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/.github/renovate/groups.json5 -------------------------------------------------------------------------------- /.github/renovate/pr-labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/.github/renovate/pr-labels.json -------------------------------------------------------------------------------- /.github/renovate/semantic-commits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/.github/renovate/semantic-commits.json -------------------------------------------------------------------------------- /.github/renovate/versioning.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/.github/renovate/versioning.json5 -------------------------------------------------------------------------------- /.github/scripts/helmReleaseDiff.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/.github/scripts/helmReleaseDiff.mjs -------------------------------------------------------------------------------- /.github/workflows/diff-hr-on-pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/.github/workflows/diff-hr-on-pr.yaml -------------------------------------------------------------------------------- /.github/workflows/publish-docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/.github/workflows/publish-docs.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/README.md -------------------------------------------------------------------------------- /apps/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/apps/Chart.yaml -------------------------------------------------------------------------------- /apps/templates/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/apps/templates/app.yaml -------------------------------------------------------------------------------- /apps/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/apps/values.yaml -------------------------------------------------------------------------------- /archive/change-detection/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/archive/change-detection/Chart.yaml -------------------------------------------------------------------------------- /archive/change-detection/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/archive/change-detection/values.yaml -------------------------------------------------------------------------------- /archive/dashy/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /archive/dashy/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/archive/dashy/Chart.yaml -------------------------------------------------------------------------------- /archive/dashy/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/archive/dashy/values.yaml -------------------------------------------------------------------------------- /archive/firefly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/archive/firefly.yaml -------------------------------------------------------------------------------- /archive/firefly/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /archive/firefly/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/archive/firefly/Chart.yaml -------------------------------------------------------------------------------- /archive/firefly/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/archive/firefly/values.yaml -------------------------------------------------------------------------------- /archive/goldilocks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/archive/goldilocks.yaml -------------------------------------------------------------------------------- /archive/goldilocks/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /archive/goldilocks/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/archive/goldilocks/Chart.yaml -------------------------------------------------------------------------------- /archive/goldilocks/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/archive/goldilocks/values.yaml -------------------------------------------------------------------------------- /archive/grocy/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /archive/grocy/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/archive/grocy/Chart.yaml -------------------------------------------------------------------------------- /archive/grocy/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/archive/grocy/values.yaml -------------------------------------------------------------------------------- /archive/heimdall/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /archive/heimdall/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/archive/heimdall/Chart.yaml -------------------------------------------------------------------------------- /archive/heimdall/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/archive/heimdall/values.yaml -------------------------------------------------------------------------------- /archive/mariadb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/archive/mariadb.yaml -------------------------------------------------------------------------------- /archive/mariadb/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /archive/mariadb/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/archive/mariadb/Chart.yaml -------------------------------------------------------------------------------- /archive/mariadb/mariadb-secret.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/archive/mariadb/mariadb-secret.txt -------------------------------------------------------------------------------- /archive/mariadb/templates/mariadb-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/archive/mariadb/templates/mariadb-secret.yaml -------------------------------------------------------------------------------- /archive/mariadb/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/archive/mariadb/values.yaml -------------------------------------------------------------------------------- /archive/scrypted/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /archive/scrypted/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/archive/scrypted/Chart.yaml -------------------------------------------------------------------------------- /archive/scrypted/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/archive/scrypted/values.yaml -------------------------------------------------------------------------------- /archive/traccar/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /archive/traccar/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/archive/traccar/Chart.yaml -------------------------------------------------------------------------------- /archive/traccar/templates/traccar-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/archive/traccar/templates/traccar-secret.yaml -------------------------------------------------------------------------------- /archive/traccar/traccar-helm-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/archive/traccar/traccar-helm-values.yaml -------------------------------------------------------------------------------- /archive/traccar/traccar-secret.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/archive/traccar/traccar-secret.txt -------------------------------------------------------------------------------- /archive/traccar/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/archive/traccar/values.yaml -------------------------------------------------------------------------------- /archive/vault-secrets-operator/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /archive/vault-secrets-operator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/archive/vault-secrets-operator/Chart.yaml -------------------------------------------------------------------------------- /archive/vault-secrets-operator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/archive/vault-secrets-operator/values.yaml -------------------------------------------------------------------------------- /archive/vault/cert-manager-vault.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/archive/vault/cert-manager-vault.yaml -------------------------------------------------------------------------------- /archive/vault/vault/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /archive/vault/vault/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/archive/vault/vault/Chart.yaml -------------------------------------------------------------------------------- /archive/vault/vault/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/archive/vault/vault/values.yaml -------------------------------------------------------------------------------- /archive/vpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/archive/vpa.yaml -------------------------------------------------------------------------------- /archive/vpa/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /archive/vpa/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/archive/vpa/Chart.yaml -------------------------------------------------------------------------------- /archive/vpa/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/archive/vpa/values.yaml -------------------------------------------------------------------------------- /argocd/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /argocd/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/argocd/Chart.yaml -------------------------------------------------------------------------------- /argocd/templates/argocd-notifications-secret.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/argocd/templates/argocd-notifications-secret.yml -------------------------------------------------------------------------------- /argocd/templates/argocd-oidc-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/argocd/templates/argocd-oidc-secret.yaml -------------------------------------------------------------------------------- /argocd/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/argocd/values.yaml -------------------------------------------------------------------------------- /docs/_snippets/links.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/docs/_snippets/links.jinja2 -------------------------------------------------------------------------------- /docs/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/docs/_static/custom.css -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/installation/bootstrap-applications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/docs/installation/bootstrap-applications.md -------------------------------------------------------------------------------- /docs/installation/installing-kubernetes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/docs/installation/installing-kubernetes.md -------------------------------------------------------------------------------- /docs/installation/preparing-nodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/docs/installation/preparing-nodes.md -------------------------------------------------------------------------------- /infrastructure/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infrastructure/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/Chart.yaml -------------------------------------------------------------------------------- /infrastructure/argocd-patch/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infrastructure/argocd-patch/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/argocd-patch/Chart.yaml -------------------------------------------------------------------------------- /infrastructure/argocd-patch/secret-helm-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/argocd-patch/secret-helm-values.yaml -------------------------------------------------------------------------------- /infrastructure/argocd-patch/templates/webhook-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/argocd-patch/templates/webhook-ingress.yaml -------------------------------------------------------------------------------- /infrastructure/argocd-patch/values.yaml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /infrastructure/cert-manager/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infrastructure/cert-manager/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/cert-manager/Chart.yaml -------------------------------------------------------------------------------- /infrastructure/cert-manager/templates/cert-manager-cloudflare-api-key.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/cert-manager/templates/cert-manager-cloudflare-api-key.yaml -------------------------------------------------------------------------------- /infrastructure/cert-manager/templates/cert-manager-letsencrypt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/cert-manager/templates/cert-manager-letsencrypt.yaml -------------------------------------------------------------------------------- /infrastructure/cert-manager/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/cert-manager/values.yaml -------------------------------------------------------------------------------- /infrastructure/cloudnative-pg/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infrastructure/cloudnative-pg/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/cloudnative-pg/Chart.yaml -------------------------------------------------------------------------------- /infrastructure/cloudnative-pg/templates/cluster-live.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/cloudnative-pg/templates/cluster-live.yaml -------------------------------------------------------------------------------- /infrastructure/cloudnative-pg/templates/cluster-previous.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/cloudnative-pg/templates/cluster-previous.yaml -------------------------------------------------------------------------------- /infrastructure/cloudnative-pg/templates/cluster-upgrade.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/cloudnative-pg/templates/cluster-upgrade.yaml -------------------------------------------------------------------------------- /infrastructure/cloudnative-pg/templates/custom-backup-cron.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/cloudnative-pg/templates/custom-backup-cron.yaml -------------------------------------------------------------------------------- /infrastructure/cloudnative-pg/templates/postgres-minio-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/cloudnative-pg/templates/postgres-minio-secret.yaml -------------------------------------------------------------------------------- /infrastructure/cloudnative-pg/templates/postgres-superuser-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/cloudnative-pg/templates/postgres-superuser-secret.yaml -------------------------------------------------------------------------------- /infrastructure/cloudnative-pg/templates/prometheusrule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/cloudnative-pg/templates/prometheusrule.yaml -------------------------------------------------------------------------------- /infrastructure/cloudnative-pg/templates/scheduled-backup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/cloudnative-pg/templates/scheduled-backup.yaml -------------------------------------------------------------------------------- /infrastructure/cloudnative-pg/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/cloudnative-pg/templates/service.yaml -------------------------------------------------------------------------------- /infrastructure/cloudnative-pg/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/cloudnative-pg/values.yaml -------------------------------------------------------------------------------- /infrastructure/couchdb/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/couchdb/Chart.yaml -------------------------------------------------------------------------------- /infrastructure/couchdb/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/couchdb/templates/configmap.yaml -------------------------------------------------------------------------------- /infrastructure/couchdb/templates/couchdb-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/couchdb/templates/couchdb-secret.yaml -------------------------------------------------------------------------------- /infrastructure/couchdb/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/couchdb/values.yaml -------------------------------------------------------------------------------- /infrastructure/descheduler/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infrastructure/descheduler/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/descheduler/Chart.yaml -------------------------------------------------------------------------------- /infrastructure/descheduler/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/descheduler/values.yaml -------------------------------------------------------------------------------- /infrastructure/external-secrets/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/external-secrets/Chart.yaml -------------------------------------------------------------------------------- /infrastructure/external-secrets/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/external-secrets/values.yaml -------------------------------------------------------------------------------- /infrastructure/ingress-nginx/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infrastructure/ingress-nginx/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/ingress-nginx/Chart.yaml -------------------------------------------------------------------------------- /infrastructure/ingress-nginx/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/ingress-nginx/values.yaml -------------------------------------------------------------------------------- /infrastructure/intel-gpu-plugins/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infrastructure/intel-gpu-plugins/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/intel-gpu-plugins/Chart.yaml -------------------------------------------------------------------------------- /infrastructure/intel-gpu-plugins/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/intel-gpu-plugins/values.yaml -------------------------------------------------------------------------------- /infrastructure/kube-cleanup-operator/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infrastructure/kube-cleanup-operator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/kube-cleanup-operator/Chart.yaml -------------------------------------------------------------------------------- /infrastructure/kube-cleanup-operator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/kube-cleanup-operator/values.yaml -------------------------------------------------------------------------------- /infrastructure/kured/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infrastructure/kured/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/kured/Chart.yaml -------------------------------------------------------------------------------- /infrastructure/kured/secret-helm-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/kured/secret-helm-values.yaml -------------------------------------------------------------------------------- /infrastructure/kured/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/kured/values.yaml -------------------------------------------------------------------------------- /infrastructure/longhorn/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infrastructure/longhorn/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/longhorn/Chart.yaml -------------------------------------------------------------------------------- /infrastructure/longhorn/templates/longhorn-backup-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/longhorn/templates/longhorn-backup-secret.yaml -------------------------------------------------------------------------------- /infrastructure/longhorn/templates/nfs-storageclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/longhorn/templates/nfs-storageclass.yaml -------------------------------------------------------------------------------- /infrastructure/longhorn/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/longhorn/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /infrastructure/longhorn/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/longhorn/values.yaml -------------------------------------------------------------------------------- /infrastructure/metallb/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infrastructure/metallb/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/metallb/Chart.yaml -------------------------------------------------------------------------------- /infrastructure/metallb/templates/bgp-pool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/metallb/templates/bgp-pool.yaml -------------------------------------------------------------------------------- /infrastructure/metallb/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/metallb/values.yaml -------------------------------------------------------------------------------- /infrastructure/node-feature-discovery/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infrastructure/node-feature-discovery/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/node-feature-discovery/Chart.yaml -------------------------------------------------------------------------------- /infrastructure/node-feature-discovery/templates/coral-device.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/node-feature-discovery/templates/coral-device.yaml -------------------------------------------------------------------------------- /infrastructure/node-feature-discovery/templates/geforce-device.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/node-feature-discovery/templates/geforce-device.yaml -------------------------------------------------------------------------------- /infrastructure/node-feature-discovery/templates/gpu-device.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/node-feature-discovery/templates/gpu-device.yaml -------------------------------------------------------------------------------- /infrastructure/node-feature-discovery/templates/radeon-device.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/node-feature-discovery/templates/radeon-device.yaml -------------------------------------------------------------------------------- /infrastructure/node-feature-discovery/templates/zigbee-device.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/node-feature-discovery/templates/zigbee-device.yaml -------------------------------------------------------------------------------- /infrastructure/node-feature-discovery/templates/zwave-device.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/node-feature-discovery/templates/zwave-device.yaml -------------------------------------------------------------------------------- /infrastructure/node-feature-discovery/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/node-feature-discovery/values.yaml -------------------------------------------------------------------------------- /infrastructure/node-problem-detector/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infrastructure/node-problem-detector/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/node-problem-detector/Chart.yaml -------------------------------------------------------------------------------- /infrastructure/node-problem-detector/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/node-problem-detector/values.yaml -------------------------------------------------------------------------------- /infrastructure/oauth2-proxy/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infrastructure/oauth2-proxy/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/oauth2-proxy/Chart.yaml -------------------------------------------------------------------------------- /infrastructure/oauth2-proxy/templates/oauth2-proxy-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/oauth2-proxy/templates/oauth2-proxy-secret.yaml -------------------------------------------------------------------------------- /infrastructure/oauth2-proxy/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/oauth2-proxy/values.yaml -------------------------------------------------------------------------------- /infrastructure/onepassword/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/onepassword/Chart.yaml -------------------------------------------------------------------------------- /infrastructure/onepassword/templates/clustersecretstore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/onepassword/templates/clustersecretstore.yaml -------------------------------------------------------------------------------- /infrastructure/onepassword/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/onepassword/values.yaml -------------------------------------------------------------------------------- /infrastructure/registry-creds/dockerhub-registrycreds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/registry-creds/dockerhub-registrycreds.yaml -------------------------------------------------------------------------------- /infrastructure/registry-creds/dockerhub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/registry-creds/dockerhub.yaml -------------------------------------------------------------------------------- /infrastructure/registry-creds/registry-creds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/registry-creds/registry-creds.yaml -------------------------------------------------------------------------------- /infrastructure/reloader/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infrastructure/reloader/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/reloader/Chart.yaml -------------------------------------------------------------------------------- /infrastructure/reloader/values.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infrastructure/spegel/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infrastructure/spegel/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/spegel/Chart.yaml -------------------------------------------------------------------------------- /infrastructure/spegel/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/spegel/values.yaml -------------------------------------------------------------------------------- /infrastructure/step-certificates/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/step-certificates/Chart.yaml -------------------------------------------------------------------------------- /infrastructure/step-certificates/templates/external-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/step-certificates/templates/external-secret.yaml -------------------------------------------------------------------------------- /infrastructure/step-certificates/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/step-certificates/values.yaml -------------------------------------------------------------------------------- /infrastructure/step-issuer/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/step-issuer/Chart.yaml -------------------------------------------------------------------------------- /infrastructure/step-issuer/secret-helm-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/step-issuer/secret-helm-values.yaml -------------------------------------------------------------------------------- /infrastructure/step-issuer/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/step-issuer/values.yaml -------------------------------------------------------------------------------- /infrastructure/tailscale-gateway/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/tailscale-gateway/Chart.yaml -------------------------------------------------------------------------------- /infrastructure/tailscale-gateway/templates/external-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/tailscale-gateway/templates/external-secret.yaml -------------------------------------------------------------------------------- /infrastructure/tailscale-gateway/templates/roles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/tailscale-gateway/templates/roles.yaml -------------------------------------------------------------------------------- /infrastructure/tailscale-gateway/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/tailscale-gateway/values.yaml -------------------------------------------------------------------------------- /infrastructure/templates/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/templates/app.yaml -------------------------------------------------------------------------------- /infrastructure/templates/argo-helm-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/templates/argo-helm-secrets.yaml -------------------------------------------------------------------------------- /infrastructure/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/infrastructure/values.yaml -------------------------------------------------------------------------------- /main/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/Chart.yaml -------------------------------------------------------------------------------- /main/homelab/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/homelab/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/Chart.yaml -------------------------------------------------------------------------------- /main/homelab/actual/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/homelab/actual/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/actual/Chart.yaml -------------------------------------------------------------------------------- /main/homelab/actual/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/actual/values.yaml -------------------------------------------------------------------------------- /main/homelab/airprint/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/homelab/airprint/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/airprint/.helmignore -------------------------------------------------------------------------------- /main/homelab/airprint/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/airprint/Chart.yaml -------------------------------------------------------------------------------- /main/homelab/airprint/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/airprint/values.yaml -------------------------------------------------------------------------------- /main/homelab/cloudflare-ddns/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/homelab/cloudflare-ddns/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/cloudflare-ddns/.helmignore -------------------------------------------------------------------------------- /main/homelab/cloudflare-ddns/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/cloudflare-ddns/Chart.yaml -------------------------------------------------------------------------------- /main/homelab/cloudflare-ddns/script/cloudflare-ddns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/cloudflare-ddns/script/cloudflare-ddns.sh -------------------------------------------------------------------------------- /main/homelab/cloudflare-ddns/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/cloudflare-ddns/templates/_helpers.tpl -------------------------------------------------------------------------------- /main/homelab/cloudflare-ddns/templates/cloudflare-ddns-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/cloudflare-ddns/templates/cloudflare-ddns-secret.yaml -------------------------------------------------------------------------------- /main/homelab/cloudflare-ddns/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/cloudflare-ddns/templates/configmap.yaml -------------------------------------------------------------------------------- /main/homelab/cloudflare-ddns/templates/cronjob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/cloudflare-ddns/templates/cronjob.yaml -------------------------------------------------------------------------------- /main/homelab/cloudflare-ddns/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/cloudflare-ddns/values.yaml -------------------------------------------------------------------------------- /main/homelab/cyberchef/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/homelab/cyberchef/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/cyberchef/Chart.yaml -------------------------------------------------------------------------------- /main/homelab/cyberchef/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/cyberchef/values.yaml -------------------------------------------------------------------------------- /main/homelab/echo-server/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/echo-server/Chart.yaml -------------------------------------------------------------------------------- /main/homelab/echo-server/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/echo-server/values.yaml -------------------------------------------------------------------------------- /main/homelab/emqx/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/homelab/emqx/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/emqx/Chart.yaml -------------------------------------------------------------------------------- /main/homelab/emqx/secret-helm-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/emqx/secret-helm-values.yaml -------------------------------------------------------------------------------- /main/homelab/emqx/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/emqx/templates/configmap.yaml -------------------------------------------------------------------------------- /main/homelab/emqx/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/emqx/values.yaml -------------------------------------------------------------------------------- /main/homelab/external-ingress/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/homelab/external-ingress/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/external-ingress/.helmignore -------------------------------------------------------------------------------- /main/homelab/external-ingress/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/external-ingress/Chart.yaml -------------------------------------------------------------------------------- /main/homelab/external-ingress/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/external-ingress/templates/_helpers.tpl -------------------------------------------------------------------------------- /main/homelab/external-ingress/templates/external-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/external-ingress/templates/external-ingress.yaml -------------------------------------------------------------------------------- /main/homelab/external-ingress/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/external-ingress/values.yaml -------------------------------------------------------------------------------- /main/homelab/focalboard/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/focalboard/Chart.yaml -------------------------------------------------------------------------------- /main/homelab/focalboard/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/focalboard/values.yaml -------------------------------------------------------------------------------- /main/homelab/frigate/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/homelab/frigate/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/frigate/Chart.yaml -------------------------------------------------------------------------------- /main/homelab/frigate/secret-helm-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/frigate/secret-helm-values.yaml -------------------------------------------------------------------------------- /main/homelab/frigate/templates/configmap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/frigate/templates/configmap.yml -------------------------------------------------------------------------------- /main/homelab/frigate/templates/noauth-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/frigate/templates/noauth-ingress.yaml -------------------------------------------------------------------------------- /main/homelab/frigate/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/frigate/values.yaml -------------------------------------------------------------------------------- /main/homelab/gethomepage/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/homelab/gethomepage/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/gethomepage/Chart.yaml -------------------------------------------------------------------------------- /main/homelab/gethomepage/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/gethomepage/values.yaml -------------------------------------------------------------------------------- /main/homelab/home-assistant/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/homelab/home-assistant/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/home-assistant/Chart.yaml -------------------------------------------------------------------------------- /main/homelab/home-assistant/secret-helm-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/home-assistant/secret-helm-values.yaml -------------------------------------------------------------------------------- /main/homelab/home-assistant/templates/home-assistant-gcp-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/home-assistant/templates/home-assistant-gcp-secret.yaml -------------------------------------------------------------------------------- /main/homelab/home-assistant/templates/home-assistant-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/home-assistant/templates/home-assistant-secret.yaml -------------------------------------------------------------------------------- /main/homelab/home-assistant/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/home-assistant/values.yaml -------------------------------------------------------------------------------- /main/homelab/kanboard/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/homelab/kanboard/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/kanboard/Chart.yaml -------------------------------------------------------------------------------- /main/homelab/kanboard/templates/kanboard-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/kanboard/templates/kanboard-secret.yaml -------------------------------------------------------------------------------- /main/homelab/kanboard/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/kanboard/values.yaml -------------------------------------------------------------------------------- /main/homelab/mealie/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/homelab/mealie/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/mealie/Chart.yaml -------------------------------------------------------------------------------- /main/homelab/mealie/templates/mealie-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/mealie/templates/mealie-secret.yaml -------------------------------------------------------------------------------- /main/homelab/mealie/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/mealie/values.yaml -------------------------------------------------------------------------------- /main/homelab/minio/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/homelab/minio/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/minio/Chart.yaml -------------------------------------------------------------------------------- /main/homelab/minio/secret-helm-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/minio/secret-helm-values.yaml -------------------------------------------------------------------------------- /main/homelab/minio/templates/minio-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/minio/templates/minio-secret.yaml -------------------------------------------------------------------------------- /main/homelab/minio/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/minio/values.yaml -------------------------------------------------------------------------------- /main/homelab/node-red/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/homelab/node-red/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/node-red/Chart.yaml -------------------------------------------------------------------------------- /main/homelab/node-red/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/node-red/values.yaml -------------------------------------------------------------------------------- /main/homelab/nomie/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/nomie/Chart.yaml -------------------------------------------------------------------------------- /main/homelab/nomie/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/nomie/values.yaml -------------------------------------------------------------------------------- /main/homelab/openttd/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/homelab/openttd/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/openttd/Chart.yaml -------------------------------------------------------------------------------- /main/homelab/openttd/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/openttd/values.yaml -------------------------------------------------------------------------------- /main/homelab/oscar/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/homelab/oscar/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/oscar/Chart.yaml -------------------------------------------------------------------------------- /main/homelab/oscar/templates/cronjob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/oscar/templates/cronjob.yaml -------------------------------------------------------------------------------- /main/homelab/oscar/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/oscar/values.yaml -------------------------------------------------------------------------------- /main/homelab/planka/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/homelab/planka/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/planka/Chart.yaml -------------------------------------------------------------------------------- /main/homelab/planka/templates/planka-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/planka/templates/planka-secret.yaml -------------------------------------------------------------------------------- /main/homelab/planka/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/planka/values.yaml -------------------------------------------------------------------------------- /main/homelab/templates/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/templates/app.yaml -------------------------------------------------------------------------------- /main/homelab/templates/argo-helm-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/templates/argo-helm-secrets.yaml -------------------------------------------------------------------------------- /main/homelab/tesla-dashcam/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/homelab/tesla-dashcam/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/tesla-dashcam/Chart.yaml -------------------------------------------------------------------------------- /main/homelab/tesla-dashcam/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/tesla-dashcam/values.yaml -------------------------------------------------------------------------------- /main/homelab/teslamate/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/homelab/teslamate/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/teslamate/Chart.yaml -------------------------------------------------------------------------------- /main/homelab/teslamate/templates/teslamate-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/teslamate/templates/teslamate-secret.yaml -------------------------------------------------------------------------------- /main/homelab/teslamate/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/teslamate/values.yaml -------------------------------------------------------------------------------- /main/homelab/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/values.yaml -------------------------------------------------------------------------------- /main/homelab/webtrees/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/homelab/webtrees/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/webtrees/Chart.yaml -------------------------------------------------------------------------------- /main/homelab/webtrees/templates/webtrees-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/webtrees/templates/webtrees-secret.yaml -------------------------------------------------------------------------------- /main/homelab/webtrees/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/webtrees/values.yaml -------------------------------------------------------------------------------- /main/homelab/wyze-bridge/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/homelab/wyze-bridge/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/wyze-bridge/Chart.yaml -------------------------------------------------------------------------------- /main/homelab/wyze-bridge/templates/wyze-bridge-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/wyze-bridge/templates/wyze-bridge-secret.yaml -------------------------------------------------------------------------------- /main/homelab/wyze-bridge/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/wyze-bridge/values.yaml -------------------------------------------------------------------------------- /main/homelab/zigbee2mqtt/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/homelab/zigbee2mqtt/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/zigbee2mqtt/Chart.yaml -------------------------------------------------------------------------------- /main/homelab/zigbee2mqtt/templates/zigbee2mqtt-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/zigbee2mqtt/templates/zigbee2mqtt-secret.yaml -------------------------------------------------------------------------------- /main/homelab/zigbee2mqtt/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/zigbee2mqtt/values.yaml -------------------------------------------------------------------------------- /main/homelab/zwavejs2mqtt/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/homelab/zwavejs2mqtt/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/zwavejs2mqtt/Chart.yaml -------------------------------------------------------------------------------- /main/homelab/zwavejs2mqtt/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/homelab/zwavejs2mqtt/values.yaml -------------------------------------------------------------------------------- /main/logs/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/logs/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/logs/Chart.yaml -------------------------------------------------------------------------------- /main/logs/loki/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/logs/loki/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/logs/loki/Chart.yaml -------------------------------------------------------------------------------- /main/logs/loki/secret-helm-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/logs/loki/secret-helm-values.yaml -------------------------------------------------------------------------------- /main/logs/loki/templates/loki-alerting-rules-config-map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/logs/loki/templates/loki-alerting-rules-config-map.yaml -------------------------------------------------------------------------------- /main/logs/loki/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/logs/loki/values.yaml -------------------------------------------------------------------------------- /main/logs/templates/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/logs/templates/app.yaml -------------------------------------------------------------------------------- /main/logs/templates/argo-helm-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/logs/templates/argo-helm-secrets.yaml -------------------------------------------------------------------------------- /main/logs/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/logs/values.yaml -------------------------------------------------------------------------------- /main/logs/vector/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/logs/vector/Chart.yaml -------------------------------------------------------------------------------- /main/logs/vector/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/logs/vector/values.yaml -------------------------------------------------------------------------------- /main/monitoring/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/monitoring/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/monitoring/Chart.yaml -------------------------------------------------------------------------------- /main/monitoring/alertmanager-discord/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/monitoring/alertmanager-discord/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/monitoring/alertmanager-discord/.helmignore -------------------------------------------------------------------------------- /main/monitoring/alertmanager-discord/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/monitoring/alertmanager-discord/Chart.yaml -------------------------------------------------------------------------------- /main/monitoring/alertmanager-discord/templates/alertmanager-discord-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/monitoring/alertmanager-discord/templates/alertmanager-discord-secret.yaml -------------------------------------------------------------------------------- /main/monitoring/alertmanager-discord/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/monitoring/alertmanager-discord/values.yaml -------------------------------------------------------------------------------- /main/monitoring/blackbox-exporter/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/monitoring/blackbox-exporter/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/monitoring/blackbox-exporter/Chart.yaml -------------------------------------------------------------------------------- /main/monitoring/blackbox-exporter/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/monitoring/blackbox-exporter/values.yaml -------------------------------------------------------------------------------- /main/monitoring/botkube/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/monitoring/botkube/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/monitoring/botkube/Chart.yaml -------------------------------------------------------------------------------- /main/monitoring/botkube/secret-helm-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/monitoring/botkube/secret-helm-values.yaml -------------------------------------------------------------------------------- /main/monitoring/botkube/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/monitoring/botkube/values.yaml -------------------------------------------------------------------------------- /main/monitoring/grafana/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/monitoring/grafana/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/monitoring/grafana/Chart.yaml -------------------------------------------------------------------------------- /main/monitoring/grafana/templates/grafana-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/monitoring/grafana/templates/grafana-secret.yaml -------------------------------------------------------------------------------- /main/monitoring/grafana/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/monitoring/grafana/values.yaml -------------------------------------------------------------------------------- /main/monitoring/influxdb/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/monitoring/influxdb/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/monitoring/influxdb/Chart.yaml -------------------------------------------------------------------------------- /main/monitoring/influxdb/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/monitoring/influxdb/values.yaml -------------------------------------------------------------------------------- /main/monitoring/karma/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/monitoring/karma/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/monitoring/karma/Chart.yaml -------------------------------------------------------------------------------- /main/monitoring/karma/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/monitoring/karma/values.yaml -------------------------------------------------------------------------------- /main/monitoring/pushgateway/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/monitoring/pushgateway/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/monitoring/pushgateway/Chart.yaml -------------------------------------------------------------------------------- /main/monitoring/pushgateway/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/monitoring/pushgateway/values.yaml -------------------------------------------------------------------------------- /main/monitoring/speedtest-exporter/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/monitoring/speedtest-exporter/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/monitoring/speedtest-exporter/Chart.yaml -------------------------------------------------------------------------------- /main/monitoring/speedtest-exporter/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/monitoring/speedtest-exporter/values.yaml -------------------------------------------------------------------------------- /main/monitoring/templates/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/monitoring/templates/app.yaml -------------------------------------------------------------------------------- /main/monitoring/templates/argo-helm-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/monitoring/templates/argo-helm-secrets.yaml -------------------------------------------------------------------------------- /main/monitoring/trivy/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/monitoring/trivy/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/monitoring/trivy/Chart.yaml -------------------------------------------------------------------------------- /main/monitoring/trivy/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/monitoring/trivy/values.yaml -------------------------------------------------------------------------------- /main/monitoring/unifi-poller/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/monitoring/unifi-poller/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/monitoring/unifi-poller/Chart.yaml -------------------------------------------------------------------------------- /main/monitoring/unifi-poller/templates/prometheusrules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/monitoring/unifi-poller/templates/prometheusrules.yaml -------------------------------------------------------------------------------- /main/monitoring/unifi-poller/templates/unifi-poller-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/monitoring/unifi-poller/templates/unifi-poller-secret.yaml -------------------------------------------------------------------------------- /main/monitoring/unifi-poller/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/monitoring/unifi-poller/values.yaml -------------------------------------------------------------------------------- /main/monitoring/uptime-kuma/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/monitoring/uptime-kuma/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/monitoring/uptime-kuma/Chart.yaml -------------------------------------------------------------------------------- /main/monitoring/uptime-kuma/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/monitoring/uptime-kuma/values.yaml -------------------------------------------------------------------------------- /main/monitoring/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/monitoring/values.yaml -------------------------------------------------------------------------------- /main/monitoring/victoria-metrics/.argocd-allow-concurrency: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/monitoring/victoria-metrics/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/monitoring/victoria-metrics/Chart.yaml -------------------------------------------------------------------------------- /main/monitoring/victoria-metrics/secret-helm-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/monitoring/victoria-metrics/secret-helm-values.yaml -------------------------------------------------------------------------------- /main/monitoring/victoria-metrics/templates/dockerhub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/monitoring/victoria-metrics/templates/dockerhub.yaml -------------------------------------------------------------------------------- /main/monitoring/victoria-metrics/templates/ingress-nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/monitoring/victoria-metrics/templates/ingress-nginx.yaml -------------------------------------------------------------------------------- /main/monitoring/victoria-metrics/templates/kured.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/monitoring/victoria-metrics/templates/kured.yaml -------------------------------------------------------------------------------- /main/monitoring/victoria-metrics/templates/node-exporter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/monitoring/victoria-metrics/templates/node-exporter.yaml -------------------------------------------------------------------------------- /main/monitoring/victoria-metrics/templates/oom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/monitoring/victoria-metrics/templates/oom.yaml -------------------------------------------------------------------------------- /main/monitoring/victoria-metrics/templates/server-tracker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/monitoring/victoria-metrics/templates/server-tracker.yaml -------------------------------------------------------------------------------- /main/monitoring/victoria-metrics/templates/victoria-metrics-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/monitoring/victoria-metrics/templates/victoria-metrics-secret.yaml -------------------------------------------------------------------------------- /main/monitoring/victoria-metrics/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/monitoring/victoria-metrics/values.yaml -------------------------------------------------------------------------------- /main/templates/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/templates/app.yaml -------------------------------------------------------------------------------- /main/templates/nas-nfs-pv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/templates/nas-nfs-pv.yaml -------------------------------------------------------------------------------- /main/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/main/values.yaml -------------------------------------------------------------------------------- /mkdocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/mkdocs.yaml -------------------------------------------------------------------------------- /setup/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/setup/.env.sample -------------------------------------------------------------------------------- /setup/bootstrap-certmanager-new.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/setup/bootstrap-certmanager-new.sh -------------------------------------------------------------------------------- /setup/bootstrap-certmanager.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/setup/bootstrap-certmanager.sh -------------------------------------------------------------------------------- /setup/bootstrap-cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/setup/bootstrap-cluster.sh -------------------------------------------------------------------------------- /setup/bootstrap-objects-new.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/setup/bootstrap-objects-new.sh -------------------------------------------------------------------------------- /setup/bootstrap-objects.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/setup/bootstrap-objects.sh -------------------------------------------------------------------------------- /setup/bootstrap-step-certificate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/setup/bootstrap-step-certificate.sh -------------------------------------------------------------------------------- /setup/bootstrap-vault.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/setup/bootstrap-vault.sh -------------------------------------------------------------------------------- /system-upgrade/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/system-upgrade/README.md -------------------------------------------------------------------------------- /system-upgrade/k3s-plan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/system-upgrade/k3s-plan.yaml -------------------------------------------------------------------------------- /system-upgrade/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/system-upgrade/kustomization.yaml -------------------------------------------------------------------------------- /system-upgrade/system-upgrade-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerrum/k8s-gitops/HEAD/system-upgrade/system-upgrade-controller.yaml --------------------------------------------------------------------------------