59,812 questions
0
votes
0
answers
44
views
Kubernetes CRD unable to make an api call to Kubernetes default service despite egress ipblok rule in Network policy [closed]
I have installed the CRD External secrets operator to pull secrets from AWS parameter store and use them in the kubernetes cluster. I have secured the namespace external-secrets with the following two ...
-3
votes
0
answers
33
views
eksctl EKS cluster creation always fails with exceeded max wait time for StackCreateComplete waiter [closed]
I am trying to create an EKS cluster using eksctl, but the process always gets stuck during managed node group creation and finally fails with:
[✖] exceeded max wait time for StackCreateComplete ...
Advice
1
vote
3
replies
54
views
Since KYAML is a subset of YAML why does it need to be "enabled"?
According to https://kubernetes.io/docs/reference/encodings/kyaml/ KYAML is "a safer and less ambiguous subset of YAML". The page goes on to say KYAML was "initially introduced in ...
Tooling
0
votes
2
replies
43
views
KM Worker vs KM Master node [ is I can have pods in KM Master ? ]
I am newbie to Kubernetes.
Upto what I know a Virtual Machine or a actual Computer Machine can be configured as Kubernetes node and node can have several pod
Being said we can configure Kubernetes ...
Best practices
0
votes
2
replies
44
views
Can we control the total resouces used by Spark with its Kubernetes operator?
We are currently planning a migration to Kubernetes with our Spark applications.
Until this point we used a standalone cluster where we submitted multiple applications, with dynamic resource ...
-5
votes
0
answers
98
views
Intermittent 502/504 errors in Kubernetes (Traefik + FastAPI/Uvicorn), worse under load spikes [closed]
I have a FastAPI service running on Kubernetes behind Traefik ingress (Previously had Nginx but the issue is consistent).
Setup
FastAPI (Uvicorn, ~8 workers)
Kubernetes limits: 500m CPU / 1Gi memory
...
-2
votes
2
answers
150
views
helm create secret from parsing external ini file
I need to create secret from external INI file content by parsing the keys and values from the file without the section. For example, with the following secret file,
apiVersion: v1
kind: Secret
type: ...
Best practices
0
votes
6
replies
115
views
Spark Structured Streaming from many S3 buckets with different customer credentials and schemas
have a Spark-on-Kubernetes ingestion use case and I’m trying to understand the right design for Spark Structured Streaming.
Each customer has their own S3 bucket and their own credentials. Inside each ...
-3
votes
1
answer
91
views
Kubernetes + Longhorn: New worker node joined but workloads not scheduled (only system pods running) [closed]
I have a Kubernetes cluster using Longhorn for storage. I recently joined a new worker node to the cluster, and all prerequisites for Longhorn appear to be satisfied on that node.
However, I’m facing ...
Best practices
0
votes
2
replies
105
views
Spring gRPC multiple channels in Kubernetes
I am looking for best practices on how to implement horizontal architecture with the latest Spring gRPC [1] in Kubernetes.
In my Kubernetes cluster, I have one main service, which connects to multiple ...
0
votes
0
answers
109
views
AKS deployment consistently fail due to readiness probe status code 500
While we are doing the recent deployment testing on one of our .NET code implementation over a web application, we found that the readiness probe consistently starts to fail with code 500.
Here is the ...
Best practices
1
vote
1
replies
119
views
Docker Project: A to Z process step by step
Would you recommend any free complete project has been created using docker which I can practice to learn in detail? I looked various sources but found limited resources like half or magnetic part of ...
1
vote
1
answer
65
views
Handling Unexpected Disconnects in DLMS
I am using the Gurux DLMS pyton client inside a Kubernetes pod to connect to a DLMS meter using HLS SHA256 authentication.
The client is able to successfully establish a connection and read data from ...
2
votes
1
answer
167
views
Getting a list of events for a pod as it starts
I have a TypeScript front-end which uses a Python 3.11 back-end to launch Docker images into a Kubernetes cluster (using kubernetes 29.3.0). As part of that process, it calls an API to get the status ...
5
votes
0
answers
353
views
How can I both fetch all Kubernetes objects as a snapshot and stream changes?
I'm trying to figure out the "right" way to monitor for changes on a Kubernetes API server when I also need to maintain a snapshot of existing objects.
I need my code to know when it has ...