Skip to content

Commit

Permalink
feat: get images on main (#319)
Browse files Browse the repository at this point in the history
Refer to this issue for more details: 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.

NOTE: Static list in this script assumes pilot version 1.17.3 which is part of Charmed Kubeflow 1.8 release.
NOTE: Script replaced outdated get-images-1.7-stable.sh script.
  • Loading branch information
i-chvets authored Aug 31, 2023
1 parent 4c1ce39 commit 9f310bf
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 9f310bf

Please sign in to comment.