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

Where can I find GKE CRDs?

Trying to run helm/chart-testing-action in a GitHub workflow using kind. For the charts I require some GKE CRDs though. Any place I can find them?
0
votes
1 answer

Installing knative on existing kind cluster

I have an existing kind k8s cluster with a bunch of running services and nginx-ingress setup and I would like to add knative to it. Is there a way of doing this with nginx-ingress, seems like networking for knative is a bit more complex than a…
Rory Hart
  • 1,813
  • 1
  • 19
  • 19
0
votes
1 answer

Kind (Kubernetes) cluster throwing ImagePullBackOff error

I need to pull the image from public docker repository i.e hello-world:latest and run that image on kubernetes. I created cluster using Kind . I ran that image using the below command kubectl run test-pod --image=hello-world Then I did kubectl…
Zain Afzal
  • 45
  • 1
  • 8
0
votes
1 answer

crictl images --digest does not display digests in the Kind node

I upload the docker image using: kind load docker-image k8s.gcr.io/ingress-nginx/kube-webhook-certgen:v1.0 After that, I go to the Kind node: docker exec -it kind-control-plane bash And I execute: root@kind-control-plane:/# crictl images…
deevroman
  • 99
  • 1
  • 2
  • 14
0
votes
2 answers

How to access kind control plane port from another docker container?

I'm creating a kind cluster with kind create cluster --name kind and I want to access it from another docker container but when I try to apply a Kubernetes file from a container (kubectl apply -f deployment.yml) I got this error: The connection to…
0
votes
1 answer

How to adjust the IP network segment of the k8s cluster deployed by kind

Deploy kubevela using the kind cluster, but the deployed pod network segments all start with 10.24. I want to switch to 172.16. How should I configure it, my friends? my pods ip
zekee
  • 15
  • 3
0
votes
1 answer

Debugging NodeJs app running inside pod on Kind (Kubernetes in docker) cluster

I am running a kubernetes cluster with Kind configured as shown bellow: kind: Cluster apiVersion: kind.x-k8s.io/v1alpha4 nodes: - role: control-plane kubeadmConfigPatches: - | kind: InitConfiguration nodeRegistration: …
Charalarg
  • 75
  • 1
  • 9
0
votes
1 answer

Firebase Emulator Auth on Kubernetes pod not receiving request

I've deployed locally a k8s cluster with kind. The firebase emulator runs on a pod inside the cluster and has a ClusterIp Service assigned. When I'm sending a request to kind-firebase.yaml pod from the service.yaml pod, the request fails because…
Robert Mihai
  • 184
  • 1
  • 9
0
votes
0 answers

Accessing an external service from a pod

Does a pod need special permission to access an external service. I have an external service defined, and when I ssh into the pod and do a simple curl against the external service I get an error message saying access Denied. This is how I define…
tmp dev
  • 8,043
  • 16
  • 53
  • 108
0
votes
1 answer

kind kubernetes : Nodeport Service ( front-end ) service is not able to access ClusterIP ( back- end ) service from browser

I have used kind kubernetes to create cluster. I have created 3 services for 3 Pods ( EmberJS, Flask, Postgres ). Pods are created using Deployment. I have exposed my front-end service to port 84 ( NodePort Service ). My app is now accessible on…
0
votes
2 answers

deployed a service on k8s but not showing any pods weven when it failed

I have deployed a k8s service, however its not showing any pods. This is what I see kubectl get deployments It should create on the default namespace kubectl get nodes (this shows me nothing) How do I troubleshoot a failed deployment. The…
tmp dev
  • 8,043
  • 16
  • 53
  • 108
0
votes
0 answers

Cannot reach pod after deploying prometheus

I'm a newbie on K8s, please forgive me if this is a straightforward question. TL;DR I deployed a classic server-client architecture using a k8s service to reach server by using service's FQDN. When I apply only the below yaml, server is reachable…
Matteo Meil
  • 1,192
  • 10
  • 20
0
votes
1 answer

Running local development kafka in kubernetes with Kind and persisting volumes

I am running a Dev Linux machine and setting up a local Kafka for development on Kubernetes(moving from docker-compose for learning and practicing pourposes) with Kind and everything works fine but I am now trying to map volumes from Kafka and…
groo
  • 4,213
  • 6
  • 45
  • 69
0
votes
1 answer

Ingress address

I have a question about applying the ingress resource below: the address of the ingress in localhost. if I want to call the ingress address from within a pod it will not work. is there a way to get an absolute address? Thanks apiVersion:…
erez
  • 151
  • 2
  • 3
  • 9
0
votes
1 answer

kind cluster cannot bind port 80 on Windows 10

I'm using local Kubernetes cluster with kind. I try to use Ingress and follow the next instruction from official documentation: https://kind.sigs.k8s.io/docs/user/ingress/#create-cluster My cluster configuration: kind: Cluster apiVersion:…
Mikhail_Sam
  • 10,602
  • 11
  • 66
  • 102