Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump argocd::devops-stack-module-argocd from 6.3.0 to 7.0.0 in /examples/eks #1392

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/eks/apps.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "helloworld_apps" {
source = "git::https://github.com/camptocamp/devops-stack-module-applicationset.git?ref=v3.0.0"
source = "git::https://github.com/camptocamp/devops-stack-module-applicationset.git?ref=v4.0.0"

dependency_ids = {
argocd = module.argocd.id
Expand Down
4 changes: 2 additions & 2 deletions examples/eks/csi_drivers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ resource "aws_efs_mount_target" "eks" {
}

module "efs" {
source = "git::https://github.com/camptocamp/devops-stack-module-efs-csi-driver.git?ref=v4.0.0"
source = "git::https://github.com/camptocamp/devops-stack-module-efs-csi-driver.git?ref=v5.0.0"

cluster_name = local.cluster_name
argocd_project = module.eks.cluster_name
Expand All @@ -52,7 +52,7 @@ module "efs" {
}

module "ebs" {
source = "git::https://github.com/camptocamp/devops-stack-module-ebs-csi-driver.git?ref=v3.6.0"
source = "git::https://github.com/camptocamp/devops-stack-module-ebs-csi-driver.git?ref=v4.0.0"

cluster_name = local.cluster_name
argocd_project = module.eks.cluster_name
Expand Down
18 changes: 9 additions & 9 deletions examples/eks/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ module "vpc" {
}

module "eks" {
source = "git::https://github.com/camptocamp/devops-stack-module-cluster-eks.git?ref=v3.3.0"
source = "git::https://github.com/camptocamp/devops-stack-module-cluster-eks.git?ref=v4.2.0"

cluster_name = local.cluster_name
kubernetes_version = local.kubernetes_version
Expand Down Expand Up @@ -75,7 +75,7 @@ module "oidc" {
}

module "argocd_bootstrap" {
source = "git::https://github.com/camptocamp/devops-stack-module-argocd.git//bootstrap?ref=v6.3.0"
source = "git::https://github.com/camptocamp/devops-stack-module-argocd.git//bootstrap?ref=v7.0.0"

argocd_projects = {
"${module.eks.cluster_name}" = {
Expand All @@ -87,7 +87,7 @@ module "argocd_bootstrap" {
}

module "metrics-server" {
source = "git::https://github.com/camptocamp/devops-stack-module-metrics-server.git?ref=v2.1.0"
source = "git::https://github.com/camptocamp/devops-stack-module-metrics-server.git?ref=v3.0.0"

argocd_project = module.eks.cluster_name

Expand All @@ -99,7 +99,7 @@ module "metrics-server" {
}

module "traefik" {
source = "git::https://github.com/camptocamp/devops-stack-module-traefik.git//eks?ref=v8.2.0"
source = "git::https://github.com/camptocamp/devops-stack-module-traefik.git//eks?ref=v9.0.0"

argocd_project = module.eks.cluster_name

Expand All @@ -112,7 +112,7 @@ module "traefik" {
}

module "cert-manager" {
source = "git::https://github.com/camptocamp/devops-stack-module-cert-manager.git//eks?ref=v8.6.0"
source = "git::https://github.com/camptocamp/devops-stack-module-cert-manager.git//eks?ref=v9.0.0"

cluster_name = module.eks.cluster_name
base_domain = module.eks.base_domain
Expand All @@ -131,7 +131,7 @@ module "cert-manager" {
}

module "loki-stack" {
source = "git::https://github.com/camptocamp/devops-stack-module-loki-stack.git//eks?ref=v9.0.0"
source = "git::https://github.com/camptocamp/devops-stack-module-loki-stack.git//eks?ref=v10.0.0"

argocd_project = module.eks.cluster_name

Expand All @@ -150,7 +150,7 @@ module "loki-stack" {
}

module "thanos" {
source = "git::https://github.com/camptocamp/devops-stack-module-thanos.git//eks?ref=v6.0.0"
source = "git::https://github.com/camptocamp/devops-stack-module-thanos.git//eks?ref=v7.0.0"

cluster_name = module.eks.cluster_name
base_domain = module.eks.base_domain
Expand Down Expand Up @@ -181,7 +181,7 @@ module "thanos" {
}

module "kube-prometheus-stack" {
source = "git::https://github.com/camptocamp/devops-stack-module-kube-prometheus-stack.git//eks?ref=v11.1.1"
source = "git::https://github.com/camptocamp/devops-stack-module-kube-prometheus-stack.git//eks?ref=v13.0.0"

cluster_name = module.eks.cluster_name
base_domain = module.eks.base_domain
Expand Down Expand Up @@ -221,7 +221,7 @@ module "kube-prometheus-stack" {
}

module "argocd" {
source = "git::https://github.com/camptocamp/devops-stack-module-argocd.git?ref=v6.3.0"
source = "git::https://github.com/camptocamp/devops-stack-module-argocd.git?ref=v7.0.0"

cluster_name = module.eks.cluster_name
base_domain = module.eks.base_domain
Expand Down