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

kind - Kubernetes pods can't pull image from private docker registry

I have a problem with a local kind kubernetes cluster I have. I applied a regcred secret with the relevant details of my private registry and then a deployment file pointing to that registry and uses the relevant secret but it seems like the pods…
0
votes
1 answer

How to use Kind instead of Minikube with Cloud Code?

For reasons of resources (memory and processor), I cannot install Minikube on my pc. While I need it to use Cloud Code's Cloud Run Emulator. I replaced Minikube with Kind and wanted to know how to configure Cloud Code to use Kind.
Ezekias BOKOVE
  • 148
  • 1
  • 7
0
votes
0 answers

MeterialDesign WPF PackIcon Binding Kind

I try to change the Kind of a Packicon programmatically. Updated Question: That's my code now: I implemented the Interface INotifyPropertyChagned now: public partial class OwnExtendedMessageBox : Window, INotifyPropertyChanged Then I added these…
0
votes
0 answers

Can't get local image up on kubernetes kind setup

Any time I try to get a service up, it fails due to the image being unable to load. Things I've tried: Disable looking for image externally: imagePullPolicy: Never Things observed: My home folder doesn't have a .docker folder Things I've…
Mr.UNOwen
  • 163
  • 1
  • 1
  • 14
0
votes
1 answer

Can't get to web page hello-kubernetes using KIND, how do I get Kind to bind to localhost:80?

Due to the nested nature of kind I can't figure out what port to use or how to configure it so that I can just type localhost to get to it. KIND YAML: kind: Cluster apiVersion: kind.sigs.k8s.io/v1alpha3 nodes: - role: control-plane - role: worker -…
Mr.UNOwen
  • 163
  • 1
  • 1
  • 14
0
votes
0 answers

How would I connect to a MySQL on the host machine from inside a docker kubernetes pod?

I have a MySQL server running on my local machine, accessible at localhost:3306. I also have a KinD cluster set up on WSL2, with Docker integration. How would I access the server from a python application inside a kubernetes pod?
asuprem
  • 554
  • 1
  • 5
  • 17
0
votes
0 answers

How to see several types/kind of values in a particular column in linux?

I have a .txt file in linux (with 56 columns and 18000 rows) named 'file1.txt' with the data that looks like this; C1 C2 C3 C4 C5 C6 1 2 3 4 5 6 0 1 2 3 4 5 2 3 0 0 0 0 3 4 1 1 1 1 0.008 0 2 0.008 …
Tabbi
  • 69
  • 1
  • 9
0
votes
1 answer

Kubernetes: access from outside

I have a flask app running on a remote Kubernetes cluster and when I'm accessing it on the inside it works. However, when I'm trying to access it from the outside nothing happens. I'm using kind to create the cluster. Locally I can access the flask…
Zaharlan
  • 75
  • 7
0
votes
1 answer

How can I customize the arguments to a kubernetes system pod such as kube-apiserver in Kind?

I want to customize the arguments to kube-apiserver so that I can inspect the requests being made, so that I can debug a failing request. However, I'm not sure what I need to modify. I know that kube-apiserver can't be being deployed with helm,…
Robin Green
  • 32,079
  • 16
  • 104
  • 187
0
votes
1 answer

Why is cap_net_bind_service not working in this nginx nested Docker container?

The nginx ingress controller for Kubernetes uses the cap_net_bind_service capability, which is a Linux filesystem attribute, to obtain the permissions to open a privileged port (port 80). However, I have a kind test which creates a local Kubernetes…
Robin Green
  • 32,079
  • 16
  • 104
  • 187
-1
votes
1 answer

Exposing a local kubernetes cluster running on a VM via the host VMs IP

I have a kind kubernetes cluster running on a ubuntu VM, I have created this cluster following the documentation for enabling kubernetes ingress functionality. This cluster has several services running inside of it, of these services there are 3…
-1
votes
2 answers

How can I use LoadBalancer in BareMetal -KinD?

My question is totally simple that is related to kubernetes awesome tool called KinD. I am using KinD for my flask application: import os import requests from flask import Flask from jaeger_client import Config from flask_opentracing import…
Penguen
  • 16,836
  • 42
  • 130
  • 205
-2
votes
1 answer

Getting unknown API version when starting kind cluster

Trying to get kind running on Intel OSX 13.3.1 just to learn more about kubernetes. Installed kubectl and kind using homebrew. kubectl version 1.25.4 kind version 0.18.0 Docker Desktop 4.18.0 I can stand up the default cluster with kind create…
-2
votes
1 answer

Traffic is not reaching to POD in Kubernetes Cluster

I have a local Kubernetes Running on Windows using Docker. In My Windows Host I am running a Process on Port 4000. Inside my POD I am doing curl windows_host_ip:4000 But not able to get the response. Connection from POD is being established but the…
Bhupendra Nath
  • 321
  • 1
  • 2
  • 10
1 2 3
10
11