Questions tagged [keda-scaledjob]

19 questions
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:…
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 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
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
1
vote
1 answer

Kubernetes KEDA scaledjob is not responding

We are using azuredevops agent configured in AKS cluster with the Keda scaledjobs. The AKS node pool sku is Standard_E8ds_v5 (1 instance) and we are using persistent volume mounted on azure disk . the scaledJob property is as below. apiVersion:…
Vowneee
  • 956
  • 10
  • 33
1
vote
1 answer

Keda with prometheus integration

Below are the setup details: keda installed, prometheus deployed, through application using below scaled object template for hpa: keda: triggers: - metadata: metricName: container_memory_usage query:…
sush
  • 95
  • 2
  • 8
1
vote
1 answer

Scaledown is not happening for KEDA with AzureAKS

We are using KEDA for autoscaling our AzureDevops agent in AKS cluster. We used scaledJob object for scaling purpose as SclaedObject deployment was showing unexpected behaviors while executing pipelines and was getting scaled down even when…
1
vote
1 answer

Keda Operator Access Denied for SQS

I am using SQS scaler for Keda to scale a deployment. At present I am using operator based identityOwner for scaledObject. I have build an IAM role with following permissions and trust relationship :- permission { "Version": "2012-10-17", …
Vineet
  • 723
  • 4
  • 12
  • 31
1
vote
1 answer

Keda AzureMonitor trigger giving no activeDirectoryClientId given error

I was trying to configure Azure Monitor Scaler for keda autoscaling. In my scaled object I have specified the Clientid and password for the application. In the Azure portal as well, I can see the clientid , password and tenantid . But after…
1
vote
4 answers

HPA scale-down-kubernetes pods

My Requirement is Scale up PODS on Custom metrics like pending messages from queue increases pods has to increase to process jobs. In kubernetes Scale up is working fine with prometheus adapter & prometheus operator. I have long running process in…
Santhoo Kumar
  • 61
  • 1
  • 9
0
votes
1 answer

Keda servicebus: All the messages getting processed by some pods of keda scaledJob

I am using Azure Kubernetes Service(AKS) platform and used KEDA "ScaledJob" for long running job. In this, Azure Service Bus Queue trigger has been used to auto trigger Jobs. Now while I am adding messages in Azure Service Bus, KEDA will auto…
0
votes
1 answer

KEDA RabbitMQ Scaler - Issue in connecting with the management plugin host on HTTPS

We are configuring KEDA to auto-scale our deployment based on the RabbitMQ queue. Our setup makes TLS mandatory, and we have configured the RabbitMQ management plugin on HTTPS. We are trying to connect with the RabbitMQ host on https…
0
votes
0 answers

Unable to scale KEDA httpscaledobject ? Scalar pod is erroring/crashing?

I am working on POC and trying to scale the HTTP trigger azure function hosted on Kubernetes POD. While applying the httpscaledobject the KEDA scalar pod crashes. I tried to look log, but it not giving a clear message. Sharing the Service URI -…
0
votes
1 answer

Keda ScaledJob kafka-trigger scaling incorrectly

Keda configuration is as below apiVersion: keda.sh/v1alpha1 kind: ScaledJob metadata: name: job-message-consumer spec: jobTargetRef: parallelism: 1 template: spec: containers: - name: {{…
Zaks
  • 668
  • 1
  • 8
  • 30
0
votes
1 answer

How to restart KEDA

After I edited a scaledjob, how to restart KEDA with the new config? I've tried to scale it down and up, but seems it doesn't impact the settings: kubectl scale deploy -n keda keda-operator --replicas=0 kubectl scale deploy -n keda keda-operator…
1
2