Skip to content

Commit

Permalink
added argocd image updater and rollout (currently dockerhub)
Browse files Browse the repository at this point in the history
  • Loading branch information
runalsh committed Mar 16, 2024
1 parent e901566 commit 1dd7fed
Show file tree
Hide file tree
Showing 8 changed files with 5,541 additions and 2 deletions.
10 changes: 10 additions & 0 deletions argocd-imageupdater.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# resource "helm_release" "argocd-imageupdater" {
# name = "argocd-imageupdater"

# repository = "https://argoproj.github.io/argo-helm"
# chart = "argocd-image-updater"
# namespace = "argocd"
# version = "0.8.4"

# values = [file("values/argocd-imageupdater.yaml")]
# }
10 changes: 10 additions & 0 deletions argocd-rollouts.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@


# resource "helm_release" "argo-rollouts" {
# name = "argo-rollouts"
# repository = "https://argoproj.github.io/argo-helm"
# chart = "argo-rollouts"
# namespace = "argocd"
# version = "2.32.0"
# values = [file("values/argo-rollouts.yaml")]
# }
14 changes: 14 additions & 0 deletions argocd.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@

# resource "kubernetes_namespace" "argocd-namespace" {
# metadata {
# name = "argocd"
# }
# }

# resource "helm_release" "argocd" {
# name = "argocd"
# repository = "https://argoproj.github.io/argo-helm"
Expand All @@ -8,3 +15,10 @@
# force_update = true
# values = [file("${path.module}/values/argocdvalues.yaml")]
# }

# resource "kubectl_manifest" "argocd_dashboard" {
# yaml_body = file("${path.module}/dashboards/argocd-grafana-dashboard.yaml")
# depends_on = [
# helm_release.argocd
# ]
# }
Loading

0 comments on commit 1dd7fed

Please sign in to comment.