Questions tagged [kubernetes]
Kubernetes is an open source orchestration system for Docker containers. It handles scheduling onto nodes in a compute cluster and actively manages workloads to ensure that their state matches the users declared intentions. Using the concepts of "labels" and "pods", it groups the containers which make up an application into logical units for easy management and discovery.
2,824 questions
0
votes
1
answer
69
views
kubernetes: how to see this debian container?
Fast question. Nerdctl report this container running
nerdctl --namespace k8s.io image ls|grep -i debian
debian 13122025 2d9f95f25185 8 minutes ago linux/...
1
vote
1
answer
162
views
Kubernetes controller stuck at 0/1, no new pods can be scheduled
I changed the Immich image version number in my manifest files (synced and deployed via ArgoCD). However, the pod was still showing up as "terminating" and didn't delete until I forced its ...
0
votes
0
answers
69
views
How do I set up data transfer from one domain to another in ingress k8s?
Good afternoon, it's tedious for me to configure ingress so that the result from the address https://s3.animori.tv/animori/public/robots.txt issued at the address https://animori.tv/robots.txt at the ...
1
vote
0
answers
89
views
K3s on VPS: Error 404 when using nginx ingress class for Portainer
I have 2 VPS (with public IPs) connected together using Wireguard VPN and I am running k3s on them, making a cluster. (That works, I think).
I want to manage it using Portainer.IO Comunity edition. I ...
1
vote
0
answers
50
views
Slow upload speed when when request buffering is off on a kubernetes nginx ingress
I have a Nginx Ingress in Kubernetes that serves large requests (up to 500MB) from the public internet.
When I disable request buffering nginx.ingress.kubernetes.io/proxy-request-buffering: "off&...
0
votes
0
answers
85
views
AWS CNI Plugin - failed (add): add cmd: failed to assign an IP address to container
I have two /27 subnets hosting the eks cluster, with a nodegroup containing two t3.medium nodes created by LaunchTemplate with the max-pods directive set to 110. After deploying a few pods, I noticed ...
0
votes
0
answers
43
views
504 Gateway timout for all new requests at specific minute each hour in Kubernetes cluster
We're running our own Kubernetes cluster and it works well for a while but at minute :03 each hour, public web services stop responding (504 gateway timeout) and some commands such as kubectl top ...
0
votes
0
answers
51
views
FALCO webhook events not forwarded to sidekick and not visible in sidekick UI
Using the default Falco helm chart i installed Falco and sidekick UI firstly without k8saudit plugin.
After updating the configmaps accordingly to install, configure and load k8saudit, daemonset ...
2
votes
0
answers
132
views
Kubernetes pod unable to create symbolic link on Ubuntu Samba share
My Ubuntu Desktop Ubuntu 24.04 LTS runs a Samba share using this smb.conf:
[global]
allow insecure wide links = yes
unix extensions = no
follow symlinks = yes
wide links = yes
I am running k3s ...
0
votes
0
answers
91
views
Difference in CORS handling between gateway API and Nginx Ingress
I had an issue with TLS configuration with Traefik Gateway API so I switched to Nginx Ingress, but I had problem in configuration.
I have the backend in Spring Boot
And had CORS configuration only ...
0
votes
0
answers
117
views
Kolla OpenStack magnum coe template creation binascii.Error: Incorrect padding
I am trying to create COE kubernetes template in magnum, during creation of template I am using below parameters.
openstack coe cluster template create strategy
--coe kubernetes --public --tls-...
0
votes
0
answers
55
views
Timed out waiting for the condition on pods/argocd... in kubernetes
I have a problem inside my cloud-init that I cannot get over, here is slice of my control plane cloud-init.yml
- curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
- ...
0
votes
2
answers
234
views
Kubernetes to reschedule pods when cluster changes?
I have a Kubernetes cluster that runs services getting used rarely. For efficiency it runs all pods on a small node - the small node is always up. Every now and then a big node becomes available and ...
0
votes
0
answers
47
views
How can I improve this cloud-init so it will apply CNI in correct order without using sleep
Here is snippet of my controlplane cloud-init I have problem with
- export KUBECONFIG=/etc/kubernetes/admin.conf
- kubectl create -f https://raw.githubusercontent.com/projectcalico/calico/v3.30.3/...
0
votes
0
answers
66
views
What is changing the 200 status code from my /health endpoint to 204?
I am using GKE and Google Cloud Load Balancers. I am deploying pods, services, and an ingress to GKE. The ingress is annotated with kubernetes.io/ingress.class: gce, which triggers the automatic ...