185 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
-1
votes
1
answer
436
views
We are getting below issue while creating kind cluster using command : kind create cluster
]# kind create cluster
Creating cluster "kind" ...
β Ensuring node image (kindest/node:v1.33.1) πΌ
β β Preparing nodes π¦
β Preparing nodes π¦
β Writing configuration π
β Starting ...
0
votes
0
answers
73
views
Istio Gateway API on localhost
I'm trying to deploy the most simple demo app. Two services foo-service and bar-service - both listen on 8080.
Now I want to visit http://localhost/foo and http://localhost/bar and see them.
Here's ...
1
vote
1
answer
201
views
APISIX ingress controller on Kind cluster not routing requests correctly
I am trying to setup APISIX gateway ingress controller enabled application (spring-boot) on a local KIND kubernetes cluster.
Here are the steps that I followed,
I was able to succesfully install and ...
0
votes
0
answers
53
views
how to enable cpu_rt_runtime in kubernetes
I want the defalut container(contained) in the k8s pod to use the parameter cpu-rt-runtime, so I modified the following part of the k8s code to test it
staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/...
0
votes
1
answer
108
views
How the K8s service port mapping works?
I have successully configured an external load balancer service with Kind (Kubernetes in Docker) using kind-cloud-provider. I can access the service using http://localhost:63238
Here is my yaml file (...
0
votes
1
answer
455
views
Using ingress controller with local kind deployment: is it feasible to access all services under one root URL?
I have a local kind deployment which deploys 3 services, MLflow, Katib and a K8s dashboard. I can deploy these as services and access them via port forwarding to each service and visiting the url in ...
0
votes
0
answers
76
views
Spring Boot can`t connect to Kafka in Kubernates
Im new in kafka and kubernates. Im using bitnami chart to deploy kafka in my kind cluster kubernetes (on my own server). Im trying to connect to kafka from my spring boot application, that started on ...
0
votes
1
answer
62
views
Drasi (Change data processing) not working as expected for "StoredProc" reaction
Source.yaml file:
apiVersion: v1
kind: Source
name: hello-world
spec:
kind: PostgreSQL
properties:
host: mydb1.amazonaws.com
user: meeran
port: 5432
ssl: false
password: ...
0
votes
1
answer
174
views
Can not create the most simple kubernetes cluster because of incorrect apiVersion for kind
I am following this guide to create a simple kubernetes cluster on my machine: https://www.appvia.io/blog/tutorial-deploy-kubernetes-cluster
When trying to run kind create cluster --name mycluster --...
0
votes
1
answer
189
views
How to expose a Kubernetes pod running under Azure VM
I have an Azure VM running ubuntu 22.04, I installed kind Kubernetes cluster as a Docker container inside the VM and deployed few pods on the k8s.
Now I would like to access some of the pods via ...
0
votes
1
answer
202
views
How to connect to MySQL server that requires ssh tunnel from Kubernetes pod?
I would like to know which is the best way to reach a MySQL database that is behind a ssh server.
So from DataGrip or DBeaver I need to use a ssh server to be inside the network to reach MySQL ...
0
votes
0
answers
145
views
The resource limit isn't being enforced on the Kubernetes cluster
I'm studying Kubernetes with a Kind cluster on my local machine. When I installed several apps using Helm charts, they consumed a lot of resources and shut down easily.
So, I set resource requests/...
0
votes
0
answers
35
views
Quarkus Kubernetes 3.12.3 does not add annotation to ingress in kind.yml
I have a quarkus application that defines kubernetes custom ingress annotation :
quarkus.kubernetes.ingress.annotations."nginx.ingress.kubernetes.io/rewrite-target"=/2γγ«
That's not an ...
1
vote
0
answers
114
views
Unable to install couchbase server on kubernetes cluster (memcached issue)
I am trying to deploy couchbase server on my local kind cluster (podman) using the offical couchbase docker image.
This is my couchbase-cluster.yaml
apiVersion: apps/v1
kind: Deployment
metadata:
name:...
0
votes
0
answers
148
views
Access kind cluster services from another Docker container
I've got a Kubernetes kind (https://kind.sigs.k8s.io/) cluster running locally and I put Postgres HA on it:
helm install postgres bitnami/postgresql-ha
That's all started up, and seems to be in the ...