Skip to content

Commit

Permalink
docs(sks-examples): update modules
Browse files Browse the repository at this point in the history
  • Loading branch information
lentidas committed Apr 17, 2024
1 parent bd9531a commit c49fb76
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion examples/sks/locals.tf
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
16 changes: 8 additions & 8 deletions examples/sks/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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}" = {
Expand All @@ -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

Expand All @@ -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

Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/sks/terraform.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c49fb76

Please sign in to comment.