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

Can't connect directly to Pod on M1 Mac with Minikube

I'm building a service on Kubernetes that involves directly connecting to pods. Each pod is stateful and it's important that I'm able to connect to a specific pod in the cluster. For this reason a load balancer wont work. Also, the pod's address and…
vicg
  • 1,280
  • 14
  • 32
0
votes
2 answers

InvalidHostHeader in minikube ingress

I am trying to prepare my application so that I can deploy it via kubernetes in the cloud. Therefore I installed minikube to get accustomed with how to set up an ingress. Therefore I followed the ingress documentation by kubernetes. (NOTE: I did not…
0
votes
1 answer

Kubernetes: how to enable NGINX Ingress controller without minikube?

https://kubernetes.io/docs/tasks/access-application-cluster/ingress-minikube/ To enable the NGINX Ingress controller, run the following command: minikube addons enable ingress How to enable it without minikube on windows? Kubernetes is enabled…
eastwater
  • 4,624
  • 9
  • 49
  • 118
0
votes
1 answer

How to start/run minikube containers on Non-OS drive

I am running a minikube cluster using vmware driver on Windows 7 with Vmware Workstation v15.x.x. PS C:\Users\adminuser> minikube.exe config view - WantUpdateNotification: false - driver: vmware - profile: k8-home-cluster PS C:\Users\adminuser>…
Marcos
  • 845
  • 3
  • 10
  • 21
0
votes
0 answers

docker load -> minikube image load -> kubectl application deployment. Ok if a vagrant up is done from scratch, but not refreshed at vagrant provision

I use a Vagrantbox holding a minikube that needs an application coming from my host (a local dev one). I send that application by a docker save and then execute, in a part of the Vagrant provision, that script: docker load -i…
Marc Le Bihan
  • 2,308
  • 2
  • 23
  • 41
0
votes
0 answers

Issue with deploying Kubeflow pipeline

I am trying to follow this tutorial https://www.kubeflow.org/docs/components/pipelines/v1/installation/standalone-deployment/ on deploying kubeflow pipelines (i use minikube) but when the pods starts running, there is always a crashbackloop or some…
Aska
  • 141
  • 1
  • 10
0
votes
1 answer

How to connect to Kubernetes service from local network?

I'm new in Kubernetes and I have problem with accessing to running service from another machine in my local network. Running minikube on Centos 9 Below are my configurations: mongo-express.yaml kind: Deployment metadata: name: mongo-express …
0
votes
1 answer

Kubernates for windows container

I have a asp.net core application whose docker image is build in windows containers. I want to integrate this image with kubernetes using minikube. I was performing the below steps which didn't worked. minikube config set driver hyperv minikube…
0
votes
0 answers

Error running agent: starting input inputs.websocket: failed to WebSocket dial: failed to send handshake request: Get context deadline exceeded

the deployment pod in minikube trying to connect to a docker container on 9003 port to gather metrics but getting below error [telegraf] Error running agent: starting input inputs.websocket: failed to WebSocket dial: failed to send handshake…
Sai
  • 1
  • 3
0
votes
2 answers

Nginx ingress controller returns 404

I am trying to create Ingress for my kubernetes service. I am using minikube running on WSL2. Here are my deployment, service and ingress settings apiVersion: apps/v1 kind: Deployment metadata: name: {{.Chart.Name}}-backend labels: …
SkyWaet
  • 3
  • 1
0
votes
1 answer

Trying to use eclipse hadoop plugin to connect hadoop inside minikube

I am using helm and minikube to install hadoop and hive on centos7.9 , and the status of pod and service: status of my pod and service Next , I want to connect hadoop using eclipse hadoop plugin , but there is a problem: problem I don't have a…
0
votes
1 answer

How does Minikube run without a hypervisor

I have just started learning about containers and Minikube. I am using Mac with m1 chip. As far as I know, Minikube requires a VM (that would mean it would require a hypervisor). However, I have not installed any VM, just docker desktop on my laptop…
0
votes
1 answer

How to access a svc exposed via ClusterIP from another svc exposed to internet via NodePort

I am running two spring boot apps deployed in minikube cluster and exposed as services. svc-one is exposed via NodePort, and I am able to hit the controller in browser by fetching the URL via command minikube service svc-one --url. Now I am trying…
0
votes
0 answers

minikube cannot increase ingress client-max-body-size

In dev mode, I created a local cluster, following https://kubernetes.io/docs/tasks/access-application-cluster/ingress-minikube/ Everything work fine, but when post a body with big size I get 413 Request Entity Too Large from nginx. This is my…
Sten Ka Razin
  • 883
  • 1
  • 10
  • 23
0
votes
0 answers

Minikube pods not accessible via AWS EC2 instance public ip in browser

I have a Jenkins server, an Ansible server and a Web server all running as ec2 instances. Jenkins server is configured as "GitHub hook trigger for GITScm polling". And also it will copy files (Ansible Playbook, Dockerfile, Deployment and Service…