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
Skaffold fails to find the image because a relative path is used bu bazel is run with build --symlink_prefix=/ which does not create the symlinks.
failed: reading image "bazel-out/darwin_arm64-fastbuild/bin/some_image.tar": open bazel-out/darwin_arm64-fastbuild/bin/some_image.tar: no such file or directory
Information
Skaffold version: v1.38.0
Operating system: MacOS 12.3.1
Installed via: Homebrew
Steps to reproduce the behavior
Skaffold project with bazel image build
Add build --symlink_prefix=/ to .bazelrc
Run skaffold
The text was updated successfully, but these errors were encountered:
Expected behavior
Skaffold uses the absolute path to the image tar
Actual behavior
Skaffold fails to find the image because a relative path is used bu bazel is run with
build --symlink_prefix=/
which does not create the symlinks.Information
Steps to reproduce the behavior
build --symlink_prefix=/
to.bazelrc
The text was updated successfully, but these errors were encountered: