Questions tagged [minikube]

Minikube is a tool that makes it easy to run Kubernetes locally. Minikube runs a single-node Kubernetes cluster inside a VM on your laptop for users looking to try out Kubernetes or develop with it day-to-day.

Minikube is a tool that makes it easy to run Kubernetes locally. Minikube runs a single-node Kubernetes cluster inside a Virtual Machine (VM) on your computer. It is useful for trying out Kubernetes, and for day-to-day development.

Minikube supports Kubernetes features such as:

  • DNS
  • NodePorts
  • ConfigMaps and Secrets
  • Dashboards
  • Container Runtime: Docker, rkt and CRI-O
  • Enabling CNI (Container Network Interface)
  • Ingress

Find more information at https://github.com/kubernetes/minikube

Ask questions in #minikube at https://kubernetes.slack.com/messages/minikube/

Getting started http://kubernetes.io/docs/getting-started-guides/minikube/

2619 questions
0
votes
1 answer

Can not access application in kubernents with service node port

I tried to send request 192.168.49.2:31083, but it did not work. I'm using Kubernetes with Docker. kubectl expose deployment k8s-web-hello --port=3000 --type=NodePort kubectl get service NAME TYPE CLUSTER-IP EXTERNAL-IP …
0
votes
0 answers

Why is my site not reachable from browser after setting up Ingress Nginx on Minikube?

I'm new at k8s and I'm trying to set up ingress nginx for kubernates deployments and services so that I can access the server from browser. Im using kubuntu os. Here are the steps I'm following to achive this . Files auth-depl.yaml apiVersion:…
0
votes
0 answers

Error during etcd cluster initialization due to DNS issues using Minikube

I'm studing k8s operator by practicing the project :https://github.com/kubernetes-operators-book/chapters.git,after runing the following step: cwd: chapter/03 k create -f etcd-operator-crd.yaml k create -f etcd-operator-sa.yaml k create -f…
JohnSmith
  • 1
  • 2
0
votes
0 answers

Installing helm Redash on Minikube return Error(redash-scheduler container redis connection error)

I tried to set up Redash on a local environment using Minikube and Helm, but encountered an Two errors. The Minikube cluster is configured with 4 CPUs and 8GB of memory. The Helm Redash URL used is…
0
votes
0 answers

spring boot/postgres password authentication failed for user "root"

I am writing an app using spring boot, postgres and minikube. But when I apply app and db files I got an error: Error by db: FATAL: password authentication failed for user "root" DETAIL: Role "root" does not exist. Connection matched pg_hba.conf…
0
votes
0 answers

Mockserver is crushing when running on minikube docker M1

I am running minikube on my M1 machine i.e. arm64 arch The minikunbe start command is: minikube start -p foobar --kubernetes-version=v1.23.16 --container-runtime=docker --vm=true --network socker_vmnet --cpus 4 --memory 10g When pulling mockserver…
froy001
  • 614
  • 7
  • 21
0
votes
0 answers

Running Minikube on Windows with HyperV enabled with WSL2

I am trying to install Minikube on my Windows laptop where I have a WSL2 running. As I have Hyper-V activated (since I need it for the WSL2 to function), Minikube is having issues in starting the VM. I am getting the following Error on minikube…
0
votes
1 answer

Connecting frontend with backend in minikube

I've got two docker images, one for my frontend which is react and the other flask backend. I tried to deploy both on minikube as a part of my learning path but the frontend does not get any data from my backend. My cluster contains 4 components:…
0
votes
0 answers

connection refused between two pods in minikube cluster macbook

I deployed a MERN stack app on a minikube cluster all the pod are running fine but I tried to access the backend from the fronted app and I am getting error refused connection What could cause this? nodejs-deployment.yml This is the deployment that…
etranz
  • 891
  • 2
  • 10
  • 29
0
votes
1 answer

This site can’t be reached in kubernetes minikube macbook

I applied my react kubernetes manifest file on minikube with the service I am trying to access it on the browser but I am getting error This site can’t be reached deployment.yml apiVersion: apps/v1 kind: Deployment metadata: name: frontend …
etranz
  • 891
  • 2
  • 10
  • 29
0
votes
0 answers

getting 404 error in ocleot ApiGateway in k8s cluster

I am deploying a microservices project in Minikube I am getting this error 404 not found when trying to hit any of my services API when I get the logs from Ocelot I get this message Ocelot.Responder.Middleware.ResponderMiddleware[0] requestId:…
0
votes
0 answers

How do I solve acme: authorization 403 error when setting up Ingress on Minikube

I have an API that is running in Minikube and I have set it up to be exposed on an https domain. After setting up the Ingress object and associated Cert-Manager/LetsEncrypt configs the certificate is appearing as not ready : kubectl get…
Golide
  • 835
  • 3
  • 13
  • 36
0
votes
2 answers

What does Minikube status "control plane" meaning

I am trying to learn Kubernetes from this YouTube course. One hands-on thing I am trying is to install Minikube, Docker Desktop and kubectl to see the pods and containers working in real time. I started Minikube - specifying Docker as my VM of…
Probosckie
  • 1,585
  • 4
  • 25
  • 40
0
votes
1 answer

How to edit /etc/kubernetes/manifests/kube-apiserver.yaml (using minikube)

I want to add those flags : --insecure-port=8080 and insecure-bind-address=0.0.0.0 so I need to edit this file :/etc/kubernetes/manifests/kube-apiserver.yaml. However, I've done some research and I've found out that I should run this command:…
NutellaTN
  • 9
  • 3
0
votes
0 answers

kubectl deployment failing: Cni failed to setup pod

I'm new to Kubernetes. I was going through my company's training on kubernetes basics. The training was given on mac, but I use a windows pc. Here are the steps I've done so far: Install docker desktop Install kubectl install minikube for…
1 2 3
99
100