Skip to content

Commit

Permalink
update k8s version
Browse files Browse the repository at this point in the history
  • Loading branch information
paulofponciano committed Feb 26, 2024
1 parent 7d64be7 commit 0f4f7c7
Show file tree
Hide file tree
Showing 9 changed files with 1,561 additions and 1,199 deletions.
6 changes: 3 additions & 3 deletions helm_istio.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ resource "helm_release" "istio_base" {
namespace = "istio-system"
create_namespace = true

version = "1.18.2"
version = "1.20.1"

depends_on = [
aws_eks_cluster.eks_cluster,
Expand All @@ -21,7 +21,7 @@ resource "helm_release" "istiod" {
namespace = "istio-system"
create_namespace = true

version = "1.18.2"
version = "1.20.1"

depends_on = [
aws_eks_cluster.eks_cluster,
Expand All @@ -38,7 +38,7 @@ resource "helm_release" "istio_ingress" {
namespace = "istio-system"
create_namespace = true

version = "1.18.2"
version = "1.20.1"

set {
name = "service.type"
Expand Down
2 changes: 1 addition & 1 deletion helm_prometheus.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ resource "helm_release" "prometheus" {
namespace = "prometheus"
create_namespace = true

version = "48.3.1"
version = "56.9.0"

values = [
"${file("./prometheus/values.yml")}"
Expand Down
Loading

0 comments on commit 0f4f7c7

Please sign in to comment.