You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is this Feature/Enhancement related to an Existing Problem? If so, please describe:
This feature is not related to any existing problem.
Describe Proposed Solution(s):
While adding Helm chart to the Hauler, expose a flag such as hauler store add chart [flags] --add-images in which it unpacks and templates base helm chart and add images to image store.
Describe Possible Alternatives:
Manually do it?
Currently if Hauler users want to save images associated to helm charts they have two first save the helm chart, then download the helm chart separately and try to pull images from the tgz.
# example getting helm chart and images
hauler store add chart hauler-helm --repo oci://ghcr.io/hauler-dev
helm pull oci://ghcr.io/hauler-dev/hauler-helm
helm template hauler hauler-helm-1.1.1.tgz| grep image: | sed -e 's/[ ]*image:[ ]*//' -e 's/"//g'| sort -u
> hauler/hauler-debug:1.1.1
> hauler/hauler:1.1.1
> rancher/kubectl:v1.31.3
Is this Feature/Enhancement related to an Existing Problem? If so, please describe:
Describe Proposed Solution(s):
hauler store add chart [flags] --add-images
in which it unpacks and templates base helm chart and add images to image store.Describe Possible Alternatives:
Manually do it?
Currently if Hauler users want to save images associated to helm charts they have two first save the helm chart, then download the helm chart separately and try to pull images from the tgz.
Reference: https://stackoverflow.com/questions/60892265/extract-docker-images-from-helm-chart
The text was updated successfully, but these errors were encountered: