Both docker and containerd provide golang clients and provide some interfaces, such as list images, export images or tag images. How can this be done in cri-o?
eg:
github.com/containerd/containerd
and
github.com/docker/docker/client
How to export image in CRI-O?
2.8k Views Asked by mjammer At
1
There are 1 best solutions below
Related Questions in OPENSHIFT
- OpenShift Pyramid logging to file
- com.mongodb.MongoException: not authorized for insert on myworld.Users
- Openshift context path
- error while establishing connection with node.js server OpenShift
- Cannot port forward for app
- OpenShift - Tomcat 7 (JBoss EWS 2.0) + PostgreSQL 9.2 + Hibernate 4.3.5
- running node.js sails app on openshift
- Can't get Pandas to install with OpenShift
- Cartridge Python2.7 on OPenshift
- OpenShift Requirements.txt Pip error
- OpenShift PHP Image Asset Giving 500 Error
- Codeigniter on OpenShift is redirecting to 404 error page
- Why mongodb is reset after push to openshift
- Openshift - trigger Jenkins build on git push
- Openshift redirect to https using flask-base example
Related Questions in OPENSHIFT-CLIENT-TOOLS
- OpenShift rhc app create (Errno::EMSGSIZE)
- Openshift - ssh to a specific gear
- Error installing rhc: net-scp requires net-ssh (>= 2.6.5, runtime)
- Is it possible to use OpenShift without using rhc?
- eclipse/Git in openshift v3
- Pip install failed in openshift 3
- rhc snapshot not saving all the data
- Cannot git-clone an OpenShift application
- Install Nginx ingress on Openshift cluster
- How to `docker login` to OpenShift Docker registry
- Create Openshift app using branch from existing repository (with `rhc create`)
- Openshift tail asks me to relogin
- openshift "www" directory?
- Openshift DIY Dropwizard with HTTPS
- Openshift rhc setup "The OpenShift server is not responding correctly."
Related Questions in CRI-O
- Container checkpointing on Minikube with CRIO
- How do I pull a private docker image into crio?
- can i install kubernetes on amazon linux 2
- Problem getting pods stats from kubelet and cri-o
- How to allow only one user to be able to access only one pod within an openshift project?
- CRIO runtime spec for OCI v1alpha1 compliance
- How to export image in CRI-O?
- Kubernetes with CRI-O and docker private registry: pods running only on master node
- what version of software I need to deploy to get kubernetes 1.19.7
- Is it possible to run wine in containerd/ kubernetes CRI-O?
- Create kubectl secrets when pulling from private registry using crio
- How to install podman on top of docker (for build purposes)?
- Failed to create pod sandbox: rpc error: code = Unknown desc = seccomp is not enabled in your kernel, cannot run with a profile
- How to load a local Docker image in Minikube running on CRI-O?
- coredns can't start when using crio and with selinux on
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
it seemed logical to me that such an option would be present for such a simple need, searched around and it seems it's a wanted feature but not fulfilled as it seems by these issues 1 2 3. there is some sense to this since crictl was destined to be a debugging to cri-o and not a container management tool.
from personal use, if you prefer switching from docker, podman could be an option for such operations, it's a daemon-less alternative to docker and cri-o, and employs other opensource tools to achieve its goals:
buildah - handles building and manipulating container images
skopeo - registry specific tasks relating to container images handling (probably the first candidate for your use case even by itself)
If you want to stick to the popular CLI commands podman is your guy, if you want to go as minimalist as possible, using skopeo directly could be an option
hope this helps you in your decision-making process ;)