Questions tagged [kind]

kind is a tool for running local Kubernetes clusters using Docker container “nodes”.

kind was primarily designed for testing Kubernetes itself, but may be used for local development or CI.

164 questions
0
votes
1 answer

Connecting to a kafka broker running in docker from a kubernetes service using kind

I'll try and keep this brief. I have a kafka broker running in docker, this is the docker-compose.yaml version: '2' services: zookeeper: image: confluentinc/cp-zookeeper:latest environment: ZOOKEEPER_CLIENT_PORT: 2181 …
0
votes
0 answers

Why an app deployed to k8s with ArgoCD has Application and Ingress stuck in "Progressing" state?

I have Docker running in WSL2 (no Docker Desktop in Windows, just docker engine within WSL), and a Kubernetes cluster created with kinD. Inside this cluster, there's an ArgoCD server. I have built a little demo app which runs in port 8083, and…
0
votes
1 answer

access k8s dashboard on kind in EC2

I am not sure whether my setup is too unique, but I can't seem to find relevant information about the right way to do this. I will try to share my setup in details. I installed a KIND cluster on my AWS EC2, and I install metrics-server and…
sqr
  • 365
  • 2
  • 12
  • 29
0
votes
2 answers

pod-to-pod communication across namespace in the same cluster

I am confused about some elementary network concept in k8s and can someone kindly explain this to me please? thank you! as described here: All ingress Pod-to-Pod communication has been denied across all namespaces. You want to allow the Pod busybox…
sqr
  • 365
  • 2
  • 12
  • 29
0
votes
0 answers

Inaccessible LoadBalancer Service in Kind Tutorial – What am I Missing?

I am working through the Kind tutorial for local Kubernetes development, and I've reached the section on LoadBalancer configuration. I'm encountering an issue where the service seems to be running but is not accessible either within WSL2 or Windows.…
Edu
  • 159
  • 1
  • 14
0
votes
0 answers

How to force KinD cluster to auto-start with Docker Desktop?

I'm using Docker Desktop 4.20 to setup a KinD cluster. The cluster is working fine, however, if I re-login or restart Docker Desktop, the control plane container is gone. It seems like there is no restart policy for the container. If, for example, I…
Sagi Mann
  • 2,967
  • 6
  • 39
  • 72
0
votes
0 answers

ingress-nginx not listening on Port 80

I have a KinD cluster on my laptop where I am attempting to use ingress-nginx to provide a way to access UIs for services running in the cluster, at this stage just prometheus and argocd. I'm having an infuriating issue when installing with helm, it…
800711
  • 3
  • 2
0
votes
1 answer

I can't reach my Kind cluster on WSL2 if I restart my computer, why?

I have a setup of WSL2 and Kind. Whenever I restart my computer and open a new WSL2 window, I can no longer use kubectl to access my kind cluster. kind get clusters >>> kind kubectl config get-contexts CURRENT NAME CLUSTER …
Kspr
  • 665
  • 7
  • 19
0
votes
0 answers

Config's port doesn't match the kind's port

I've enabled kubernetes in the docker desktop. Created a cluster using kind. I was checking a kubectl config file and saw that docker's ports doesn't match to the it: This is a my config file, I've cut certificates values. apiVersion: v1 clusters: -…
0
votes
0 answers

Cluster API not reconciling after worker node container stop in Docker infrastructure deployment using Kind and CAPD

cluster api not able to reconcile for docker infrastructure provider, I have created a k8s cluster using kind. Initialized it using clusterctl init --infrastructure docker and apply one CAPI manifest for 3 control-node + 3 worker node. It was…
0
votes
1 answer

Connecting Cilium Clustermesh between two separate VMs with kind-c1 and kind-c2 clusters

I followed the tutorial on https://piotrminkowski.com/2021/10/25/kubernetes-multicluster-with-kind-and-cilium/ to create two separate Cilium clusters, kind-c1 and kind-c2, on two different VMs within the same network. However, when attempting to…
Monica
  • 3
  • 2
0
votes
0 answers

failed to create kind cluster on wsl2

I have set up wsl2 with docker. Docker is running and docker run hello-world and docker ps work fine. I want now to create a kind cluster. I am executing running the following command kind create cluster, but the following error comes up during step…
Elina_syr
  • 76
  • 5
0
votes
0 answers

How can I access from one pod to another through ingress in kind?

I have set up a cluster using kind and Dnsmasq, and have deployed ChartMuseum and ArgoCD on it. However, I am having trouble connecting to ChartMuseum from ArgoCD using the DNS 'chartmuseum.kind.cluster' to get the charts. Despite my efforts, the…
0
votes
1 answer

Running Krustlet on minikube or Kind

I was attempting to run a hello-world demo of Krustlet on minikube following the Krustlet's official tutorial. julen@julen-HP-ZBook:~/Cloudlab/krustlet$ minikube start --driver=virtualbox minikube v1.29.0 on Ubuntu 22.04 ✨ Using the virtualbox…
julenbhy
  • 1
  • 1
0
votes
0 answers

Kubernetes ingress redirect me to a 504 error

Im learning kubernetes (im using KIND) and im facing to a problem. Im following this tutorial This exemple work well, but i want to change the pod image by one of mines (it's a nodeJS api that just return a sentence with the route :…
Bronems
  • 1
  • 1