Skip to content

Commit

Permalink
feat: get images on main (#106)
Browse files Browse the repository at this point in the history
For more details refer to: canonical/bundle-kubeflow#679

Summary of changes:
- Added script that produces list of container images managed by charm in this repository. Image list is a dynamic list.

NOTE: Script replaced outdated get-images-1.7-stable.sh script.
  • Loading branch information
i-chvets authored Aug 31, 2023
1 parent 527ef61 commit 5ee3773
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions tools/get-images-1.7-stable.sh → tools/get-images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,8 @@
#
# This script returns list of container images that are managed by this charm and/or its workload
#
# static list
STATIC_IMAGE_LIST=(
)
# dynamic list
git checkout origin/track/ckf-1.7
IMAGE_LIST=()
IMAGE_LIST+=($(find -type f -name metadata.yaml -exec yq '.resources | to_entries | .[] | .value | ."upstream-source"' {} \;))

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

0 comments on commit 5ee3773

Please sign in to comment.