Skip to content

Commit

Permalink
Updated Istio to 1.23.2, cilium to 1.16, bumped providers
Browse files Browse the repository at this point in the history
  • Loading branch information
madduci committed Oct 19, 2024
1 parent 4378fc9 commit 7b4d1cc
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion cluster/cilium-mesh/variables.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
variable "helm_version" {
description = "The version of the Cilium Helm Chart to be installed"
type = string
default = "1.15.7"
default = "1.16.3"
}

variable "helm_repository" {
Expand Down
14 changes: 7 additions & 7 deletions cluster/istio-mesh/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,17 @@ resource "helm_release" "istiod" {
wait = true

set {
name = "pilot.autoscaleEnabled"
name = "defaults.pilot.autoscaleEnabled"
value = "false"
}

set {
name = "logAsJson"
name = "defaults.global.logAsJson"
value = "true"
}

set {
name = "meshConfig.tracing.zipkin.address"
name = "defaults.meshConfig.tracing.zipkin.address"
value = "zipkin.${kubernetes_namespace_v1.istio_system.metadata[0].name}:9411"
}

Expand All @@ -60,12 +60,12 @@ resource "helm_release" "istio_ingressgateway" {
depends_on = [helm_release.istiod]

set {
name = "autoscaling.enabled"
name = "defaults.autoscaling.enabled"
value = "false"
}

set {
name = "service.type"
name = "defaults.service.type"
value = "NodePort"
}
}
Expand All @@ -89,13 +89,13 @@ resource "helm_release" "istio_egressgateway" {
]

set {
name = "autoscaling.enabled"
name = "defaults.autoscaling.enabled"
value = "false"
}

# Egress gateways do not need an external LoadBalancer IP
set {
name = "service.type"
name = "defaults.service.type"
value = "ClusterIP"
}
}
Expand Down
2 changes: 1 addition & 1 deletion cluster/istio-mesh/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ variable "namespace" {
variable "helm_version" {
description = "The version of the Istio Helm Chart to be installed"
type = string
default = "1.22.3"
default = "1.23.2"
}

variable "helm_repository" {
Expand Down
6 changes: 3 additions & 3 deletions cluster/providers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@ terraform {
required_providers {
kind = {
source = "tehcyx/kind"
version = "0.5.1"
version = "0.6.0"
}
helm = {
source = "hashicorp/helm"
version = "2.14.0"
version = "2.16.1"
}

kubernetes = {
source = "hashicorp/kubernetes"
version = "2.31.0"
version = "2.33.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion cluster/variables.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
variable "kubernetes_version" {
type = string
default = "v1.30.2"
default = "v1.31.1"
description = "Defines the kubernetes version to be used"
}

Expand Down

0 comments on commit 7b4d1cc

Please sign in to comment.