Questions tagged [minikube]

38 questions
1
vote
0 answers

Injected vault-agent pod failing to start, api server & vault aren't communicating

I have a local kubernetes cluster using kind. It is a single node cluster. On this cluster I am following this guide to setup Vault & the vault-agent-injector. If I follow the tutorial step by step the end result is that the orgchart pod will fail…
1
vote
0 answers

How to generate or change HostPath in kubernetes config for each developer?

In Kubernetes, you can create a volume to mount into a with hostpath. This hostPath should provide a directory on the node running the pod. It's useful when you are working in development environments using minikube, we use this hostPath to sync…
fermin
  • 113
  • 4
1
vote
2 answers

Need help understanding label overwrite behavior in kubernetes

I am learning kubernetes by walking through a kubernetes tutorial. While working through the exercises in module 4, I observed an odd behavior from kubernetes when overwriting a label. I could use some explanation, because what I see doesn't match…
Lee Jenkins
  • 161
  • 1
  • 6
0
votes
1 answer

Minikube files do not persist after restart

I'm using minikube version 0.28.0 and files don't persist after a restart. I ran into the problem after noticing my database data disappears after a restart (even though the pods, pv's, and pvc's say they've been up for days). I used minikube ssh to…
s g
  • 611
  • 3
  • 9
  • 17
0
votes
1 answer

Setup bridge for existing virtual birdge that minikube is running on

I managed to setup minikube on my system using kvm2 driver, and it seems to work. However i want to be able to launch the dashboard and access it externally, i.e. access it from another device within the network. I ran virsh net-dumpxml…
Aeseir
  • 101
  • 2
0
votes
0 answers

Configuring TCP services with nginx ingress on minikube/k8s

I'm new to k8s/minikube (and to some extent, unix networking in general) so if I ask something that seems to make no sense, I'll be happy to clarify! Goal I want to configure a port-based TCP ingress, as described briefly in the nginx-ingress docs.…
Ben
  • 251
  • 1
  • 3
  • 11
0
votes
1 answer

When starting minikube set to --kubernetes-version v1.7.6, startup fails due to kubeadm attempting to use kube-dns

On my mac and Linux boxes (Linux Mint 18.3 Sylvia), when attempting to start minikube compatible with v.1.7.6, the startup fails when it tries to run the /usr/bin/kubeadm alpha phase addon kube-dns command. The problem is that kube-dns does not…
Scott S
  • 101
  • 1
0
votes
1 answer

minikube - Error starting cluster: kubeadm init error

My environment: $ cat /etc/redhat-release CentOS Linux release 7.5.1804 (Core) $ uname -a Linux X.X.X 3.10.0-862.11.6.el7.x86_64 #1 SMP Tue Aug 14 21:49:04 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux $ I followed Installation (Linux) and then tried…
alexus
  • 13,112
  • 32
  • 117
  • 174
0
votes
1 answer

Facing error again in minikube renew certificate

When I run kubectl command getting error is certificate expired How to debug minikube errors? kubectl get pods Unable to connect to the server: x509: certificate has expired or is not yet valid
Paul
  • 15
  • 4
0
votes
0 answers

Using apt-get update in Dockerfile is not working

In my Mac, I'm running minikube, version minikube version: v1.24.0 commit: 76b94fb3c4e8ac5062daf70d60cf03ddcc0a741b with VirtualBox, with this command minikube start --vm-driver virtualbox…
Carabes
  • 101
  • 1
0
votes
0 answers

This site can’t be reached in kubernetes minikube

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 …
Samson
  • 113
  • 5
0
votes
0 answers

forward traffic from vm host to Minikube

I have the following setup: MAC Book Pro and Ubuntu 22.04, running on parallels. Minikube installed on the ubuntu vm. Some pods running in the Minikube cluster and configured an external service. From my Ubuntu VM (where Minikube is running) I can…
sangul
  • 1
  • 2
0
votes
0 answers

jenkins on kubernetes, jobs are not running, how to fix that?

When I to run any job, getting this error in jenkins logs. The job just stuck in pending state. fully completed. We have now 2 computer(s) 2023-03-27 15:21:32.237+0000 [id=34] WARNING j.u.ErrorLoggingScheduledThreadPoolExecutor#afterExecute:…
user2331760
  • 155
  • 4
  • 12
0
votes
1 answer

Kubernetes Ingress always direct traffic to the wrong pod

I have the following setup in a minikube kubernetes cluster (locally) namespace customer-a 1 deployment -> prints "Hi from Customer A" 1 LoadBalancer type Service 1 ingress -> host customer-a.example.com namespace customer-b 1 deployment ->…
Jananath Banuka
  • 151
  • 2
  • 6
0
votes
1 answer

Cannot properly edit and save worker node specs in Kubernetes

I have a Kubernetes cluster setup using KubeAdm (Setup in EC2 instances in AWS Cloud). The CNI used is Flannel and the cluster is running quite well. My requirement is that I am trying to setup KubeVirt (https://kubevirt.io/) in my Cluster to…