From f6402bfbe26da13a5b16164831e0cc09282b21b4 Mon Sep 17 00:00:00 2001 From: Maxime Guillet Date: Fri, 3 Apr 2026 16:19:45 +0200 Subject: [PATCH] fix: fix networking VPC lattice workshop --- manifests/base-application/checkout/configMap.yaml | 2 +- .../modules/networking/vpc-lattice/abtesting/deploymentv2.yaml | 2 +- manifests/modules/networking/vpc-lattice/ui/configmap.yaml | 2 +- website/docs/networking/vpc-lattice/setup.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/manifests/base-application/checkout/configMap.yaml b/manifests/base-application/checkout/configMap.yaml index 9f94deb32..e3614d790 100644 --- a/manifests/base-application/checkout/configMap.yaml +++ b/manifests/base-application/checkout/configMap.yaml @@ -4,5 +4,5 @@ metadata: name: checkout data: RETAIL_CHECKOUT_PERSISTENCE_PROVIDER: redis - RETAIL_CHECKOUT_PERSISTENCE_REDIS_URL: redis://checkout-redis:6379 + RETAIL_CHECKOUT_PERSISTENCE_REDIS_URL: redis://checkout-redis.checkout:6379 RETAIL_CHECKOUT_ENDPOINTS_ORDERS: http://orders.orders.svc:80 diff --git a/manifests/modules/networking/vpc-lattice/abtesting/deploymentv2.yaml b/manifests/modules/networking/vpc-lattice/abtesting/deploymentv2.yaml index a3a3f43d8..ebf28842c 100644 --- a/manifests/modules/networking/vpc-lattice/abtesting/deploymentv2.yaml +++ b/manifests/modules/networking/vpc-lattice/abtesting/deploymentv2.yaml @@ -8,5 +8,5 @@ spec: containers: - name: checkout env: - - name: SHIPPING_NAME_PREFIX + - name: RETAIL_CHECKOUT_SHIPPING_NAME_PREFIX value: "Lattice " diff --git a/manifests/modules/networking/vpc-lattice/ui/configmap.yaml b/manifests/modules/networking/vpc-lattice/ui/configmap.yaml index ec6ce5750..0779ee5aa 100644 --- a/manifests/modules/networking/vpc-lattice/ui/configmap.yaml +++ b/manifests/modules/networking/vpc-lattice/ui/configmap.yaml @@ -4,4 +4,4 @@ metadata: name: ui namespace: ui data: - ENDPOINTS_CHECKOUT: "${CHECKOUT_ROUTE_DNS}" + RETAIL_UI_ENDPOINTS_CHECKOUT: "${CHECKOUT_ROUTE_DNS}" diff --git a/website/docs/networking/vpc-lattice/setup.md b/website/docs/networking/vpc-lattice/setup.md index 283265c6b..e01ad41da 100644 --- a/website/docs/networking/vpc-lattice/setup.md +++ b/website/docs/networking/vpc-lattice/setup.md @@ -34,7 +34,7 @@ $ aws ec2 authorize-security-group-ingress --group-id $CLUSTER_SG --ip-permissio This step will install the Kubernetes Gateway API CRDs as well as the VPC Lattice controller that provide an implementation of that API: ```bash wait=30 -$ kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.2.0/standard-install.yaml +$ kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.2.0/experimental-install.yaml $ aws ecr-public get-login-password --region us-east-1 \ | helm registry login --username AWS --password-stdin public.ecr.aws $ helm install gateway-api-controller \