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
=> CACHED [stage-1 2/3] COPY --from=builder /workspace/model-registry . 0.0s
WARNING: No output specified with docker-container driver. Build result will only remain in the build cache. To push result image into registry use --push or to load image into docker use --load
+ [[ -n 1 ]]
+ CLUSTER_NAME=kind
+ echo 'Creating local Kind cluster and loading image'
Creating local Kind cluster and loading image
++ kind get clusters
+ [[ kind =~ kind ]]
+ echo 'Cluster already exists, skipping creation'
Cluster already exists, skipping creation
+ kubectl config use-context kind-kind
Switched to context "kind-kind".
+ kind load docker-image -n kind kubeflow/model-registry:latest
ERROR: image: "kubeflow/model-registry:latest" not present locally
When using Podman (desktop) and testing locally the MR Python client
seems to me in order for the locally built image to be
docker build . -f Dockerfile -t kubeflow/model-registry:latest --load
with the
--load
argument, otheriwise:My suggestion is to have argument passing here:
model-registry/clients/python/Makefile
Line 18 in 7bbc881
and for the make image command to accept additional parameters, in this case
--load
.The text was updated successfully, but these errors were encountered: