From 1c3adad6e47085317eed0442e1aeb63bdb8d2016 Mon Sep 17 00:00:00 2001 From: Stephen Kitt Date: Mon, 2 Oct 2023 16:20:19 +0200 Subject: [PATCH] Fix the K8S_VERSION variable case The ovn deployment scripts expect K8S_VERSION, export that. Signed-off-by: Stephen Kitt --- scripts/shared/lib/clusters_kind | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/shared/lib/clusters_kind b/scripts/shared/lib/clusters_kind index 97ae51b14..d58bef9b1 100755 --- a/scripts/shared/lib/clusters_kind +++ b/scripts/shared/lib/clusters_kind @@ -191,7 +191,7 @@ EOF } function deploy_kind_ovn(){ - export K8s_VERSION="${K8S_VERSION}" + export K8S_VERSION export NET_CIDR_IPV4="${cluster_CIDRs[${cluster}]}" export SVC_CIDR_IPV4="${service_CIDRs[${cluster}]}" export KIND_CLUSTER_NAME="${cluster}"