Skip to content

Commit

Permalink
update istio to 1.18.2
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Aug 22, 2023
1 parent f0d84cd commit 8df4e5c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions examples/full-cluster-tf-upgrade/1.25/common-services/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -328,12 +328,12 @@ resource "helm_release" "istio-operator" {
set {
name = "hub"
# value = format("%v/%v", local.account_ecr, "istio")
value = format("%v/eks/%v/%v", local.image_output["istio-operator"].dest_registry, var.cluster_name, "istio")
value = format("%v/eks/%v/%v", local.image_output["istio/operator"].dest_registry, var.cluster_name, "istio")
}
set {
name = "tag"
# value = var.istio_tag
value = local.image_output["istio-operator"].tag
value = local.image_output["istio/operator"].tag
}
set {
name = "operatorNamespace"
Expand Down Expand Up @@ -366,7 +366,7 @@ resource "helm_release" "istio-profile" {
set {
name = "hub"
# value = format("%v/%v", local.account_ecr, "istio")
value = format("%v/eks/%v/%v", local.image_output["istio-operator"].dest_registry, var.cluster_name, "istio")
value = format("%v/eks/%v/%v", local.image_output["istio/operator"].dest_registry, var.cluster_name, "istio")
}
set {
name = "tag"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,33 +81,33 @@ image_details = {
enabled = true
}
"istio-operator" = {
name = "istio-operator"
name = "istio/operator"
image = "docker.io/istio/operator"
dest_path = null
source_registry = "docker.io"
source_image = "istio/operator"
source_tag = null
tag = "1.16.1"
tag = "1.18.2"
enabled = true
}
"istio-pilot" = {
name = "istio-pilot"
name = "istio/pilot"
image = "docker.io/istio/pilot"
dest_path = null
source_registry = "docker.io"
source_image = "istio/pilot"
source_tag = null
tag = "1.16.1"
tag = "1.18.2"
enabled = true
}
"istio-proxyv2" = {
name = "istio-proxyv2"
name = "istio/proxyv2"
image = "docker.io/istio/proxyv2"
dest_path = null
source_registry = "docker.io"
source_image = "istio/proxyv2"
source_tag = null
tag = "1.16.1"
tag = "1.18.2"
enabled = true
}
"prometheus-operator" = {
Expand Down

0 comments on commit 8df4e5c

Please sign in to comment.