Skip to content

Commit

Permalink
feat: get images on main
Browse files Browse the repository at this point in the history
canonical/bundle-kubeflow#679

Summary of changes:
- Added script that produces list of container images managed by charms in this repository and/or by corresponding workloads. Image list is a combination of static and dynamic lists.
  • Loading branch information
Ivan Chvets committed Aug 28, 2023
1 parent 4c1ce39 commit 04bd95a
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tools/get-images-1.7-stable.sh → tools/get-images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,10 @@
#
# static list
STATIC_IMAGE_LIST=(
docker.io/istio/pilot:1.16.2
docker.io/istio/pilot:1.17.3
)
# dynamic list
git checkout origin/track/1.16
IMAGE_LIST=()
IMAGE_LIST+=($(grep image charms/istio-gateway/src/manifest.yaml | awk '{print $2}' | sort --unique))


printf "%s\n" "${STATIC_IMAGE_LIST[@]}"
printf "%s\n" "${IMAGE_LIST[@]}"

0 comments on commit 04bd95a

Please sign in to comment.