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
since the ref/sha/tag change we are getting this error when running the repo bootstrap command:
FATAL failed to build bootstrap manifests: accumulating resources: accumulation err='accumulating resources from 'github.com/argoproj-labs/argocd-autopilot/manifests?tag=v0.2.5': evalsymlink failure on '/auto-pilot518561277/github.com/argoproj-labs/argocd-autopilot/manifests?tag=v0.2.5' : lstat /auto-pilot518561277/github.com: no such file or directory': evalsymlink failure on '/private/var/folders/s7/ydmj1nh917ncbk9y1mhn2dfm0000gn/T/kustomize-480526136/manifests?tag=v0.2.5' : lstat /private/var/folders/s7/ydmj1nh917ncbk9y1mhn2dfm0000gn/T/kustomize-480526136/manifests?tag=v0.2.5: no such file or directory
Currently I am able to get passed it by providing the --app flag with the correct kustomize URL, like so: argocd-autopilot repo bootstrap --app "github.com/argoproj-labs/argocd-autopilot/manifests?ref=v0.2.5"
The text was updated successfully, but these errors were encountered:
damn. The bootstrap manifest URL is being used directly by Kustomize, and not getting parsed by us. So it should remain with ?ref param.
But when running app create dir_app --app github.com/owner/name/path?tag=v0.1.2, we do parse this URL for the type inference bit. And if the type ends up being Kustomize, we later just use it as the Kustomization.yaml source.
What a pain.
noam-codefresh
changed the title
[bug] getting "failed to build bootstrap manifests" since v0.2.5
getting "failed to build bootstrap manifests" since v0.2.5
Jun 17, 2021
since the ref/sha/tag change we are getting this error when running the
repo bootstrap
command:Currently I am able to get passed it by providing the
--app
flag with the correct kustomize URL, like so:argocd-autopilot repo bootstrap --app "github.com/argoproj-labs/argocd-autopilot/manifests?ref=v0.2.5"
The text was updated successfully, but these errors were encountered: