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.

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.

For more details, visit the official Kubernetes page.

2352 questions
0
votes
1 answer

Not able to access the ejabberd server even in ejabberdctl if ejabberdnode name is changed in GCP deployment using environment variable

As a first step in using ejabberd cluster in GCP, I tried to change the node name using the environment variable "ERLANG_NODE_ARG=ejabberd@main" as mentioned in the readme file. But I am not able to access the ejabberd server in the service. I tried…
0
votes
0 answers

SonarQube Installation Issue - “Fail to unzip plugin [python]”…”Operation not permitted”

I'm having an issue where SonarQube 10.1.0 Community seems to be having a difficult starting for the first time. I've set it up using Kubernetes (K3s v1.27.1) and adapted the official SonarQube Helm chart to be able to use it with my own…
0
votes
1 answer

Kubernetes: How/where to log when Secrets are deleted?

Does kubernetes capture - in the event log or elsewhere - when Secrets are deleted? I'm not seeing this showing up in the event log: kubectl get events --field-selector involvedObject.kind=Secret --watch and I'm not finding it in…
Michael Martinez
  • 2,645
  • 3
  • 24
  • 35
0
votes
1 answer

Create Rancher API Key with kubectl

Given access to the kubernetes cluster, but no API key, how can I programatically create a API key for rancher server? The method described in documentation here requires a password login an a web browser. I would like to get the same outcome…
d_inevitable
  • 209
  • 1
  • 7
  • 19
0
votes
0 answers

Why does npm install fail with Assertion failed: (fd > STDERR_FILENO) using buildah?

Hey I have a Dockerfile for a project that I want to build inside of a Gitlab ci/cd pipeline running on Kubernetes. The Image is built inside a buildah container from quay.io, but while the project compiles locally, it does not for the…
iaquobe
  • 101
0
votes
1 answer

Kubernetes component status reports etcd as unhealthy

I have a 3 node kube control network setup with etcd, kube-apiserver, kube-control-manager and kube-scheduler running. When I check the status of the components it says etcd is unhealthy, but etcd reports that is healthy > kubectl get…
George
  • 113
  • 1
  • 2
  • 7
0
votes
1 answer

Creating a GKE node pool results in Error 429: Too many operations: cluster "testcluster" hits the concurrent operations quota 1

While creating a nodepool with terraform, we are seeing the following error 2023-06-29 15:49:25,017 - Error: error creating NodePool: googleapi: Error 429: Too many operations: cluster "testcluster" hits the concurrent operations quota 1, please try…
0
votes
0 answers

"[kubelet-check]" kubelet not running when: kubeadm init

When the command: kubeadm init, is commited eventually this error pops up: [kubelet-check] The HTTP call equal to 'curl -sSL http://localhost:10248/healthz' failed with error: Get "http://localhost:10248/healthz": dial tcp 127.0.0.1:10248: connect:…
0
votes
1 answer

Why do my AKS node have public IP even though "enableNodePublicIP" is set to false?

I have an AKS cluster where I added a new node pool. While creating the node pool, I set the option "Enable public IP per node" as Disabled. However, I still notice that my nodes in the VMSS have a public IP. I am looking for a possible explanation…
faizan
  • 98
  • 4
0
votes
0 answers

Migrating Snipe-IT asset Management from Docker to K8s

I have been running Snipe-it app (a Laravel based asset management software) on my Docker environment since a year ago, now I want to migrate it to K8s with its existing data, to move the data of the DB and Snipe app, I have created two persistent…
0
votes
0 answers

How to prevent External Secrets from modifying existing k8s secrets if it's having difficulty with the secret store

We're using the latest external secrets operator from external-secrets.io to get secrets from Vault and inject them into kubernetes. We had a situation where a Vault KV engine was upgraded from v1 to v2. This caused External Secrets to no longer be…
Michael Martinez
  • 2,645
  • 3
  • 24
  • 35
0
votes
0 answers

How can I fix a vagrant machine that is corrupting after a certain amount of time?

I am new to vagrant virtual machines. I set up a vagrant machine with 2 nodes for Kubernetes. 1 master and 1 node. Everything is being ok but after a certain amount of time the cluster crashes and when I try to access to vagrant master machine is…
0
votes
0 answers

HTTP 502/404 with Grafana in Kubernetes, using AGIC

I'm trying to deploy Grafana in Azure Kubernetes service (AKS), through Helm. I'm using the Helm charts provided by Bitnami. I've been following this Microsoft tutorial to set up the application gateway ingress controller. The pods are running, and…
0
votes
2 answers

Unable to initialize Kubernetes cluster upon sudo kubeadm init line command

Trying to deploy Kubernetes on AWS EC2 instance. I'm seeing the following errors/warning when running sudo kubeadm init --pod-network-cidr=10.244.0.0/16 --ignore-preflight-errors=all Errors: [WARNING CRI]: container runtime is not running: output:…
0
votes
1 answer

Local Kubernetes Dns failure on one of three worker nodes

I have a problem with my Kubernetes on-premise cluster created with kubespray. I don't know why, but the dns resolutions is not working on one of my three nodes. I try to mount a debug container to launch a simple nslookup inside, and only from the…