diff --git a/examples/sks/locals.tf b/examples/sks/locals.tf index 218ef6792c..d050541ce4 100644 --- a/examples/sks/locals.tf +++ b/examples/sks/locals.tf @@ -1,5 +1,5 @@ locals { - kubernetes_version = "1.28.5" + kubernetes_version = "1.29.2" cluster_name = "YOUR_CLUSTER_NAME" # Must be unique for each DevOps Stack deployment in a single account. zone = "YOUR_CLUSTER_ZONE" service_level = "starter" diff --git a/examples/sks/main.tf b/examples/sks/main.tf index e43403addf..0b808b73b1 100644 --- a/examples/sks/main.tf +++ b/examples/sks/main.tf @@ -21,7 +21,7 @@ module "sks" { } module "argocd_bootstrap" { - source = "git::https://github.com/camptocamp/devops-stack-module-argocd.git//bootstrap?ref=v4.4.0" + source = "git::https://github.com/camptocamp/devops-stack-module-argocd.git//bootstrap?ref=v4.4.1" argocd_projects = { "${module.sks.cluster_name}" = { @@ -33,7 +33,7 @@ module "argocd_bootstrap" { } module "traefik" { - source = "git::https://github.com/camptocamp/devops-stack-module-traefik.git//sks?ref=v6.2.0" + source = "git::https://github.com/camptocamp/devops-stack-module-traefik.git//sks?ref=v6.3.0" argocd_project = module.sks.cluster_name @@ -50,7 +50,7 @@ module "traefik" { } module "cert-manager" { - source = "git::https://github.com/camptocamp/devops-stack-module-cert-manager.git//sks?ref=v8.1.0" + source = "git::https://github.com/camptocamp/devops-stack-module-cert-manager.git//sks?ref=v8.2.0" argocd_project = module.sks.cluster_name @@ -106,7 +106,7 @@ module "oidc" { } module "longhorn" { - source = "git::https://github.com/camptocamp/devops-stack-module-longhorn.git?ref=v3.4.0" + source = "git::https://github.com/camptocamp/devops-stack-module-longhorn.git?ref=v3.5.0" cluster_name = module.sks.cluster_name base_domain = module.sks.base_domain @@ -140,7 +140,7 @@ module "longhorn" { } module "loki-stack" { - source = "git::https://github.com/camptocamp/devops-stack-module-loki-stack.git//sks?ref=v7.1.0" + source = "git::https://github.com/camptocamp/devops-stack-module-loki-stack.git//sks?ref=v7.2.0" argocd_project = module.sks.cluster_name @@ -162,7 +162,7 @@ module "loki-stack" { } module "thanos" { - source = "git::https://github.com/camptocamp/devops-stack-module-thanos.git//sks?ref=v4.0.0" + source = "git::https://github.com/camptocamp/devops-stack-module-thanos.git//sks?ref=v4.1.0" cluster_name = module.sks.cluster_name base_domain = module.sks.base_domain @@ -196,7 +196,7 @@ module "thanos" { } module "kube-prometheus-stack" { - source = "git::https://github.com/camptocamp/devops-stack-module-kube-prometheus-stack.git//sks?ref=v9.2.1" + source = "git::https://github.com/camptocamp/devops-stack-module-kube-prometheus-stack.git//sks?ref=v10.1.0" cluster_name = module.sks.cluster_name base_domain = module.sks.base_domain @@ -235,7 +235,7 @@ module "kube-prometheus-stack" { } module "argocd" { - source = "git::https://github.com/camptocamp/devops-stack-module-argocd.git?ref=v4.4.0" + source = "git::https://github.com/camptocamp/devops-stack-module-argocd.git?ref=v4.4.1" cluster_name = module.sks.cluster_name base_domain = module.sks.base_domain diff --git a/examples/sks/terraform.tf b/examples/sks/terraform.tf index 65626b01f6..ec45885b32 100644 --- a/examples/sks/terraform.tf +++ b/examples/sks/terraform.tf @@ -47,7 +47,7 @@ provider "aws" { access_key = var.exoscale_iam_key secret_key = var.exoscale_iam_secret - # Skip validations specific to AWS in order to use this provider for Exoscale services + # Skip validations specific to AWS in order to use this provider for Exoscale services. skip_credentials_validation = true skip_requesting_account_id = true skip_metadata_api_check = true