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

Apply Github hosted Kubernetes file with Helm

I am trying to set up a helmfile deployment for my local kubernetes cluster which is running using 'kind' (a lightweight alternative to minikube). I have charts set up for my app which are all deploying correctly, however I require an nginx-ingress…
Abulafia
  • 1,741
  • 12
  • 25
0
votes
0 answers

How to expose a K8s Dashboard deployed to a kind cluster?

I have successfully created a kind cluster on a remote virtual machine. My team would like to have access to cluster to learn k8s and play around a bit. I would like to expose the dashboard so that it can be reached on https://ip:20443. For that I…
Hodossy Szabolcs
  • 1,598
  • 3
  • 18
  • 34
0
votes
1 answer

How to scale kind cluster

I'm having difficulties. I'm wanting to discover the kind, the type of tool (K8S on prem) for personal purposes and also terraform deployments. Someone who managed to deploy and scale these clusters? thanks in advance
0
votes
1 answer

Specify containerd version on minikube or kind

I am trying to reproduce an issue that requires me to use containerd v1.4.4 for my container-runtime and kubernetes v1.19.8. When I try to use minikube to create a multi-node cluster locally, it allows me to specify the kubernetes version but I am…
systolicDrake
  • 101
  • 1
  • 6
0
votes
1 answer

How come different pods are hit if Kubernetes has no load balancer built in?

I learnt that Kubernetes running via Minikube or kind (that's what I'm using) does not have a Load Balancer. That functionality comes from cloud providers. However, when I created a simple deployment with 3 replicas and a service: kubectl create…
mnj
  • 2,539
  • 3
  • 29
  • 58
0
votes
2 answers

Where to find Kubernetes kind Cluster CA?

I am using Windows OS, and in Minikube we can easily find the server CA cert in .minikube directory with file name as ca.crt so that we can sign the user with the CA certificate for ex like below command- openssl x509 -req -in DevUser.csr -CA…
0
votes
1 answer

Why am I not seeing the worker node in my cluster?

I'm running a cluster with kind - one worker node. However when I do kubectl get nodes I can't see the node, but instead I see 'kind control plane' - which makes no sense to me, control plane is a node?? The worker node must be running, because I…
0
votes
1 answer

how to install nftables and its dependencies inside docker container?

I have a KIND cluster with one control plane and two worker nodes. On worker node, i want to install and debug nftables. when i try to list rules, i see below error root@worker:/# nft list ruleset nft: error while loading shared libraries:…
0
votes
0 answers

Troubleshooting Failed to pull image error Kubernetes

So I have a private repository setup in docker which has an image which needs to be pulled by kubernetes. When I browse http://localhost:5000/v2/imagename/tags/list I can see a json with the image and its respective tag (FYI: I am using kind and…
vkandvia
  • 85
  • 12
0
votes
1 answer

Authorization Issue with InfluxDB on cluster

I am new to the realm of helm & kubernetes in general and need to install influxdb onto a cluster. I've generated said cluster using kind and installed influxdb onto it as a helm release. When I host the cluster onto 8086, if I run a query to create…
0
votes
1 answer

How to deploy container to local kubernetes environment such as kind?

I built a docker image on local. Its name is myapp. Deploy it as myjob.yaml: apiVersion: batch/v1beta1 kind: CronJob metadata: name: myapp spec: schedule: "*/2 * * * *" jobTemplate: spec: template: spec: …
oiio
  • 45
  • 1
  • 7
0
votes
0 answers

connection reset by peer Error with nginx Ingress in Kind cluster

I installed vault helm chart 0.8.0 in dev mode and nginx ingress controller on Kind cluster and applied the following Ingress resource: apiVersion: networking.k8s.io/v1beta1 kind: Ingress metadata: name: vault-ingress annotations: …
Revital Eres
  • 233
  • 5
  • 18
0
votes
1 answer

How to allow Argo workflows (Kind cluster) worker containers to access host ports?

For local development, we'd like to allow Argo workflows worker containers to access ports on the host, similarly to host mode networking in docker. How can this be achieved? (we deploy Argo on top of a Kind cluster) Thank you!
leongold
  • 1,004
  • 7
  • 14
0
votes
0 answers

kind-kind User in Kind cluster

I created a Kind cluster with the command 'kind create cluster'. This creates a user named kind-kind.I would like to know his permissions. I did not see any rolebinding or clusterrolebinding grant to him.
Revital Eres
  • 233
  • 5
  • 18
0
votes
0 answers

How to correctly stream logs from exec Pod

I'm running an operator in a Kind cluster. My development machine runs Docker for Mac for that Kind cluster to run. One of my operator function is about executing a command in a running Pod - similar to kubectl exec. When the operator is running…
Zulhilmi Zainudin
  • 9,017
  • 12
  • 62
  • 98
1 2 3
10
11