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

How to access https 443 port in kubernetes in windows using kind and docker

kubectl port-forward service/nginx 8080:443 Forwarding from 127.0.0.1:8080 -> 443 Forwarding from [::1]:8080 -> 443 Handling connection for 8080 E0314 16:38:47.834517 25527 portforward.go:406] an error occurred forwarding 8080 -> 443: error…
newbie
  • 456
  • 1
  • 6
  • 17
0
votes
0 answers

K8s nodeport service forwards traffic to unready pod

So far I thought I had a good understanding of Kubernetes. Today I was startled to see a service forwarding traffic to an unready pod. Can somebody fill this knowledge gap for me? Here is what I'm doing: I'm using the latest version of Kind to spin…
user3442122
  • 31
  • 1
  • 4
0
votes
1 answer

What does - |- mean in yaml patch file

In this example (link), it creates kind cluster with config file, which patch containerd. What does the - |- under the line of containerdConfigPatches mean? I found - | in yaml indicates this is a patch field. But what does the - following - |…
Mike
  • 1,841
  • 2
  • 18
  • 34
0
votes
0 answers

How to provision a kubernetes kind cluster with audit logging?

I followed the instructions here: https://kind.sigs.k8s.io/docs/user/auditing/ It fails with the following error waiting for the kublet to start: [wait-control-plane] Waiting for the kubelet to boot up the control plane as static Pods from directory…
Pyramid Newbie
  • 6,865
  • 3
  • 24
  • 28
0
votes
1 answer

How can I find out which Ray version is installed on kuberay?

Running on kind, I've installed kuberay following the docs. I brought up the dashboard: k port-forward svc/raycluster-heterogeneous-head-svc 8265 But this doesn't show any version information
Romeo Kienzler
  • 3,373
  • 3
  • 36
  • 58
0
votes
0 answers

Kubernetes Ingress rules for prometheus server

I have a local kind Kubernetes cluster with two workers nodes. I deployed a nginx ingress controller following the tutorial here: https://kind.sigs.k8s.io/docs/user/ingress/ and this yaml…
Crerem
  • 1,289
  • 2
  • 18
  • 45
0
votes
1 answer

Create a cluster that uses Pod Security Admission

I try to configure the API server to consume this file during cluster creation. My system is Ubuntu 22.04.2 LTS x86_64 kind version is v0.17.0 go1.19.2 linux/amd64 minikube version: v1.29.0 The config file is: kind: Cluster apiVersion:…
tstr
  • 1,254
  • 20
  • 35
0
votes
0 answers

kubernete cluster running on kind , setting up prometheus and grafana for monitoring

I have installed prometheus in namespace monitoring and grafana in default namespace. can i copy or move any of this in either default namespace or monitoring namespace. What can be the possible issues i can face going forward ? I tried this : helm…
0
votes
1 answer

Cannot access load balancer external ip address assigned by metallb installed on kind cluster using docker desktop on mac m1 from browser

I have MAC M1 running Docker Desktop (v20.10.17). Kubernetes is NOT enabled, just the docker engine is running. I installed Kind Cluster: kind: Cluster apiVersion: kind.x-k8s.io/v1alpha4 nodes: # Can add additional control planes #- role:…
user1424876
  • 133
  • 1
  • 7
0
votes
0 answers

Are Gateway API CRDs supported in Minikube and Kind?

I'm trying to install Gateway into my Kind cluster using Gateway API CRD by following a tutorial from https://istio.io/latest/docs/examples/bookinfo/ I had no problem with this command curl…
sancho21
  • 3,511
  • 1
  • 39
  • 45
0
votes
1 answer

How to use a secure docker registry within a kind kubernetes cluster

I am trying to create a secure docker registry to be used inside a development kind cluster. I am going to use a container for the registry and 3 other containers for kind workers. In order to be consistent with the production environment I want to…
navidda
  • 21
  • 4
0
votes
1 answer

Volume Mount in SparkApplication resource not working

I am toying with the spark operator in kubernetes, and I am trying to create a Spark Application resource with the following manifest. apiVersion: "sparkoperator.k8s.io/v1beta2" kind: SparkApplication metadata: name: pyspark-pi namespace:…
0
votes
0 answers

During creating new app in ArgoCD, ArgoCD can't detect private git repository path

During creating new app in ArgoCD, ArgoCD can't detect in private git repository path( but can connect and show all branches ) Repository connection status is successfully connected. Provided all authentication credentials. token (https) and ssh…
0
votes
0 answers

Issue in starting the nginx web platform open-resty in wsl-ubuntu

I'm currently running Ubuntu using wsl-2 in windows and when I tried out an Open Resty tutorial for dynamic redirection, it was running well. I configured kind cluster and setup nginx ingress to tryout ingress services and it also worked fine. But…
0
votes
0 answers

Cannot create redo log files because data files are corrupt or the database was not shut down cleanly after creating the data files

I am trying to deploy mysql on a multi-node cluster created by Kind on Ubuntu 22.04 machine. This is my configmap.yaml file: apiVersion: v1 kind: ConfigMap metadata: name: mysql labels: app: mysql app.kubernetes.io/name: mysql data: …
best_of_man
  • 643
  • 2
  • 15