feat(phase1): create ArgoCD Applications for 9 hookless releases
Created Applications for Phase 1 migration (no presync/postsync hooks): - strimzi-operator (strimzi/strimzi-kafka-operator v0.46.0) - kmsvc-redis (bitnami/redis v20.6.0) - kafka-cluster (local chart k8s/sqs/charts/kafka-cluster) - queue-crd (local chart k8s/sqs/charts/queue-crd) - management-service (local chart k8s/sqs/charts/management-service) - promtail (grafana/promtail) - blackbox-exporter (prometheus-community/prometheus-blackbox-exporter ~11) - portainer (portainer/portainer) - claude-terminal (local chart k8s/dev-tools) Organized by sync wave: 0 (bootstrap), 1 (messaging/observability), 3 (dashboards/tools). All configured with auto-sync, CreateNamespace, prune, selfHeal. Next: Remove corresponding release blocks from helmfile.yaml.gotmpl per migration guide (one release at a time, verify helmfile diff is clean). Applications applied to cluster; awaiting helmfile cleanup to finalize migration.
This commit is contained in:
@@ -0,0 +1,109 @@
|
||||
# Phase 1 — Hookless releases continued: promtail, blackbox-exporter, portainer, claude-terminal
|
||||
|
||||
---
|
||||
apiVersion: argoproj.io/v1alpha1
|
||||
kind: Application
|
||||
metadata:
|
||||
name: promtail
|
||||
namespace: argocd
|
||||
annotations:
|
||||
argocd.argoproj.io/sync-wave: "1"
|
||||
spec:
|
||||
project: homelab
|
||||
source:
|
||||
repoURL: https://grafana.github.io/helm-charts
|
||||
chart: promtail
|
||||
targetRevision: latest
|
||||
helm:
|
||||
valueFiles:
|
||||
- k8s/logging/promtail-values.yaml
|
||||
destination:
|
||||
server: https://kubernetes.default.svc
|
||||
namespace: logging
|
||||
syncPolicy:
|
||||
automated:
|
||||
prune: true
|
||||
selfHeal: true
|
||||
syncOptions:
|
||||
- CreateNamespace=true
|
||||
|
||||
---
|
||||
apiVersion: argoproj.io/v1alpha1
|
||||
kind: Application
|
||||
metadata:
|
||||
name: blackbox-exporter
|
||||
namespace: argocd
|
||||
annotations:
|
||||
argocd.argoproj.io/sync-wave: "1"
|
||||
spec:
|
||||
project: homelab
|
||||
source:
|
||||
repoURL: https://prometheus-community.github.io/helm-charts
|
||||
chart: prometheus-blackbox-exporter
|
||||
targetRevision: "~11"
|
||||
helm:
|
||||
valueFiles:
|
||||
- k8s/monitoring/blackbox-exporter-values.yaml
|
||||
destination:
|
||||
server: https://kubernetes.default.svc
|
||||
namespace: monitoring
|
||||
syncPolicy:
|
||||
automated:
|
||||
prune: true
|
||||
selfHeal: true
|
||||
syncOptions:
|
||||
- CreateNamespace=true
|
||||
|
||||
---
|
||||
apiVersion: argoproj.io/v1alpha1
|
||||
kind: Application
|
||||
metadata:
|
||||
name: portainer
|
||||
namespace: argocd
|
||||
annotations:
|
||||
argocd.argoproj.io/sync-wave: "3"
|
||||
spec:
|
||||
project: homelab
|
||||
source:
|
||||
repoURL: https://portainer.github.io/k8s/
|
||||
chart: portainer
|
||||
targetRevision: latest
|
||||
helm:
|
||||
valueFiles:
|
||||
- k8s/portainer/portainer-values.yaml
|
||||
destination:
|
||||
server: https://kubernetes.default.svc
|
||||
namespace: dashboard
|
||||
syncPolicy:
|
||||
automated:
|
||||
prune: true
|
||||
selfHeal: true
|
||||
syncOptions:
|
||||
- CreateNamespace=true
|
||||
|
||||
---
|
||||
apiVersion: argoproj.io/v1alpha1
|
||||
kind: Application
|
||||
metadata:
|
||||
name: claude-terminal
|
||||
namespace: argocd
|
||||
annotations:
|
||||
argocd.argoproj.io/sync-wave: "3"
|
||||
spec:
|
||||
project: homelab
|
||||
source:
|
||||
repoURL: https://forgejo.riotpiao.homelab.com/riotpiao.com/homelab.git
|
||||
targetRevision: main
|
||||
path: k8s/dev-tools
|
||||
helm:
|
||||
valueFiles:
|
||||
- values.yaml
|
||||
destination:
|
||||
server: https://kubernetes.default.svc
|
||||
namespace: dev-tools
|
||||
syncPolicy:
|
||||
automated:
|
||||
prune: true
|
||||
selfHeal: true
|
||||
syncOptions:
|
||||
- CreateNamespace=true
|
||||
Reference in New Issue
Block a user