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
0 answers

Helmrelease cannot find Helmsource

When I try to apply Helmrelease Flux cannot find the source but the source actually exists. I use Artifact Registry (GCP) for Helm chart repo. Here is the Flux command I used to create it: flux create source oci regapp-repo…
Gedrimas
  • 13
  • 5
0
votes
0 answers

Conversion from Docker to Kubernetes using Minikube and Kompose

I have converted my Docker-compose.yml file to Kubernetes MiniKube using Kompose. After the conversion, I was no longer able to see my microservices in my Eureka discovery-service. I converted the file using the command, 'Kompose convert' on the…
brohjoe
  • 854
  • 4
  • 17
  • 39
0
votes
2 answers

Configure Mongo with TLS

I'm working on configuring my Mongo 4.2 with TLS using minikube. These are my arguments: --auth --tlsMode requireTLS --tlsCertificateKeyFile /etc/ssl/mongodb-test-ca.crt --tlsCAFile /etc/ssl/test-ca.pem --oplogSize 32 --quiet --replSet myreplicaset…
Carabes
  • 532
  • 2
  • 4
  • 16
0
votes
3 answers

quarkus deploy in new Quarkus 3: how should it work with Kubernetes?

The release notes of Quarkus 3 state This release includes additional features like the quarkus deploy command that enables the deployment of Quarkus applications to platforms like Kubernetes, Knative, and OpenShift without requiring changes to the…
Alexander Rühl
  • 6,769
  • 9
  • 53
  • 96
0
votes
0 answers

How to install minikube in CentOS which is deployed using virtual box

I have created a CentOS vm using virtual box and installed docker, now after installing minikube when i start minikube using driver as none it is giving me error regarding a dependency i.e conntrack, so i install it but even after installing it I am…
0
votes
0 answers

Is it causing deployment failure when there are 2 nodeSelectors under spec field in Kubernetes Deployment?

I am deploying this example using kubeedge. I am using minikube to run the cluster. I managed to deploy the cloud part of the demo but the edge part wouldn't be deployed. The pod status is stuck on containerCreating for so long. This is the…
NutellaTN
  • 9
  • 3
0
votes
1 answer

Minikube reports "Authentication is required" for 1 out of 20 images

Okay, so I have a Minikube setup and deploying a Helm chart. This chart pulls mainly from one repo where I need to authenticate. I do a kubectl create secret for that repo and most of the images are pulling fine. Just one (always the same) doesn't…
astifter
  • 65
  • 1
  • 9
0
votes
2 answers

minikube will not load updated docker image from dockerhub or locally

I have minikube running on Ubuntu 22.04. When I update a docker image, push it to dockerhub, delete the previous deployment, and apply the deployment the result in the log is from code that is several hours old. I see the service is gone after…
Dean Schulze
  • 9,633
  • 24
  • 100
  • 165
0
votes
0 answers

daprd container ready status is showing as false and deployment getting failed with Liveness probe failed: HTTP probe failed with statuscode: 500

I have developed the grpc api using the .NET 7 with dapr and I'm trying deploy the api in the minikube kubernets cluster in my local, all working till the time I have set to dapr.io/sidecar-liveness-probe-delay-seconds,after this time delay…
Shakir Ahamed
  • 1,290
  • 3
  • 16
  • 39
0
votes
0 answers

Can't use minikube ingress on local machine

I've been trying to follow the ingress-minikube tutorial but with some modifications. Instead of using kubectl expose deployment web --type=NodePort --port=8080 I created deployment.yaml file as fallows apiVersion: apps/v1 kind:…
luprogrammer
  • 155
  • 1
  • 3
  • 12
0
votes
0 answers

Mongo 5.0 does not start, on replicaset, using minikube

I'm using pymongo to handle my Mongo database, and I want to set it up, as a replica set, with Mongo 5.0 and minikube. The relevant part of my minikube is: mongo1: build: args: DOCKER_REGISTRY: ${DOCKER_REGISTRY} context: . …
Carabes
  • 532
  • 2
  • 4
  • 16
0
votes
1 answer

Connection refused error on Minikube ingress

I have a Minikube instance installed on an Ubuntu VM (Digital Ocean). I have also configured ingress for one my deployments but when I curl the hostname I am getting an error : curl myserver.xyz curl: (7) Failed to connect to myserver.xyz port 80:…
Golide
  • 835
  • 3
  • 13
  • 36
0
votes
0 answers

Minikube deployments not working - Minikube start fails

Getting below error when start minikube > Exiting due to PROVIDER_DOCKER_VERSION_EXIT_1: "docker version --format -:" exit status 1: Error response from daemon: Client sent an HTTP request to an HTTPS server. Documentation:…
0
votes
1 answer

My image isn't being deployed by kubernetes

I have made a minimal image of a fast-api program by building its Dockerfile. The imagename is task1. I'm trying to deploy it locally with minikube, kubectl by specifying a file named task1-deployment.yaml with the following structure: apiVersion:…
X HOxha
  • 143
  • 1
  • 2
  • 10
0
votes
1 answer

Why is curl failing to connect to a Kubernetes pod on exposed 80 port in minikube?

I am using minikube in VM-ware workstation 17 player (Ubuntu OS). When I expose my container on containerPort: 80, I am getting an error "curl: (7) Failed to connect to 10.244.0.49 port 80 after 21041 ms: Connection refused". Please help me to…