Questions tagged [keda]
119 questions
4
votes
1 answer
Enforced scaled to zero with Keda
With plain HPAs it is possible to scale the underlying deployment manually to zero. This is required for eg. maintainance tasks. When scaling back to a value greater zero, the scaling continues as before.
This is the command executed: kubectl scale…

Dag
- 10,079
- 8
- 51
- 74
3
votes
0 answers
Keda not scaling more than 1 Pod
I recently deployed keda-2.0.0.yaml to scale my sidekiq workers based on its queue.
Thay my setup:
apiVersion: keda.sh/v1alpha1
kind: TriggerAuthentication
metadata:
name: redis-auth
namespace: xxxx
spec:
secretTargetRef:
- parameter:…

Macaulay Dias Souza
- 31
- 3
2
votes
2 answers
Facing issue in using github.com/kedacore/keda/pkg/apis/keda/v1alpha1
I am using Keda along with client-go in golang. I am facing issue in getting the imported package
This is the error message
go get github.com/kedacore/keda/pkg/apis/keda/v1alpha1
go: downloading github.com/kedacore/keda v1.5.0
go:…

Shiva Raman Pandey
- 25
- 4
2
votes
1 answer
AKS with Keda: pod are removed during execution
I tried Keda with AKS and I really appreciate when pod are automatically instanciate based on Azure Dev Ops queue job for release & build.
However I noticed something strange and often AKS/Keda remove pod while processing which makes workflow…

terry
- 363
- 4
- 15
2
votes
1 answer
KEDA Error: Got empty response for: external.metrics.k8s.io/v1beta1
I am getting below error after installing keda in my k8s cluster and created some scaled object...
whatever command i am running EG: " kubectl get pods" i am getting response with below error message..
How to get rid of below error message.
E0125…

Senthilraj Chettykumar
- 51
- 2
- 6
2
votes
1 answer
KEDA scaling on CPU metrics
I have a deployment.yaml of application with CPU and memory specified as :
resources:
requests:
memory: "10Gi"
ephemeral-storage: 2Gi
cpu: 50m
limits:
memory: "12Gi"
…

Scientist
- 1,458
- 2
- 15
- 31
2
votes
1 answer
Kubernetes enabling or disabling Keda and HPA
Is there a 'master switch' to enable/disable Keda and HPA?
I can enable/disable scaling rules by editing the replicacount to 0, but is there a main enalbe/disable field?
cooldownPeriod: 1800
maxReplicaCount: 8
minReplicaCount: 2
…

Ahmad Masalha
- 379
- 2
- 9
2
votes
1 answer
How to exit a node script in order to 'complete' a kubernetes job
I'm currently using Process.exit(0) to exit my node.js script that is running inside a docker container as a kubernetes Job. This doesn't seem to be 'completing' the job which stops the KEDA pod autoscaler from removing the pod.
How would I exit the…

Happy Machine
- 987
- 8
- 30
2
votes
1 answer
How to make Celery worker consume single task and exit
How do I make the celery -A app worker command to consume only a single task and then exit.
I want to run celery workers as a kubernetes Job that finishes after handling a single task.
I'm using KEDA for autoscaling workers according to queue…

WolfThreeFeet
- 73
- 7
2
votes
1 answer
KEDA - how does redis listLength scale pods (in detail)
The docs for listLength in the redis trigger are quite confusing. From reading around and experimenting it seems like listLength is the threshold over which a new pod should be created. Ie. if the listLength is 16, a pod will be spun up when there…

Happy Machine
- 987
- 8
- 30
2
votes
0 answers
Kubernetes Pod Affinity Topology Key for custom label
We're trying to deploy some Keda Scaled Jobs to our Kubernetes Cluster. We always want one node per job. I'm trying to configure a podAntiAffinity rule to enforce that a job doesn't get deployed to a node where another job (pod) with the given…

Chuck Spencer
- 103
- 1
- 6
2
votes
1 answer
Azure Functions Kubernetes cannot find local.settings.json
I am trying to publish my Azure Functions App to Kubernetes but I am getting the following error when I run this command
func kubernetes deploy --name my-function-api --namespace default --registry mycontainerregistry/docker-azure-function…

Lenny D
- 1,734
- 4
- 22
- 43
2
votes
1 answer
How to work with Keda using Azure pod identity
I'm trying to use pod identity in conjunction with KEDA to access some Azure resources, Azure Service Bus & Keyvaults to be precise.
I noticed the aadpodbinding should be set when deploying the operator according to these instructions. I am probably…

Kim Lindqvist
- 363
- 4
- 15
1
vote
0 answers
Unable to connect KEDA to AWS MSK with scaled object
I have created an AWS MSK cluster with 3 brokers. The authentication to the cluster is with IAM role-based authentication and SASL/SCRAM authentication. I already use MSK within my microservices and I send and receive events in the brokers. Now I…

Maor agai
- 221
- 1
- 3
- 11
1
vote
0 answers
keda-operator-metrics-apiserver: no matching metrics found for s0-prometheus-http_requests_in_progress
I am getting below error on keda-operator-metrics-apiserver pod logs when trying to scale using KEDA.
E0602 05:26:23.321583 1 status.go:71] apiserver received an error that is not an metav1.Status:…

Bishan
- 15,211
- 52
- 164
- 258