diff --git a/blueprints/.k8s.env b/blueprints/.k8s.env index f3bab735..29f263db 100644 --- a/blueprints/.k8s.env +++ b/blueprints/.k8s.env @@ -3,6 +3,6 @@ # K8s support: https://docs.cloudbees.com/docs/cloudbees-common/latest/supported-platforms/cloudbees-ci-cloud#_kubernetes vK8=1.28 # CloudBees CI Chart versions: https://artifacthub.io/packages/helm/cloudbees/cloudbees-core/ -vCBCI_Helm=3.18306.0+b5ad27c80a6b +vCBCI_Helm=3.19313.0+1afe0458111d # AWS Terraform EKS Blueprint Addons Module https://github.com/aws-ia/terraform-aws-eks-blueprints-addons/releases vEKSBpAddonsTFMod=1.15.1 diff --git a/main.tf b/main.tf index 7bfa5de9..a02cee7b 100644 --- a/main.tf +++ b/main.tf @@ -147,7 +147,7 @@ resource "helm_release" "cloudbees_ci" { description = try(var.helm_config.description, null) chart = "cloudbees-core" #vCBCI_Helm# - version = try(var.helm_config.version, "3.18306.0+b5ad27c80a6b") + version = try(var.helm_config.version, "3.19313.0+1afe0458111d") repository = try(var.helm_config.repository, "https://public-charts.artifacts.cloudbees.com/repository/public/") values = local.create_secret_casc ? concat(var.helm_config.values, local.oc_secrets_mount, [templatefile("${path.module}/values.yml", local.cbci_template_values)]) : concat(var.helm_config.values, [templatefile("${path.module}/values.yml", local.cbci_template_values)]) timeout = try(var.helm_config.timeout, 1200)