X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=env%2Flib%2Fcommon.sh;h=53180d825ee126db2620bdcd8d0da010fa74fd67;hb=refs%2Fchanges%2F41%2F4841%2F1;hp=8af4436717f51158d4ac9905160b2fcb472a0b0b;hpb=58642196b581f02c33ce0d9bf10fc34a3c582cb8;p=icn.git diff --git a/env/lib/common.sh b/env/lib/common.sh index 8af4436..53180d8 100755 --- a/env/lib/common.sh +++ b/env/lib/common.sh @@ -31,7 +31,7 @@ EMCOREPO="${EMCOREPO:-https://gitlab.com/project-emco/core/emco-base.git}" #Path to clone the EMCO repo EMCOPATH="/opt/src/emco-base" #EMCO version to use -EMCO_VERSION="v21.12" +EMCO_VERSION="v22.03" #Discard existing repo directory FORCE_REPO_UPDATE="${FORCE_REPO_UPDATE:-false}" @@ -69,6 +69,13 @@ KUBECTL_VERSION="v1.20.7" #The yq version to use YQ_VERSION="v4.20.1" +#Istio repository URL +ISTIOREPO="${ISTIOREPO:-https://github.com/istio/istio.git}" +#Path to clone the Istio repo +ISTIOPATH="/opt/src/istio" +#Istio version to use +ISTIO_VERSION="1.10.3" + #Addon versions CDI_VERSION="v1.44.1" CPU_MANAGER_VERSION="v1.4.1" @@ -300,6 +307,10 @@ function clone_emco_repository { clone_repository ${EMCOPATH} ${EMCOREPO} ${EMCO_VERSION} } +function clone_istio_repository { + clone_repository ${ISTIOPATH} ${ISTIOREPO} ${ISTIO_VERSION} +} + function fetch_image { if [[ "${BM_IMAGE_URL}" && "${BM_IMAGE}" ]]; then mkdir -p "${IRONIC_DATA_DIR}/html/images"