diff options
author | Bartek Grzybowski <b.grzybowski@partner.samsung.com> | 2021-06-21 13:32:20 +0200 |
---|---|---|
committer | Bartek Grzybowski <b.grzybowski@partner.samsung.com> | 2021-06-29 10:44:39 +0200 |
commit | 911d4a97bcdec63d99586446d1bae6ef6f59a73b (patch) | |
tree | 3aa288dbe0a77310ddc142ed814fedb4c4db5dfd | |
parent | 5a96b569a1d7055565f0b0a7a9b043fe01c3a4f2 (diff) |
[BUILD] Add Kube Prometheus Stack docker image list to default image list
Change-Id: I121c1df6d71640554cefea43141d5c3399c4b9df
Issue-ID: INT-1926
Signed-off-by: Bartek Grzybowski <b.grzybowski@partner.samsung.com>
-rwxr-xr-x | build/build_nexus_blob.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build/build_nexus_blob.sh b/build/build_nexus_blob.sh index 9c4b5e69..ddc3145b 100755 --- a/build/build_nexus_blob.sh +++ b/build/build_nexus_blob.sh @@ -267,6 +267,7 @@ NXS_INFRA_LIST="${LISTS_DIR}/infra_docker_images.list" NXS_DOCKER_IMG_LIST="${LISTS_DIR}/onap_docker_images.list" NXS_RKE_DOCKER_IMG_LIST="${LISTS_DIR}/rke_docker_images.list" NXS_K8S_DOCKER_IMG_LIST="${LISTS_DIR}/k8s_docker_images.list" +NXS_PROMETHEUS_DOCKER_IMG_LIST="${LISTS_DIR}/kube_prometheus_stack_docker_images.list" # Setup Nexus image used for build and install infra NEXUS_IMAGE="$(grep sonatype/nexus3 ${NXS_INFRA_LIST})" @@ -274,7 +275,7 @@ NEXUS_IMAGE_TAR="${DATA_DIR}/offline_data/docker_images_infra/$(sed 's/\//\_/ ; # Set default lists if nothing specific defined by user if [ ${#NXS_DOCKER_IMG_LISTS[@]} -eq 0 ]; then - NXS_DOCKER_IMG_LISTS=("${NXS_DOCKER_IMG_LIST}" "${NXS_RKE_DOCKER_IMG_LIST}" "${NXS_K8S_DOCKER_IMG_LIST}") + NXS_DOCKER_IMG_LISTS=("${NXS_DOCKER_IMG_LIST}" "${NXS_RKE_DOCKER_IMG_LIST}" "${NXS_K8S_DOCKER_IMG_LIST}" "${NXS_PROMETHEUS_DOCKER_IMG_LIST}") fi # Create Docker client config dir |