This repository was archived by the owner on Mar 23, 2026. It is now read-only.
Description Hi, I downloaded the latest release (0.4.0):
$ imgpkg copy --tar service-bindings-bundle-0.4.0.tar --to-repo repo.example.com/imgpkg/bundles/service-bindings --lock-output current-version.yaml
copy | importing 2 images...
32.52 MiB / 32.52 MiB [==================================================================================================================================================] 100.00% 59.24 MiB/s 0s
copy | done uploading images
Succeeded
$ cat current-version.yaml
---
apiVersion: imgpkg.carvel.dev/v1alpha1
bundle:
image: repo.example.com/imgpkg/bundles/service-bindings@sha256:9d79a03eeacfd01269f368f778ef9fcfab6f413cbf1293a43f39dc925bfc790a
tag: latest
kind: BundleLock
I would love if this was tagged to 0.4.0 instead of latest
I think these two lines:
https://github.com/vmware-labs/service-bindings/blob/main/.github/workflows/ci.yaml#L88-L89
Just needs to change to include the current version in the tag, if that's at all possible.
So instead of:
imgpkg push -f "bundle" -b "${BUNDLE}"
imgpkg copy -b "${BUNDLE}" --to-tar bundle/service-bindings-bundle.tar
Have:
imgpkg push -f "bundle" -b "${BUNDLE}:${VERSION}"
imgpkg copy -b "${BUNDLE}:${VERSION}" --to-tar bundle/service-bindings-bundle.tar
Reactions are currently unavailable