diff --git a/manifests/base-application/checkout/configMap.yaml b/manifests/base-application/checkout/configMap.yaml index 9f94deb328..e3614d7904 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 a3a3f43d8f..ebf28842c8 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 ec6ce57502..0779ee5aae 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 283265c6bc..e01ad41dae 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 \