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

How to setup a nginx reverse proxy for a minikube service

I have a minikube service running on http://192.168.49.2:31746 on the server with IP address 10.128.135.6 When I curl http://192.168.49.2:31746 on the server on which Minikube is running, I can access the service. However, I want to access this…
0
votes
0 answers

Dockerfile command fails to copy a file

I'm trying to build this application locally (option 2) according to the provided tutorial. Source code is also there. I'm using skaffold run command for it. Everything works fine but it fails on adservice Dockerfile line 22 with an error: /bin/sh:…
staticvoid
  • 23
  • 4
0
votes
1 answer

Changing docker cpu, ram, drive configuration

I'm trying to locally build this application. Unfortunately provided skaffold run command generates an error build [adservice] failed: exit status 127. Docker build ran into internal error. Please retry. I suspect it's because I didn't set correct…
staticvoid
  • 23
  • 4
0
votes
0 answers

How to configure minikube container log max size and container log max files?

Minikube fills up the available disk space with logs. To prevent I would like to rotate the logs with a maximum number of files of 1. I tried the following: minikube start --extra-config=kubelet.containerLogMaxFiles=1…
blanNL
  • 360
  • 1
  • 11
0
votes
0 answers

How to expose jupyterhub , type=loadbalancer service using metallb on server's ip address

I want to run a setup of jupyterhub and ngshare on a server with IP address 10.129.131.4 I ssh into the server and run the setup given here. This is what I get on running the kubectl get all command. the only difference being the External-IP for…
Anonymous
  • 25
  • 7
0
votes
1 answer

Angular routes to localhost in k8s cluster

I have a problem with my Angular 15 Frontend app inside Minikube cluster. For deploying my app in Minikube, I add the k8s services URLs to environment files and Angular/Nginx sends me back to localhost - not to desired servcice…
0
votes
0 answers

Why a Java application is slow in the minikube cluster?

I have a simple Spring Boot app (Spring Boot 3.0.0, Java 17) deployed to Kubernetes. The app is straightforward at the moment. It has a PostgreSQL DB connection with a couple of Flyway migrations and a basic REST controller. The application starts…
0
votes
0 answers

Problem when deploying Vault in kubernetes is using minikube

When deploying, minikube is used When using Helm Charts, I try to deploy hcp vault, but nothing works, the 'ingress' controller just freezes, tell me what the problem is. I tried to rearrange the port numbers at the moment when using the kubectl…
0
votes
0 answers

Redis Enterprise operator for k8s

I'm facing an issue with redis enterprise, anyone can help me? I followed the docs but I'm stuck at this point: after the apply command I get only "Back-off restarting failed container" error. Logs from the pod return output only for the admission…
riccardogabellone
  • 268
  • 1
  • 6
  • 17
0
votes
0 answers

Unable to create a file in minikube container using java

I created persistent volume. apiVersion: v1 kind: PersistentVolume metadata: name: local-pv labels: type: local spec: storageClassName: manual capacity: storage: 1Gi accessModes: - ReadWriteOnce hostPath: path: "/C/GIT/practice" and It also created…
0
votes
2 answers

Creating Services. curl timed out when doing curl http://$(minikube ip):32000

(WSL2, minikube, Windows 11, Calico plugin, Docker-Desktop) I simply don't understand why curl timed out when doing curl http://$(minikube ip):32000. I saw SO questions but they are not applicable. $ k create deploy nginxsvc --image=nginx…
0
votes
0 answers

Kubernetes minikube start after thingsboard login, and then returning 503 Service Unavailable

Kubernetes minikube start after thingsboard login, and then returning 503 Service Unavailable. Have install minikube addons enable ingress. we don't know why it happened. Please attached picture. Is there any way to solve this? thingsboard login,…
0
votes
1 answer

grafana not accessible in browser 404

I use minikube to run a local kubernetes cluster. I deploy grafana using helm from this repo: https://grafana.github.io/helm-charts. If I use port-forwarding it is perfectly accessible, so I tried to setup an ingress on chart-example.local/grafana.…
Cake
  • 90
  • 1
  • 8
0
votes
0 answers

Can't login into mysql on minikube

I'm trying to make phpmyadmin and mysql run together on minikube but I cannot login into phpmyadmin or mysql. It always gives me this error: bash-4.2# mysql -u root -p Enter password: ERROR 1045 (28000): Access denied for user…
sens31
  • 27
  • 5
0
votes
0 answers

Minikube and Ingress on macOS arm64

What Happened? Setting up minikube and trying to enable ingress, I got the following errors. minikube start --driver qemu --network socket_vmnet --cpus 4 --memory 8000 minikube addons enable ingress I don't quite know how to resolve this. Attach…
Future Man
  • 43
  • 2
  • 8
1 2 3
99
100