From bfc8d7390915d384e9cdbe9a6e702f0fb00d1021 Mon Sep 17 00:00:00 2001 From: Taras Yatsurak Date: Mon, 29 Nov 2021 14:37:14 +0200 Subject: [PATCH] Local installation documentation fix (#125) --- docs/local-installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/local-installation.md b/docs/local-installation.md index e7dce8f03..2e9d81c55 100644 --- a/docs/local-installation.md +++ b/docs/local-installation.md @@ -59,7 +59,7 @@ You can select and copy all of these commands as one block and paste it into the ```sh # determine load balancer ingress range -cidr_base_addr=$(minikube ip --profile kgw1) +cidr_base_addr=$(minikube ip --profile kgw) ingress_first_addr=$(echo "$cidr_base_addr" | awk -F'.' '{print $1,$2,$3,2}' OFS='.') ingress_last_addr=$(echo "$cidr_base_addr" | awk -F'.' '{print $1,$2,$3,255}' OFS='.') ingress_range=$ingress_first_addr-$ingress_last_addr