Fix bug 2115 to pin MetalLB version in OSM install script 30/12330/1
authoraguilard <e.dah.tid@telefonica.com>
Wed, 13 Jul 2022 09:26:59 +0000 (11:26 +0200)
committeraguilard <e.dah.tid@telefonica.com>
Wed, 13 Jul 2022 09:26:59 +0000 (11:26 +0200)
Change-Id: Ie204ec54165fb129605f1e56b364044bb6cfac2f
Signed-off-by: aguilard <e.dah.tid@telefonica.com>
installers/full_install_osm.sh

index 54d77be..22cba8d 100755 (executable)
@@ -872,6 +872,7 @@ data:
 
 #installs metallb from helm
 function install_helm_metallb() {
+    METALLB_VERSION="0.11.0"
     METALLB_IP_RANGE=$DEFAULT_IP/32
     echo "configInline:
   address-pools:
@@ -881,7 +882,7 @@ function install_helm_metallb() {
      - $METALLB_IP_RANGE" | sudo tee -a $OSM_DOCKER_WORK_DIR/metallb-config.yaml
     helm repo add metallb https://metallb.github.io/metallb
     helm repo update
-    helm install --create-namespace --namespace metallb-system metallb metallb/metallb -f $OSM_DOCKER_WORK_DIR/metallb-config.yaml
+    helm install --create-namespace --namespace metallb-system metallb metallb/metallb --version ${METALLB_VERSION} -f $OSM_DOCKER_WORK_DIR/metallb-config.yaml
 }
 
 #checks openebs and metallb readiness