From dc8cecd2a769d293bfbfc93e6fde36a2f88d23d9 Mon Sep 17 00:00:00 2001 From: Brandon Palm Date: Tue, 16 Jan 2024 10:09:08 -0600 Subject: [PATCH] Update Istio to v1.20.2 --- .../tests/platform_alteration_service_mesh.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/platformalteration/tests/platform_alteration_service_mesh.go b/tests/platformalteration/tests/platform_alteration_service_mesh.go index a13845335..c0dbd800b 100644 --- a/tests/platformalteration/tests/platform_alteration_service_mesh.go +++ b/tests/platformalteration/tests/platform_alteration_service_mesh.go @@ -32,8 +32,8 @@ var _ = Describe("platform-alteration-service-mesh-usage-installed", Ordered, fu if _, exists := os.LookupEnv("NON_LINUX_ENV"); !exists { By("Install istio") //nolint:goconst - cmd := exec.Command("/bin/bash", "-c", "curl -L https://istio.io/downloadIstio | ISTIO_VERSION=1.20.0 sh - "+ - "&& istio-1.20.0/bin/istioctl install --set profile=demo -y") + cmd := exec.Command("/bin/bash", "-c", "curl -L https://istio.io/downloadIstio | ISTIO_VERSION=1.20.2 sh - "+ + "&& istio-1.20.2/bin/istioctl install --set profile=demo -y") err := cmd.Run() Expect(err).ToNot(HaveOccurred(), "Error installing istio") } @@ -42,8 +42,8 @@ var _ = Describe("platform-alteration-service-mesh-usage-installed", Ordered, fu AfterAll(func() { if _, exists := os.LookupEnv("NON_LINUX_ENV"); !exists { By("Uninstall istio") - cmd := exec.Command("/bin/bash", "-c", "curl -L https://istio.io/downloadIstio | ISTIO_VERSION=1.20.0 sh - "+ - "&& istio-1.20.0/bin/istioctl uninstall -y --purge") + cmd := exec.Command("/bin/bash", "-c", "curl -L https://istio.io/downloadIstio | ISTIO_VERSION=1.20.2 sh - "+ + "&& istio-1.20.2/bin/istioctl uninstall -y --purge") err := cmd.Run() Expect(err).ToNot(HaveOccurred(), "Error uninstalling istio") } @@ -170,8 +170,8 @@ var _ = Describe("platform-alteration-service-mesh-usage-uninstalled", Serial, f if err == nil { By("Uninstall istio") if _, exists := os.LookupEnv("NON_LINUX_ENV"); !exists { - cmd := exec.Command("/bin/bash", "-c", "curl -L https://istio.io/downloadIstio | ISTIO_VERSION=1.20.0 sh - "+ - "&& istio-1.20.0/bin/istioctl uninstall -y --purge") + cmd := exec.Command("/bin/bash", "-c", "curl -L https://istio.io/downloadIstio | ISTIO_VERSION=1.20.2 sh - "+ + "&& istio-1.20.2/bin/istioctl uninstall -y --purge") err := cmd.Run() Expect(err).ToNot(HaveOccurred(), "Error uninstalling istio") }