Skip to content

Commit 185e159

Browse files
committed
chore: Broken envoy gateway links have been corrected.
Signed-off-by: kahirokunn <okinakahiro@gmail.com>
1 parent 1e42612 commit 185e159

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/walkthrough.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ You should install the `xkcd` helm chart with `--set httproute=true` as [explain
8484

8585
The helm chart is publically available and hosted by DockerHub
8686
```console
87-
helm install eg oci://docker.io/envoyproxy/gateway-helm --version v1.0.1 -n envoy-gateway-system --create-namespace
87+
helm install eg oci://docker.io/envoyproxy/gateway-helm --version v1.0.2 -n envoy-gateway-system --create-namespace
8888
```
8989
Before creating new `Gateway`, wait for Envoy Gateway to become available
9090
```console

tests/utils/setup_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ func TestSetupEnvoyGateway(t *testing.T) {
180180
_, err := ExecuteCommand("helm version")
181181
require.NoErrorf(t, err, "helm is not installed - %s", err)
182182

183-
_, err = ExecuteCommand(fmt.Sprintf("helm install %s oci://docker.io/envoyproxy/gateway-helm --version v1.0.1 -n %s --create-namespace", EnvoyReleaseName, EnvoyNamespace))
183+
_, err = ExecuteCommand(fmt.Sprintf("helm install %s oci://docker.io/envoyproxy/gateway-helm --version v1.0.2 -n %s --create-namespace", EnvoyReleaseName, EnvoyNamespace))
184184
require.NoErrorf(t, err, "cannot install envoy gateway - %s", err)
185185

186186
assert.True(t, WaitForDeploymentReplicaReadyCount(t, KubeClient, "envoy-gateway", "envoy-gateway-system", 1, 30, 6))

0 commit comments

Comments
 (0)