I want to test an ubuntu desktop image from docker hub. The problem is the image runs as the 'root' user which is not permitted by the cluster administrator. How to resolve this problem? Thank you.
Related Questions in OPENSHIFT
- Openshift nginx proxy_pass not redirecting from current host to another
- Choosing OpenShift Over DIY Kubernetes on Bare Metal: Benefits and Storage Management
- Tekton, npm ci, and "npm ERR! EMFILE: too many open files, open '/root/.npm/_cacache/"
- How to setup security on elasticsearch based on redhat image in openshift
- Why does openshift ingress not allow router annotations?
- How to use Prometheus to gather custom metrics from multiple pods in Openshift
- UML representation of containerized services
- Verify encryption of rest secrets [etcd] in Openshift v4
- The [dot_product] similarity can only be used with unit-length vectors error when running container as non root
- Using OpenShift template to conditionally include/exclude certain resources during apply
- Permission denied When deploy Splash in OpenShift
- Pulumi and Golang to apply a subscription manifest onto a OpenShift Cluster
- Can't login on deployed APS app, problem with authenticating
- How do I configure multi-tenant Kafka-backed Knative channels in an Openshift?
- Linux (RHEL): How can I trigger that a process tries to reorganize its memory at a specific memory limit?
Related Questions in DOCKERHUB
- Pulling dockerhub image in github action failing
- what is namespace in docker hub api reference?
- tagging an image with two tags in docker hub and openshift
- PyCharm Docker Remote Interpreter: Choosing an image from a private repository
- Getting rate limited when trying to create K3D cluster with local registry (registry image pulls from Dockerhub)
- Login command in docker when using gmail account
- pipeline ci/cd for pushing a docker image to docker hub
- Dockerhub login works but docker login does not
- Local Host Did Not Send Any Data
- Resume Docker push if interrupted?
- The official docker image postgres is not running under debian buster
- How do I handle Docker Hub build caching with a buildx hook
- AWS CodeBuild Provisioning failing
- How can I pull a private Docker Hub image using Apptainer during a Docker Hub Build step?
- Docker hub image upload corruption via git action
Related Questions in OPENSHIFT-ONLINE
- How to use node package dotenv to access local development environment variables in Red Hat OpenShift application?
- Install Docker inside Jenkins 2.17
- Run Shiny applications on OpenShift Online using custom images
- Deploying a Windows virtual machine on OpenShift Online (Starter Plan)
- How to view previous wildfly server.log in openshift environment
- Creating Cron job in OpenShift online results in: admission webhook "validate.cron.create" denied the request: Prohibited resource for this cluster
- OpenShift "cannot setup source secret"
- Writing to files in a OpenShift Online based app
- Why is Openshift Online Starter refusing to activate a pod for over two weeks?
- Openshift (oc) login to registry keeps on failing - how to start the Docker daemon?
- How to run openshift online in Command promt Mac
- Error duiring configuring cicd to github for jenkins pipeline in minishift?
- Can't annotate secret for OpenShift private git repo deployment
- Openshift online error - "Zero nodes available"
- Unable to connect to openshift using Intellij Idea
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?
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)
At first glance it would seem that this is not possible. See this blog from Red Hat. https://blog.openshift.com/deploying-images-from-dockerhub/
There is says as follows:
However, in another blog post from Red Hat I found that OpenShift will try and pull the image from the Docker Hub automatically (if it meets certain requirements?).
https://blog.openshift.com/getting-any-docker-image-running-in-your-own-openshift-cluster/
I your case it would seem that OpenShift does not want to deploy the image from Docker Hub.
Another image I tried from the Docker Hub did work in this way:
It would seem that you will have to create your own docker image and try to deploy that on Openshift Online.