diff --git a/docs/walkthrough.md b/docs/walkthrough.md index 52969687..0fd511a4 100644 --- a/docs/walkthrough.md +++ b/docs/walkthrough.md @@ -84,7 +84,7 @@ You should install the `xkcd` helm chart with `--set httproute=true` as [explain The helm chart is publically available and hosted by DockerHub ```console -helm install eg oci://docker.io/envoyproxy/gateway-helm --version v1.0.1 -n envoy-gateway-system --create-namespace +helm install eg oci://docker.io/envoyproxy/gateway-helm --version v1.0.2 -n envoy-gateway-system --create-namespace ``` Before creating new `Gateway`, wait for Envoy Gateway to become available ```console diff --git a/tests/utils/setup_test.go b/tests/utils/setup_test.go index 848cb071..1b30db30 100644 --- a/tests/utils/setup_test.go +++ b/tests/utils/setup_test.go @@ -180,7 +180,7 @@ func TestSetupEnvoyGateway(t *testing.T) { _, err := ExecuteCommand("helm version") require.NoErrorf(t, err, "helm is not installed - %s", err) - _, err = ExecuteCommand(fmt.Sprintf("helm install %s oci://docker.io/envoyproxy/gateway-helm --version v1.0.1 -n %s --create-namespace", EnvoyReleaseName, EnvoyNamespace)) + _, err = ExecuteCommand(fmt.Sprintf("helm install %s oci://docker.io/envoyproxy/gateway-helm --version v1.0.2 -n %s --create-namespace", EnvoyReleaseName, EnvoyNamespace)) require.NoErrorf(t, err, "cannot install envoy gateway - %s", err) assert.True(t, WaitForDeploymentReplicaReadyCount(t, KubeClient, "envoy-gateway", "envoy-gateway-system", 1, 30, 6))