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

How to connect local kubernetes with local jenkins

My kubernetes environment is running on kind while my jenkins environment is running as a docker instance. I tried watching all of the youtube tutorial regarding this and have followed all of the steps carefully but still, I can't seem to get past…
Renz
  • 5
  • 5
1
vote
0 answers

Kubernetes Go client library make it ignore SSL issues

I am using Kind with docker-compose. In my docker-compose file, I have the following line extra_hosts: - "host.docker.internal:host-gateway" This allows me to connect to Kind, which is running in localhost. However, Kind only issue certificate to…
Rodrigo
  • 135
  • 4
  • 45
  • 107
1
vote
2 answers

Deploy Mongodb on kubernetes in replicaset Mode

I am trying depoly a replicaset of mongodb in my kind kubernetes. Well, my first step is run thsi command: helm upgrade --install mongodb bitnami/mongodb --set mongodb.global.storageClass=standard --set mongodbRootPassword=root --set…
1
vote
0 answers

How to deploy a KinD cluster in a docker swarm

I have deployed a docker swarm to Azure following the instructions in the quickstart guide. I also set up an ssh tunnel using the command from the quickstart: ssh -L 2375:swarm-master-0:2375 -N…
jhill072
  • 11
  • 2
1
vote
1 answer

Setting domain name for ingress in Kind cluster

I want to create a domain name for my ingress which is accessible from external application. I am trying Contour ingress following https://kind.sigs.k8s.io/docs/user/ingress/#using-ingress on my Kind cluster which is running on my mac locally.. It…
Rad4
  • 1,936
  • 8
  • 30
  • 50
1
vote
1 answer

How do I login to ArgoCD running on KIND?

The docs show argocd login but they never say what ARGOCD_SERVER is. How can we login to ArgoCD on a kind cluster?
user2836797
1
vote
0 answers

Accessing elastic search running on the host machine from a kind pod

I have elasticsearch running on my host machine on port 9200. Now I'm trying to access this from a pod running on a kind cluster. This is how I have defined my external elasticsearch service. apiVersion: v1 kind: Service metadata: name:…
tmp dev
  • 8,043
  • 16
  • 53
  • 108
1
vote
1 answer

what is the kind and apiversion used to specify a kibana instance on kubernetes?

I have the following .yaml file: apiVersion: kibana.k8s.elastic.co/v1 kind: Kibana metadata: name: quickstart spec: version: 8.0.0 count: 1 elasticsearchRef: name: quickstart when I try to create the instance using kubectl create -f ,…
ashique
  • 935
  • 2
  • 8
  • 26
1
vote
2 answers

Unable to reach registry-1.docker.io from Kind cluster node on WSL2

I am setting up and airflow k8s cluster using kind deployment on a WSL2 setup. When I execute standard helm install $RELEASE_NAME apache-airflow/airflow --namespace $NS it fails. Further investigation shows that cluster worker node cannot connect to…
arundeep78
  • 159
  • 11
1
vote
1 answer

kind - exposing service to host

I would like to run an application in local cluster for development purposes with kind using docker. Based on the description https://kind.sigs.k8s.io/docs/user/quick-start/ I defined the cluster kind: Cluster apiVersion:…
Puchacz
  • 1,987
  • 2
  • 24
  • 38
1
vote
1 answer

Kind: Pod is in pending state and describe pods show no messages

I have a kind cluster with 1 control plane and 2 nodes. I am facing an issue where the pod goes in pending state and describe of pods or nodes don't show up any events. This issue doesnt happen the moment i create the cluster . this shows up after…
Shane Warne
  • 1,350
  • 11
  • 24
1
vote
2 answers

Set Variables for Airflow during Helm install

I'm installing Airflow on kind with the following command: export RELEASE_NAME=first-release export NAMESPACE=airflow helm install $RELEASE_NAME apache-airflow/airflow --namespace $NAMESPACE \ --set images.airflow.repository=my-dags \ --set…
knl
  • 969
  • 11
  • 35
1
vote
1 answer

Use of Ingress with service of type LoadBalancer on Kind

I had found a definition, when reviewing a project, that intrigued me: the use of Ingress with a Service of type LoadBalancer without installing the load balancer itself on Kind. As defined, it seems to work but I don't know why. I say that it works…
Kfcaio
  • 442
  • 1
  • 8
  • 20
1
vote
1 answer

Pod is always pending in Kubernetes

The Pod status is always pending. I'm using Kind locally to study Kubernetes and trying to go up one Pod. ❯ kubectl get pods NAME READY STATUS RESTARTS AGE goserver 0/1 Pending 0 12m The events from…
Allan Duarte
  • 157
  • 1
  • 3
  • 14
1
vote
1 answer

Kind Kubernetes cluster doesn't have container logs

I have installed a Kubernetes cluster using kind k8s as it was easier to setup and run in my local VM. I also installed Docker separately. I then created a docker image for Spring boot application I built for printing messages to the stdout. It was…
Jason Nanay
  • 115
  • 1
  • 12