We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
podman login <registry> skaffold build skaffold is able to build and push images (podmans docker compatibility is enabled, so builds work fine)
podman login <registry>
skaffold build
skaffold fails on missing registry credentials, as it can't find $XDG_RUNTIME_DIR/containers/auth.json
$XDG_RUNTIME_DIR/containers/auth.json
apiVersion: skaffold/v4beta4 kind: Config metadata: name: podman test build: tagPolicy: gitCommit: variant: CommitSha ignoreChanges: true artifacts: - image: <private registry> context: . docker: dockerfile: ./container_images/Containerfile buildArgs: GIT_HASH: "{{.GIT.COMMIT}}"
The text was updated successfully, but these errors were encountered:
so I have resolved it by symlinking podmans auth.json to config.json ln -s $XDG_RUNTIME_DIR/containers/auth.json ~/.docker/config.json
ln -s $XDG_RUNTIME_DIR/containers/auth.json ~/.docker/config.json
It would still be nice to support that directly in skaffold, eg. look at that path for creds?
Sorry, something went wrong.
No branches or pull requests
Expected behavior
podman login <registry>
skaffold build
skaffold is able to build and push images
(podmans docker compatibility is enabled, so builds work fine)
Actual behavior
skaffold fails on missing registry credentials, as it can't find
$XDG_RUNTIME_DIR/containers/auth.json
Information
The text was updated successfully, but these errors were encountered: