Questions tagged [rancher-desktop]

69 questions
1
vote
2 answers

kubeflow deployment issue on macos m1 using rancher desktop

I am trying to install kubeflow from branch master from manifests, using the command while ! kustomize build example | awk '!/well-defined/' | kubectl apply -f -; do echo "Retrying to apply resources"; sleep 10; done I am using kubernetes 1.24 from…
yoshcn
  • 37
  • 3
1
vote
3 answers

RancherDesktop on MacOs not working with JUnit Testcontainers

I'm trying to run a JUnit test using Testcontainers on my MacOs running Rancher Desktop. The docker CLI works fine as I can run any container using docker run. The source code of the JUnit test looks as follows (simplified and…
Kaputnik120
  • 120
  • 10
1
vote
1 answer

Kubernetes/Rancher Desktop "certificate signed by unknown authority" macOS

After installing Rancher Desktop on macOS 13.2.1 (Apple M1) I walk through the Hello World documentation. During the "Deploy to Kubernetes" part I run into this problem: $ kubectl run hello-world --image=nginx-helloworld:latest…
wintermeyer
  • 8,178
  • 8
  • 39
  • 85
1
vote
0 answers

Rancher Desktop not noticing file chages, Docker does

A simple docker repo created to demonstrate HMR of a Sveltekit + Vite app within a docker image / container, works out of the box with native Docker, does not with Rancher Desktop. It seems the external browser connects fine to the container (+ HMR…
digout
  • 4,041
  • 1
  • 31
  • 38
1
vote
1 answer

How to mount local folder to the Kubernetes cluster created by Rancher Desktop?

When I use k3d create a Kubernetes cluster, I can mount local folder /Users/me/data to the cluster /data using volume k3d cluster create west --config=k3d-config.yaml k3d-config.yaml apiVersion: k3d.io/v1alpha3 kind: Simple kubeAPI: host:…
Hongbo Miao
  • 45,290
  • 60
  • 174
  • 267
1
vote
0 answers

Unable to reach localhost from Chrome, after having installed Rancher desktop on Windows 10

After having installed Rancher desktop on my Windows 10 laptop, I cannot reach services listening on localhost through Chrome. Rancher desktop is configured to support Moby/dockerd. The error reported by Chrome is: This site can’t be reached The…
Starnuto di topo
  • 3,215
  • 5
  • 32
  • 66
1
vote
1 answer

Rancher docker macos exec permission denied

I installed docker via rancher desktop on MacOS and I have been using docker for several months. Now something happened automagical (not possible) and I am not able to start some of containers eg kafka, via docker-compose. I have docker-compose.yml…
ITCR
  • 11
  • 3
1
vote
1 answer

Lame referral error on go mod download during docker build in RancherDesktop cluster

I encounter an error during my docker build on the "RUN go mod download" line that is downloading Golang dependencies. It usually fails with numerous lame referral errors like the following: Error: ... => CACHED [builder 4/7] COPY go.sum go.mod…
Jay Bouck
  • 21
  • 2
1
vote
0 answers

How to configure Rancher desktop to use existing Docker containers?

I've a local Docker Desktop installation with local images for Redis, Elastic Search, MySQL etc. I want to move from Docker Desktop to Rancher Desktop. How can I configure Rancher Desktop to use already existing docker containers, images and…
SJaka
  • 712
  • 13
  • 40
1
vote
0 answers

Rancher Desktop - Windows - from container unable to connect to host machine of desired port

I'm trying to connect to Angular application running in port 3000 from Docker container ( Apache OIDC container ) using host.docker.internal. Log from Apache OIDC Container AH00957: HTTP: attempt to connect to 172.28.32.1:3000…
anavaras lamurep
  • 1,303
  • 2
  • 17
  • 33
1
vote
0 answers

"Remote kubernetes server unreachable" error in WSL/Ubuntu but not Command Prompt?

So right now I am using Rancher Desktop to run Kubernetes and I keep getting an error in WSL saying "Remote kubernetes server unreachable". The kubectl commands also take a long time to respond. However when I tried to run the same commands in…
1
vote
1 answer

Rancher Desktop dockerd alternative for host.docker.internal

I am using Rancher Desktop with dockerd(moby) When I use docker desktop, I can connect to the host machine from the container using host.docker.internal But while using Rancher Desktop, host.docker.internal is not pointing to the localhost(I'm…
1
vote
1 answer

ADD failed: file not found in build context or excluded by .dockerignore:

This is my Dockerfile: FROM openjdk:8 EXPOSE 8080 ADD target/springboot-example.jar springboot-example.jar ENTRYPOINT ["java","-jar","/springboot-example.jar"] While running docker build, I see this error: Step 3/4 : ADD…
1
vote
1 answer

How to run CosmosDB emulator for Linux in a local kubernetes cluster

I would like to run a CosmosDB emulator linux docker image on a local kubernetes cluster. It does start: "evaluation period XX days and partition 1 of X started till N of N" is shown in the logging, but when connecting to port 8081 from outside…
Cageman
  • 11
  • 2
1
vote
1 answer

Using rancher Desktop: How to access a Kubernetes Service(node port) running in a container from the local laptop

I am running Rancher Desktop on my ubuntu laptop. I have a container running mongodb in a kubernetes container: $ kubectl get all NAME READY STATUS RESTARTS …