Skip to content

fix(scaling): guard GetCurrentReplicas against nil ScaleTargetGVKR#7661

Merged
rickbrouwer merged 6 commits into
kedacore:mainfrom
ggarb:fix-getcurrentreplicas-nil-gvkr
Jun 19, 2026
Merged

fix(scaling): guard GetCurrentReplicas against nil ScaleTargetGVKR#7661
rickbrouwer merged 6 commits into
kedacore:mainfrom
ggarb:fix-getcurrentreplicas-nil-gvkr

Conversation

@ggarb

@ggarb ggarb commented Apr 17, 2026

Copy link
Copy Markdown
Contributor

Problem

At ~10k ScaledObjects being created at 10/s, the KEDA operator panics:

panic: runtime error: invalid memory address or nil pointer dereference
pkg/scaling/resolver/scale_resolvers.go:731 GetCurrentReplicas
pkg/scaling/executor/scale_scaledobjects.go:44 RequestScale
pkg/scaling/scale_handler.go:282 checkScalers
pkg/scaling/scale_handler.go:199 startScaleLoop

Root cause is the same informer-cache race described in #4389 / tracked
in #4955: scaledObject.Status.ScaleTargetGVKR can be nil when the
scale loop first invokes GetCurrentReplicas. The existing code
dereferences .Group / .Kind on the nil pointer, crashing the whole
operator process and taking down every other scale loop with it.

ResolveScaleTargetPodSpec already defends against this race
(scale_resolvers.go L103-L119). GetCurrentReplicas does not.
This PR applies the same pattern.

Fix

If Status.ScaleTargetGVKR is nil on entry, re-fetch the ScaledObject
via the client. If it is still nil after re-fetch, return a descriptive
error instead of panicking.

Repro context

Observed during a 10k-ScaledObject KWOK load test at Netflix, after
raising --kube-api-qps/burst to eliminate client-go throttling
(previous 1k bottleneck). Once client-side throttling was gone, fast
ScaledObject creation widened the cache-race window enough that the
nil-pointer panic fired reliably before the 750th object was created.

Tests

  • Added TestGetCurrentReplicas_NilScaleTargetGVKR with three cases:
    • nil on input, re-fetch succeeds with populated GVKR → returns
      correct replica count (Deployment path)
    • nil on input, re-fetch also returns nil → returns a descriptive
      "probably invalid ScaledObject cache" error
    • nil on input, re-fetch fails (SO missing) → returns fetch error
  • All existing tests in ./pkg/scaling/... pass.

Fixes / refs

@ggarb ggarb requested a review from a team as a code owner April 17, 2026 17:32
@github-actions

Copy link
Copy Markdown

Thank you for your contribution! 🙏

Please understand that we will do our best to review your PR and give you feedback as soon as possible, but please bear with us if it takes a little longer as expected.

While you are waiting, make sure to:

  • Add an entry in our changelog in alphabetical order and link related issue
  • Update the documentation, if needed
  • Add unit & e2e tests for your changes
  • GitHub checks are passing
  • Is the DCO check failing? Here is how you can fix DCO issues

Once the initial tests are successful, a KEDA member will ensure that the e2e tests are run. Once the e2e tests have been successfully completed, the PR may be merged at a later date. Please be patient.

Learn more about our contribution guide.

@keda-automation keda-automation requested a review from a team April 17, 2026 17:32
@snyk-io

snyk-io Bot commented Apr 17, 2026

Copy link
Copy Markdown

Snyk checks have passed. No issues have been found so far.

Status Scan Engine Critical High Medium Low Total (0)
Open Source Security 0 0 0 0 0 issues

💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse.

@ggarb ggarb force-pushed the fix-getcurrentreplicas-nil-gvkr branch from 3d1ea68 to 4414c85 Compare April 17, 2026 17:46
@ggarb ggarb force-pushed the fix-getcurrentreplicas-nil-gvkr branch 2 times, most recently from f55e568 to db90396 Compare April 23, 2026 15:11

@JorTurFer JorTurFer left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the fix!
As now it's starting to be in multiple places, does it make sense to extract that code into a funciton that we can reuse and implicitly tracks all the usages of this hack?

When the informer cache races with ScaledObject creation,
scaledObject.Status.ScaleTargetGVKR can be nil at the point the scale
loop invokes GetCurrentReplicas. The current code then dereferences
.Group / .Kind on a nil pointer and panics, taking down the operator.

This applies the same defensive pattern already used in
ResolveScaleTargetPodSpec: re-fetch the ScaledObject via the client
when Status.ScaleTargetGVKR is nil, and if it is still nil after
re-fetch, return a descriptive error instead of panicking.

Observed in a 10k-ScaledObject KWOK load test where kube-burner
created ScaledObjects at 10/s; the cache-race window opened wide
enough that the panic fired reliably within the first 750 objects.

Refs: kedacore#4389, kedacore#4955, kedacore#6176

Signed-off-by: Greg Garber <[email protected]>
@ggarb ggarb force-pushed the fix-getcurrentreplicas-nil-gvkr branch from db90396 to 07cd22a Compare May 4, 2026 17:20
@keda-automation keda-automation requested a review from a team May 4, 2026 17:21
@rickbrouwer rickbrouwer added Awaiting/2nd-approval This PR needs one more approval review merge-conflict This PR has a merge conflict labels May 7, 2026
@rickbrouwer rickbrouwer removed the merge-conflict This PR has a merge conflict label May 25, 2026
@keda-automation keda-automation requested a review from a team May 25, 2026 06:52
@rickbrouwer

rickbrouwer commented May 25, 2026

Copy link
Copy Markdown
Member

/run-e2e
Update: You can check the progress here

passed tests: 176
Execution of tests/internals/trigger_authentication_validation/trigger_authentication_validation_test.go, has passed after "one" attempts
Execution of tests/internals/eventemitter/azureeventgridtopic/azureeventgridtopic_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_vhost/rabbitmq_queue_http_vhost_test.go, has passed after "one" attempts
Execution of tests/scalers/influxdb/influxdb_v2/influxdb_v2_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_service_bus_topic_regex/azure_service_bus_topic_regex_test.go, has passed after "one" attempts
Execution of tests/scalers/cron/cron_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_cloudwatch_pod_identity/aws_cloudwatch_pod_identity_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_dynamodb_pod_identity/aws_dynamodb_pod_identity_test.go, has passed after "one" attempts
Execution of tests/scalers/nats_jetstream/nats_jetstream_standalone/nats_jetstream_standalone_test.go, has passed after "one" attempts
Execution of tests/scalers/splunk/splunk_test.go, has passed after "one" attempts
Execution of tests/scalers/solr/solr_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_event_hub_aad_wi/azure_event_hub_aad_wi_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_event_hub_go_sdk/azure_event_hub_go_sdk_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_regex_vhost/rabbitmq_queue_http_regex_vhost_test.go, has passed after "one" attempts
Execution of tests/scalers/mssql/mssql_test.go, has passed after "one" attempts
Execution of tests/internals/replica_update_so/replica_update_so_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_cloudwatch_metric_stat/aws_cloudwatch_metric_stat_test.go, has passed after "one" attempts
Execution of tests/secret-providers/azure_keyvault_workload_identity/azure_keyvault_workload_identity_test.go, has passed after "one" attempts
Execution of tests/scalers/external_push_scaler_old_proto/external_push_scaler_old_proto_test.go, has passed after "two" attempts
Execution of tests/secret-providers/aws_identity_assume_role/aws_identity_assume_role_test.go, has passed after "one" attempts
Execution of tests/scalers/postgresql/azure_postgresql_flex_server_aad_wi/azure_postgresql_flex_server_aad_wi_test.go, has passed after "one" attempts
Execution of tests/scalers/activemq/activemq_test.go, has passed after "one" attempts
Execution of tests/scalers/dynatrace/dynatrace_test.go, has passed after "one" attempts
Execution of tests/internals/polling_cooldown_so/polling_cooldown_so_test.go, has passed after "one" attempts
Execution of tests/scalers/prometheus/prometheus_test.go, has passed after "one" attempts
Execution of tests/scalers/temporal/temporal_test.go, has passed after "one" attempts
Execution of tests/scalers/artemis/artemis_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_blob_aad_wi/azure_blob_aad_wi_test.go, has passed after "one" attempts
Execution of tests/scalers/predictkube/predictkube_test.go, has passed after "one" attempts
Execution of tests/internals/scaling_strategies/eager_scaling_strategy_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_service_bus_queue_aad_wi/azure_service_bus_queue_aad_wi_test.go, has passed after "one" attempts
Execution of tests/internals/cloudevent_source/cloudevent_source_test.go, has passed after "one" attempts
Execution of tests/scalers/influxdb/influxdb_v3/influxdb_v3_test.go, has passed after "one" attempts
Execution of tests/scalers/elasticsearch/elasticsearch_test.go, has passed after "one" attempts
Execution of tests/internals/pause_scale_in/pause_scale_in_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_event_hub_dapr/azure_event_hub_dapr_test.go, has passed after "one" attempts
Execution of tests/scalers/mongodb/mongodb_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_cloudwatch_min_metric_value/aws_cloudwatch_min_metric_value_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_regex_aad_wi/rabbitmq_queue_http_regex_aad_wi_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_dynamodb_streams_pod_identity_eks/aws_dynamodb_streams_pod_identity_eks_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_service_bus_topic_aad_wi/azure_service_bus_topic_aad_wi_test.go, has passed after "one" attempts
Execution of tests/scalers/kubernetes_workload/kubernetes_workload_test.go, has passed after "one" attempts
Execution of tests/scalers/etcd/etcd_cluster_auth/etcd_cluster_auth_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_service_bus_queue/azure_service_bus_queue_test.go, has passed after "one" attempts
Execution of tests/secret-providers/azure_workload_identity_user_assigned/azure_workload_identity_user_assigned_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_service_bus_topic/azure_service_bus_topic_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_dynamodb_pod_identity_eks/aws_dynamodb_pod_identity_eks_test.go, has passed after "one" attempts
Execution of tests/scalers/graphite/graphite_test.go, has passed after "two" attempts
Execution of tests/scalers/aws/aws_cloudwatch_ignore_null_values_false/aws_cloudwatch_ignore_null_values_false_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_sqs_queue/aws_sqs_queue_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_amqp/rabbitmq_queue_amqp_test.go, has passed after "one" attempts
Execution of tests/scalers/gcp/gcp_prometheus_workload_identity/gcp_prometheus_workload_identity_test.go, has passed after "one" attempts
Execution of tests/internals/idle_replicas/idle_replicas_test.go, has passed after "one" attempts
Execution of tests/scalers/pulsar/pulsar_non_partitioned_topic/pulsar_non_partitioned_topic_test.go, has passed after "one" attempts
Execution of tests/internals/events/events_test.go, has passed after "one" attempts
Execution of tests/scalers/gcp/gcp_cloud_tasks_workload_identity/gcp_cloud_tasks_workload_identity_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_monitor_aad_wi/azure_monitor_aad_wi_test.go, has passed after "two" attempts
Execution of tests/scalers/memory/memory_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_eqct/rabbitmq_queue_http_eqct_test.go, has passed after "one" attempts
Execution of tests/scalers/external_scaler_sj/external_scaler_sj_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_managed_prometheus_pod_identity/aws_managed_prometheus_pod_identity_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_regex/rabbitmq_queue_http_regex_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_event_hub_dapr_wi/azure_event_hub_dapr_wi_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_kinesis_stream_pod_identity_eks/aws_kinesis_stream_pod_identity_eks_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http/rabbitmq_queue_http_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_dynamodb_streams/aws_dynamodb_streams_test.go, has passed after "one" attempts
Execution of tests/scalers/ibmmq/ibmmq_test.go, has passed after "one" attempts
Execution of tests/scalers/pulsar/pulsar_partitioned_topic/pulsar_partitioned_topic_test.go, has passed after "one" attempts
Execution of tests/scalers/arangodb/arangodb_test.go, has passed after "one" attempts
Execution of tests/internals/restore_original/restore_original_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_aad_wi/rabbitmq_queue_http_aad_wi_test.go, has passed after "one" attempts
Execution of tests/internals/initial_delay_cooldownperiod/initial_delay_cooldownperiod_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_cloudwatch_pod_identity_eks/aws_cloudwatch_pod_identity_eks_test.go, has passed after "one" attempts
Execution of tests/internals/pause_scaledobject/pause_scaledobject_test.go, has passed after "one" attempts
Execution of tests/scalers/external_scaler_so/external_scaler_so_test.go, has passed after "two" attempts
Execution of tests/scalers/azure/azure_event_hub_blob_metadata/azure_event_hub_blob_metadata_test.go, has passed after "one" attempts
Execution of tests/scalers/splunk_observability/splunk_observability_test.go, has passed after "one" attempts
Execution of tests/internals/cache_metrics/cache_metrics_test.go, has passed after "one" attempts
Execution of tests/secret-providers/trigger_auth_secret/trigger_auth_secret_test.go, has passed after "one" attempts
Execution of tests/internals/pause_scale_out/pause_scale_out_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_cloudwatch/aws_cloudwatch_test.go, has passed after "one" attempts
Execution of tests/internals/pause_scaledjob/pause_scaledjob_test.go, has passed after "one" attempts
Execution of tests/secret-providers/aws_identity_external_id/aws_identity_external_id_test.go, has passed after "one" attempts
Execution of tests/scalers/openstack_swift/openstack_swift_test.go, has passed after "one" attempts
Execution of tests/scalers/cassandra/cassandra_test.go, has passed after "one" attempts
Execution of tests/secret-providers/azure_keyvault/azure_keyvault_test.go, has passed after "one" attempts
Execution of tests/secret-providers/gcp_secret_manager_workload_identity/gcp_secret_manager_workload_identity_test.go, has passed after "one" attempts
Execution of tests/internals/scaled_job_validation/scaled_job_validation_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_queue_aad_wi/azure_queue_aad_wi_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_monitor/azure_monitor_test.go, has passed after "one" attempts
Execution of tests/internals/value_metric_type/value_metric_type_test.go, has passed after "one" attempts
Execution of tests/internals/file_based_auth/file_based_auth_test.go, has passed after "one" attempts
Execution of tests/internals/subresource_scale/subresource_scale_test.go, has passed after "one" attempts
Execution of tests/scalers/gcp/gcp_pubsub_workload_identity/gcp_pubsub_workload_identity_test.go, has passed after "one" attempts
Execution of tests/secret-providers/aws_secretmanager_pod_identity/aws_secretmanager_pod_identity_test.go, has passed after "one" attempts
Execution of tests/internals/replicaset_scale/replicaset_scale_test.go, has passed after "one" attempts
Execution of tests/scalers/couchdb/couchdb_test.go, has passed after "one" attempts
Execution of tests/internals/fallback/rollouts/fallback_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_kinesis_stream_pod_identity/aws_kinesis_stream_pod_identity_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_auth/rabbitmq_queue_http_auth_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_dynamodb_streams_pod_identity/aws_dynamodb_streams_pod_identity_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_queue/azure_queue_test.go, has passed after "one" attempts
Execution of tests/scalers/mysql/mysql_test.go, has passed after "one" attempts
Execution of tests/scalers/datadog/datadog_api/datadog_api_test.go, has passed after "one" attempts
Execution of tests/secret-providers/hashicorp_vault/hashicorp_vault_test.go, has passed after "three" attempts
Execution of tests/scalers/aws/aws_kinesis_stream/aws_kinesis_stream_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_service_bus_queue_regex/azure_service_bus_queue_regex_test.go, has passed after "one" attempts
Execution of tests/scalers/gcp/gcp_cloud_tasks/gcp_cloud_tasks_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_dpratio/rabbitmq_queue_http_dpratio_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_amqp_auth/rabbitmq_queue_amqp_auth_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_blob/azure_blob_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_log_analytics/azure_log_analytics_test.go, has passed after "one" attempts
Execution of tests/scalers/sumologic/sumologic_test.go, has passed after "one" attempts
Execution of tests/scalers/kubernetes_resource/kubernetes_resource_test.go, has passed after "one" attempts
Execution of tests/internals/custom_hpa_name/custom_hpa_name_test.go, has passed after "one" attempts
Execution of tests/internals/pause_scaledobject_explicitly/pause_scaledobject_explicitly_test.go, has passed after "one" attempts
Execution of tests/secret-providers/trigger_auth_bound_service_account_token/trigger_auth_bound_service_account_token_test.go, has passed after "one" attempts
Execution of tests/internals/status_update/status_update_test.go, has passed after "one" attempts
Execution of tests/internals/global_custom_ca/global_custom_ca_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_data_explorer/azure_data_explorer_test.go, has passed after "one" attempts
Execution of tests/internals/scaled_job_conditions/scaled_job_conditions_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_data_explorer_aad_wi/azure_data_explorer_aad_wi_test.go, has passed after "one" attempts
Execution of tests/scalers/external_push_scaler/external_push_scaler_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_cloudwatch_cross_account/aws_cloudwatch_cross_account_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_log_analytics_aad_wi/azure_log_analytics_aad_wi_test.go, has passed after "one" attempts
Execution of tests/scalers/nsq/nsq_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_managed_prometheus/aws_managed_prometheus_test.go, has passed after "one" attempts
Execution of tests/secret-providers/aws_secretmanager/aws_secretmanager_test.go, has passed after "one" attempts
Execution of tests/scalers/postgresql/postgresql_standalone/postgresql_test.go, has passed after "one" attempts
Execution of tests/internals/scaled_object_validation/scaled_object_validation_test.go, has passed after "one" attempts
Execution of tests/scalers/cpu/cpu_test.go, has passed after "one" attempts
Execution of tests/scalers/solarwinds/solarwinds_test.go, has passed after "one" attempts
Execution of tests/scalers/kafka/kafka_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_managed_prometheus/azure_managed_prometheus_aad_workload_identity/azure_managed_prometheus_aad_workload_identity_test.go, has passed after "one" attempts
Execution of tests/scalers/metrics_api/metrics_api_test.go, has passed after "one" attempts
Execution of tests/secret-providers/gcp_secret_manager/gcp_secret_manager_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_amqp_vhost/rabbitmq_queue_amqp_vhost_test.go, has passed after "one" attempts
Execution of tests/scalers/solace/solace_test.go, has passed after "one" attempts
Execution of tests/internals/pause_scale_in_restore/pause_scale_in_restore_test.go, has passed after "one" attempts
Execution of tests/internals/trigger_update_so/trigger_update_so_test.go, has passed after "one" attempts
Execution of tests/scalers/etcd/etcd_cluster/etcd_cluster_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_dget/rabbitmq_queue_http_dget_test.go, has passed after "one" attempts
Execution of tests/internals/min_replica_sj/min_replica_sj_test.go, has passed after "one" attempts
Execution of tests/internals/force_activation/force_activation_test.go, has passed after "one" attempts
Execution of tests/scalers/dynatrace_dql/dynatrace_dql_test.go, has passed after "one" attempts
Execution of tests/scalers/nats_jetstream/nats_jetstream_cluster/nats_jetstream_cluster_test.go, has passed after "one" attempts
Execution of tests/scalers/postgresql/postgresql_high_available/postgresql_ha_test.go, has passed after "one" attempts
Execution of tests/scalers/beanstalkd/beanstalkd_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_event_hub_blob_metadata_wi/azure_event_hub_blob_metadata_wi_test.go, has passed after "one" attempts
Execution of tests/internals/update_ta/update_ta_test.go, has passed after "one" attempts
Execution of tests/scalers/mssql/azure_mssql_aad_wi/azure_mssql_aad_wi_test.go, has passed after "one" attempts
Execution of tests/scalers/gcp/gcp_stackdriver_workload_identity/gcp_stackdriver_workload_identity_test.go, has passed after "two" attempts
Execution of tests/scalers/aws/aws_sqs_queue_pod_identity_eks/aws_sqs_queue_pod_identity_eks_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_application_insights_aad_wi/azure_application_insights_aad_wi_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_sqs_queue_pod_identity/aws_sqs_queue_pod_identity_test.go, has passed after "one" attempts
Execution of tests/scalers/solace/direct-messaging/solace_dm_test.go, has passed after "one" attempts
Execution of tests/scalers/newrelic/newrelic_test.go, has passed after "one" attempts
Execution of tests/internals/scaling_modifiers/scaling_modifiers_test.go, has passed after "one" attempts
Execution of tests/scalers/loki/loki_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_cloudwatch_expression/aws_cloudwatch_expression_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_dynamodb/aws_dynamodb_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_application_insights/azure_application_insights_test.go, has passed after "one" attempts
Execution of tests/scalers/selenium/selenium_test.go, has passed after "three" attempts
Execution of tests/internals/fallback/deployments/fallback_test.go, has passed after "one" attempts
Execution of tests/scalers/gcp/gcp_pubsub_topic/gcp_pubsub_topic_test.go, has passed after "one" attempts
Execution of tests/scalers/gcp/gcp_pubsub/gcp_pubsub_test.go, has passed after "one" attempts
Execution of tests/scalers/gcp/gcp_storage/gcp_storage_test.go, has passed after "three" attempts
Execution of tests/scalers/azure/azure_pipelines_adv/azure_pipelines_adv_test.go, has passed after "two" attempts
Execution of tests/scalers/apache_kafka/apache_kafka_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_pipelines_aad_wi/azure_pipelines_aad_wi_test.go, has passed after "three" attempts
Execution of tests/scalers/gcp/gcp_stackdriver/gcp_stackdriver_test.go, has passed after "three" attempts
Execution of tests/sequential/opentelemetry_metrics/opentelemetry_metrics_test.go, has passed after "one" attempts
Execution of tests/sequential/broken_scaledobject_tolerancy/broken_scaledobject_tolerancy_test.go, has passed after "one" attempts
Execution of tests/sequential/disruption/disruption_test.go, has passed after "one" attempts
Execution of tests/sequential/datadog_dca/datadog_dca_test.go, has passed after "two" attempts
Execution of tests/sequential/prometheus_metrics/prometheus_metrics_test.go, has passed after "one" attempts
failed tests: 16
Execution of tests/scalers/redis/redis_standalone_streams_length/redis_standalone_streams_length_test.go, has failed after "three" attempts
Execution of tests/scalers/redis/redis_cluster_streams_lag/redis_cluster_streams_lag_test.go, has failed after "three" attempts
Execution of tests/scalers/redis/redis_sentinel_lists/redis_sentinel_lists_test.go, has failed after "three" attempts
Execution of tests/scalers/redis/redis_standalone_lists/redis_standalone_lists_test.go, has failed after "three" attempts
Execution of tests/scalers/redis/redis_standalone_streams_lag/redis_standalone_streams_lag_test.go, has failed after "three" attempts
Execution of tests/scalers/redis/redis_cluster_streams_pending_entries/redis_cluster_streams_pending_entries_test.go, has failed after "three" attempts
Execution of tests/scalers/forgejo_runner/forgejo_runner_test.go, has failed after "three" attempts
Execution of tests/scalers/redis/redis_sentinel_streams_lag/redis_sentinel_streams_lag_test.go, has failed after "three" attempts
Execution of tests/scalers/redis/redis_sentinel_streams_pending_entries/redis_sentinel_streams_pending_entries_test.go, has failed after "three" attempts
Execution of tests/scalers/azure/azure_pipelines/azure_pipelines_test.go, has failed after "three" attempts
Execution of tests/scalers/gcp/gcp_storage_workload_identity/gcp_storage_workload_identity_test.go, has failed after "three" attempts
Execution of tests/scalers/redis/redis_sentinel_streams_length/redis_sentinel_streams_length_test.go, has failed after "three" attempts
Execution of tests/scalers/redis/redis_cluster_lists/redis_cluster_lists_test.go, has failed after "three" attempts
Execution of tests/scalers/redis/redis_cluster_streams_length/redis_cluster_streams_length_test.go, has failed after "three" attempts
Execution of tests/scalers/redis/redis_standalone_streams_pending_entries/redis_standalone_streams_test_pending_entries_test.go, has failed after "three" attempts
Execution of tests/scalers/github_runner/github_runner_test.go, has failed after "three" attempts

@rickbrouwer

rickbrouwer commented May 25, 2026

Copy link
Copy Markdown
Member

/run-e2e
Update: You can check the progress here

@zroubalik

zroubalik commented May 26, 2026

Copy link
Copy Markdown
Member

/run-e2e
Update: You can check the progress here

passed tests: 133
Execution of tests/internals/pause_scale_out/pause_scale_out_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_blob/azure_blob_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_aad_wi/rabbitmq_queue_http_aad_wi_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_eqct/rabbitmq_queue_http_eqct_test.go, has passed after "one" attempts
Execution of tests/internals/pause_scaledobject/pause_scaledobject_test.go, has passed after "one" attempts
Execution of tests/internals/replica_update_so/replica_update_so_test.go, has passed after "one" attempts
Execution of tests/scalers/influxdb/influxdb_v3/influxdb_v3_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_dget/rabbitmq_queue_http_dget_test.go, has passed after "one" attempts
Execution of tests/scalers/graphite/graphite_test.go, has passed after "one" attempts
Execution of tests/scalers/artemis/artemis_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_sqs_queue/aws_sqs_queue_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_amqp_vhost/rabbitmq_queue_amqp_vhost_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_managed_prometheus/aws_managed_prometheus_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_amqp/rabbitmq_queue_amqp_test.go, has passed after "one" attempts
Execution of tests/scalers/splunk/splunk_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_service_bus_topic/azure_service_bus_topic_test.go, has passed after "one" attempts
Execution of tests/internals/file_based_auth/file_based_auth_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_regex_vhost/rabbitmq_queue_http_regex_vhost_test.go, has passed after "one" attempts
Execution of tests/scalers/loki/loki_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_kinesis_stream/aws_kinesis_stream_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_blob_aad_wi/azure_blob_aad_wi_test.go, has passed after "one" attempts
Execution of tests/scalers/pulsar/pulsar_partitioned_topic/pulsar_partitioned_topic_test.go, has passed after "one" attempts
Execution of tests/scalers/mysql/mysql_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_dynamodb/aws_dynamodb_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_regex/rabbitmq_queue_http_regex_test.go, has passed after "one" attempts
Execution of tests/scalers/metrics_api/metrics_api_test.go, has passed after "one" attempts
Execution of tests/scalers/predictkube/predictkube_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_data_explorer/azure_data_explorer_test.go, has passed after "one" attempts
Execution of tests/internals/pause_scale_in/pause_scale_in_test.go, has passed after "one" attempts
Execution of tests/scalers/redis/redis_sentinel_streams_pending_entries/redis_sentinel_streams_pending_entries_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http/rabbitmq_queue_http_test.go, has passed after "one" attempts
Execution of tests/scalers/elastic_forecast/elastic_forecast_test.go, has passed after "one" attempts
Execution of tests/scalers/arangodb/arangodb_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_service_bus_queue_regex/azure_service_bus_queue_regex_test.go, has passed after "one" attempts
Execution of tests/secret-providers/gcp_secret_manager/gcp_secret_manager_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_queue_aad_wi/azure_queue_aad_wi_test.go, has passed after "one" attempts
Execution of tests/secret-providers/azure_keyvault/azure_keyvault_test.go, has passed after "two" attempts
Execution of tests/scalers/mongodb/mongodb_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_cloudwatch/aws_cloudwatch_test.go, has passed after "one" attempts
Execution of tests/scalers/solace/direct-messaging/solace_dm_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_event_hub_dapr_wi/azure_event_hub_dapr_wi_test.go, has passed after "one" attempts
Execution of tests/scalers/datadog/datadog_api/datadog_api_test.go, has passed after "one" attempts
Execution of tests/internals/pause_scaledjob/pause_scaledjob_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_dynamodb_streams_pod_identity/aws_dynamodb_streams_pod_identity_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_application_insights/azure_application_insights_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_service_bus_queue/azure_service_bus_queue_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_cloudwatch_pod_identity_eks/aws_cloudwatch_pod_identity_eks_test.go, has passed after "one" attempts
Execution of tests/scalers/nsq/nsq_test.go, has passed after "one" attempts
Execution of tests/secret-providers/aws_secretmanager_pod_identity/aws_secretmanager_pod_identity_test.go, has passed after "two" attempts
Execution of tests/scalers/influxdb/influxdb_v2/influxdb_v2_test.go, has passed after "two" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_dpratio/rabbitmq_queue_http_dpratio_test.go, has passed after "two" attempts
Execution of tests/scalers/azure/azure_pipelines/azure_pipelines_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_sqs_queue_pod_identity_eks/aws_sqs_queue_pod_identity_eks_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_cloudwatch_ignore_null_values_false/aws_cloudwatch_ignore_null_values_false_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_managed_prometheus/azure_managed_prometheus_aad_workload_identity/azure_managed_prometheus_aad_workload_identity_test.go, has passed after "one" attempts
Execution of tests/internals/cache_metrics/cache_metrics_test.go, has passed after "two" attempts
Execution of tests/internals/trigger_update_so/trigger_update_so_test.go, has passed after "one" attempts
Execution of tests/scalers/redis/redis_sentinel_streams_lag/redis_sentinel_streams_lag_test.go, has passed after "two" attempts
Execution of tests/scalers/gcp/gcp_stackdriver_workload_identity/gcp_stackdriver_workload_identity_test.go, has passed after "two" attempts
Execution of tests/scalers/dynatrace/dynatrace_test.go, has passed after "one" attempts
Execution of tests/scalers/openstack_swift/openstack_swift_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_pipelines_adv/azure_pipelines_adv_test.go, has passed after "one" attempts
Execution of tests/scalers/cron/cron_test.go, has passed after "one" attempts
Execution of tests/scalers/gcp/gcp_storage_workload_identity/gcp_storage_workload_identity_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_event_hub_blob_metadata/azure_event_hub_blob_metadata_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_amqp_auth/rabbitmq_queue_amqp_auth_test.go, has passed after "two" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_auth/rabbitmq_queue_http_auth_test.go, has passed after "one" attempts
Execution of tests/secret-providers/aws_identity_assume_role/aws_identity_assume_role_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_vhost/rabbitmq_queue_http_vhost_test.go, has passed after "one" attempts
Execution of tests/internals/eventemitter/azureeventgridtopic/azureeventgridtopic_test.go, has passed after "one" attempts
Execution of tests/scalers/elasticsearch/elasticsearch_test.go, has passed after "one" attempts
Execution of tests/scalers/redis/redis_standalone_streams_lag/redis_standalone_streams_lag_test.go, has passed after "one" attempts
Execution of tests/scalers/redis/redis_standalone_streams_pending_entries/redis_standalone_streams_test_pending_entries_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_cloudwatch_expression/aws_cloudwatch_expression_test.go, has passed after "one" attempts
Execution of tests/internals/scaled_job_conditions/scaled_job_conditions_test.go, has passed after "one" attempts
Execution of tests/scalers/gcp/gcp_storage/gcp_storage_test.go, has passed after "three" attempts
Execution of tests/secret-providers/azure_keyvault_workload_identity/azure_keyvault_workload_identity_test.go, has passed after "one" attempts
Execution of tests/internals/scaling_modifiers/scaling_modifiers_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_event_hub_aad_wi/azure_event_hub_aad_wi_test.go, has passed after "one" attempts
Execution of tests/scalers/postgresql/postgresql_standalone/postgresql_test.go, has passed after "one" attempts
Execution of tests/scalers/redis/redis_cluster_lists/redis_cluster_lists_test.go, has passed after "one" attempts
Execution of tests/internals/polling_cooldown_so/polling_cooldown_so_test.go, has passed after "two" attempts
Execution of tests/scalers/mssql/mssql_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_log_analytics/azure_log_analytics_test.go, has passed after "one" attempts
Execution of tests/scalers/kubernetes_resource/kubernetes_resource_test.go, has passed after "two" attempts
Execution of tests/scalers/mssql/azure_mssql_aad_wi/azure_mssql_aad_wi_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_cloudwatch_min_metric_value/aws_cloudwatch_min_metric_value_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_service_bus_topic_regex/azure_service_bus_topic_regex_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_service_bus_topic_aad_wi/azure_service_bus_topic_aad_wi_test.go, has passed after "one" attempts
Execution of tests/internals/idle_replicas/idle_replicas_test.go, has passed after "one" attempts
Execution of tests/scalers/external_push_scaler_old_proto/external_push_scaler_old_proto_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_dynamodb_pod_identity/aws_dynamodb_pod_identity_test.go, has passed after "one" attempts
Execution of tests/secret-providers/azure_workload_identity_user_assigned/azure_workload_identity_user_assigned_test.go, has passed after "one" attempts
Execution of tests/scalers/external_scaler_sj/external_scaler_sj_test.go, has passed after "one" attempts
Execution of tests/internals/update_ta/update_ta_test.go, has passed after "one" attempts
Execution of tests/scalers/redis/redis_sentinel_streams_length/redis_sentinel_streams_length_test.go, has passed after "one" attempts
Execution of tests/internals/min_replica_sj/min_replica_sj_test.go, has passed after "one" attempts
Execution of tests/scalers/newrelic/newrelic_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_oauth2/rabbitmq_queue_http_oauth2_test.go, has passed after "one" attempts
Execution of tests/scalers/gcp/gcp_cloud_tasks_workload_identity/gcp_cloud_tasks_workload_identity_test.go, has passed after "one" attempts
Execution of tests/scalers/redis/redis_cluster_streams_length/redis_cluster_streams_length_test.go, has passed after "one" attempts
Execution of tests/internals/cloudevent_source/cloudevent_source_test.go, has passed after "one" attempts
Execution of tests/internals/replicaset_scale/replicaset_scale_test.go, has passed after "one" attempts
Execution of tests/scalers/pulsar/pulsar_non_partitioned_topic/pulsar_non_partitioned_topic_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_cloudwatch_metric_stat/aws_cloudwatch_metric_stat_test.go, has passed after "one" attempts
Execution of tests/scalers/external_scaler_so/external_scaler_so_test.go, has passed after "one" attempts
Execution of tests/internals/value_metric_type/value_metric_type_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_dynamodb_streams_pod_identity_eks/aws_dynamodb_streams_pod_identity_eks_test.go, has passed after "one" attempts
Execution of tests/scalers/nats_jetstream/nats_jetstream_standalone/nats_jetstream_standalone_test.go, has passed after "one" attempts
Execution of tests/internals/initial_delay_cooldownperiod/initial_delay_cooldownperiod_test.go, has passed after "one" attempts
Execution of tests/internals/custom_hpa_name/custom_hpa_name_test.go, has passed after "one" attempts
Execution of tests/internals/restore_original/restore_original_test.go, has passed after "one" attempts
Execution of tests/internals/pause_scale_in_restore/pause_scale_in_restore_test.go, has passed after "one" attempts
Execution of tests/scalers/activemq/activemq_test.go, has passed after "one" attempts
Execution of tests/scalers/temporal/temporal_test.go, has passed after "one" attempts
Execution of tests/scalers/redis/redis_standalone_streams_length/redis_standalone_streams_length_test.go, has passed after "one" attempts
Execution of tests/internals/global_custom_ca/global_custom_ca_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_managed_prometheus_pod_identity/aws_managed_prometheus_pod_identity_test.go, has passed after "one" attempts
Execution of tests/secret-providers/trigger_auth_bound_service_account_token/trigger_auth_bound_service_account_token_test.go, has passed after "one" attempts
Execution of tests/scalers/kubernetes_workload/kubernetes_workload_test.go, has passed after "one" attempts
Execution of tests/scalers/postgresql/postgresql_high_available/postgresql_ha_test.go, has passed after "one" attempts
Execution of tests/secret-providers/trigger_auth_secret/trigger_auth_secret_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_monitor_aad_wi/azure_monitor_aad_wi_test.go, has passed after "one" attempts
Execution of tests/internals/scaled_object_validation/scaled_object_validation_test.go, has passed after "one" attempts
Execution of tests/internals/force_activation/force_activation_test.go, has passed after "one" attempts
Execution of tests/internals/trigger_authentication_validation/trigger_authentication_validation_test.go, has passed after "one" attempts
Execution of tests/scalers/dynatrace_dql/dynatrace_dql_test.go, has passed after "one" attempts
Execution of tests/internals/scaling_strategies/eager_scaling_strategy/eager_scaling_strategy_test.go, has passed after "one" attempts
Execution of tests/internals/scaled_job_validation/scaled_job_validation_test.go, has passed after "one" attempts
Execution of tests/sequential/disruption/disruption_test.go, has passed after "one" attempts
Execution of tests/sequential/prometheus_metrics/prometheus_metrics_test.go, has passed after "one" attempts
Execution of tests/sequential/opentelemetry_metrics/opentelemetry_metrics_test.go, has passed after "two" attempts
Execution of tests/sequential/broken_scaledobject_tolerancy/broken_scaledobject_tolerancy_test.go, has passed after "one" attempts
failed tests: 62
Execution of tests/scalers/selenium/selenium_test.go, has failed after "three" attempts
Execution of tests/scalers/cassandra/cassandra_test.go, has failed after "three" attempts
Execution of tests/scalers/forgejo_runner/forgejo_runner_test.go, has failed after "three" attempts
Execution of tests/scalers/azure/azure_service_bus_queue_aad_wi/azure_service_bus_queue_aad_wi_test.go, has failed after "three" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_regex_aad_wi/rabbitmq_queue_http_regex_aad_wi_test.go, has failed after "three" attempts
Execution of tests/scalers/azure/azure_event_hub_go_sdk/azure_event_hub_go_sdk_test.go, has failed after "three" attempts
Execution of tests/scalers/azure/azure_queue/azure_queue_test.go, has failed after "three" attempts
Execution of tests/secret-providers/hashicorp_vault/hashicorp_vault_test.go, has failed after "three" attempts
Execution of tests/secret-providers/gcp_secret_manager_workload_identity/gcp_secret_manager_workload_identity_test.go, has failed after "three" attempts
Execution of tests/scalers/couchdb/couchdb_test.go, has failed after "three" attempts
Execution of tests/internals/status_update/status_update_test.go, has failed after "three" attempts
Execution of tests/scalers/redis/redis_sentinel_lists/redis_sentinel_lists_test.go, has failed after "three" attempts
Execution of tests/internals/pause_scaledobject_explicitly/pause_scaledobject_explicitly_test.go, has failed after "three" attempts
Execution of tests/scalers/memory/memory_test.go, has failed after "three" attempts
Execution of tests/scalers/apache_kafka/apache_kafka_test.go, has failed after "three" attempts
Execution of tests/scalers/kafka/kafka_test.go, has failed after "three" attempts
Execution of tests/scalers/sumologic/sumologic_test.go, has failed after "three" attempts
Execution of tests/scalers/azure/azure_data_explorer_aad_wi/azure_data_explorer_aad_wi_test.go, has failed after "three" attempts
Execution of tests/scalers/etcd/etcd_cluster_auth/etcd_cluster_auth_test.go, has failed after "three" attempts
Execution of tests/internals/fallback/rollouts/fallback_test.go, has failed after "three" attempts
Execution of tests/scalers/aws/aws_cloudwatch_cross_account/aws_cloudwatch_cross_account_test.go, has failed after "three" attempts
Execution of tests/scalers/splunk_observability/splunk_observability_test.go, has failed after "three" attempts
Execution of tests/internals/fallback/deployments/fallback_test.go, has failed after "three" attempts
Execution of tests/scalers/cpu/cpu_test.go, has failed after "three" attempts
Execution of tests/scalers/solr/solr_test.go, has failed after "three" attempts
Execution of tests/scalers/gcp/gcp_pubsub/gcp_pubsub_test.go, has failed after "three" attempts
Execution of tests/scalers/azure/azure_monitor/azure_monitor_test.go, has failed after "three" attempts
Execution of tests/scalers/azure/azure_event_hub_dapr/azure_event_hub_dapr_test.go, has failed after "three" attempts
Execution of tests/scalers/gcp/gcp_pubsub_topic/gcp_pubsub_topic_test.go, has failed after "three" attempts
Execution of tests/internals/events/events_test.go, has failed after "three" attempts
Execution of tests/scalers/gcp/gcp_pubsub_workload_identity/gcp_pubsub_workload_identity_test.go, has failed after "three" attempts
Execution of tests/scalers/beanstalkd/beanstalkd_test.go, has failed after "three" attempts
Execution of tests/scalers/solarwinds/solarwinds_test.go, has failed after "three" attempts
Execution of tests/scalers/azure/azure_application_insights_aad_wi/azure_application_insights_aad_wi_test.go, has failed after "three" attempts
Execution of tests/scalers/redis/redis_cluster_streams_lag/redis_cluster_streams_lag_test.go, has failed after "three" attempts
Execution of tests/scalers/prometheus/prometheus_test.go, has failed after "three" attempts
Execution of tests/scalers/aws/aws_dynamodb_streams/aws_dynamodb_streams_test.go, has failed after "three" attempts
Execution of tests/scalers/nats_jetstream/nats_jetstream_cluster/nats_jetstream_cluster_test.go, has failed after "three" attempts
Execution of tests/secret-providers/aws_identity_external_id/aws_identity_external_id_test.go, has failed after "three" attempts
Execution of tests/scalers/aws/aws_dynamodb_pod_identity_eks/aws_dynamodb_pod_identity_eks_test.go, has failed after "three" attempts
Execution of tests/scalers/gcp/gcp_prometheus_workload_identity/gcp_prometheus_workload_identity_test.go, has failed after "three" attempts
Execution of tests/scalers/redis/redis_standalone_lists/redis_standalone_lists_test.go, has failed after "three" attempts
Execution of tests/scalers/aws/aws_kinesis_stream_pod_identity/aws_kinesis_stream_pod_identity_test.go, has failed after "three" attempts
Execution of tests/scalers/azure/azure_log_analytics_aad_wi/azure_log_analytics_aad_wi_test.go, has failed after "three" attempts
Execution of tests/scalers/github_runner/github_runner_test.go, has failed after "three" attempts
Execution of tests/scalers/postgresql/azure_postgresql_flex_server_aad_wi/azure_postgresql_flex_server_aad_wi_test.go, has failed after "three" attempts
Execution of tests/scalers/aws/aws_kinesis_stream_pod_identity_eks/aws_kinesis_stream_pod_identity_eks_test.go, has failed after "three" attempts
Execution of tests/scalers/aws/aws_sqs_queue_pod_identity/aws_sqs_queue_pod_identity_test.go, has failed after "three" attempts
Execution of tests/scalers/aws/aws_cloudwatch_pod_identity/aws_cloudwatch_pod_identity_test.go, has failed after "three" attempts
Execution of tests/scalers/etcd/etcd_cluster/etcd_cluster_test.go, has failed after "three" attempts
Execution of tests/scalers/ibmmq/ibmmq_test.go, has failed after "three" attempts
Execution of tests/scalers/azure/azure_event_hub_blob_metadata_wi/azure_event_hub_blob_metadata_wi_test.go, has failed after "three" attempts
Execution of tests/internals/subresource_scale/subresource_scale_test.go, has failed after "three" attempts
Execution of tests/scalers/redis/redis_cluster_streams_pending_entries/redis_cluster_streams_pending_entries_test.go, has failed after "three" attempts
Execution of tests/scalers/external_push_scaler/external_push_scaler_test.go, has failed after "three" attempts
Execution of tests/secret-providers/aws_secretmanager/aws_secretmanager_test.go, has failed after "three" attempts
Execution of tests/internals/scaling_strategies/accurate_scaling_strategy/accurate_scaling_strategy_test.go, has failed after "three" attempts
Execution of tests/scalers/gcp/gcp_stackdriver/gcp_stackdriver_test.go, has failed after "three" attempts
Execution of tests/scalers/gcp/gcp_cloud_tasks/gcp_cloud_tasks_test.go, has failed after "three" attempts
Execution of tests/scalers/azure/azure_pipelines_aad_wi/azure_pipelines_aad_wi_test.go, has failed after "three" attempts
Execution of tests/scalers/solace/solace_test.go, has failed after "three" attempts
Execution of tests/sequential/datadog_dca/datadog_dca_test.go, has failed after "two" attempts

@zroubalik zroubalik added waiting-for-e2e and removed Awaiting/2nd-approval This PR needs one more approval review labels May 26, 2026
@ggarber1

Copy link
Copy Markdown

@zroubalik the e2e tests are a bit suspect. Can we run one more time to verify? The new ensureScaleTargetGVKR calls kubeClient.Get from inside GetCurrentReplicas, which is invoked on the SO reconcile path. If that Get ever blocks (e.g. informer cache mid-rebuild, watch reconnect), it ties up reconcile workers.

@rickbrouwer

rickbrouwer commented May 26, 2026

Copy link
Copy Markdown
Member

/run-e2e
Update: You can check the progress here

passed tests: 101
Execution of tests/internals/scaled_object_validation/scaled_object_validation_test.go, has passed after "one" attempts
Execution of tests/secret-providers/azure_keyvault_workload_identity/azure_keyvault_workload_identity_test.go, has passed after "one" attempts
Execution of tests/secret-providers/trigger_auth_bound_service_account_token/trigger_auth_bound_service_account_token_test.go, has passed after "one" attempts
Execution of tests/internals/pause_scale_out/pause_scale_out_test.go, has passed after "one" attempts
Execution of tests/secret-providers/aws_secretmanager/aws_secretmanager_test.go, has passed after "one" attempts
Execution of tests/internals/global_custom_ca/global_custom_ca_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_regex/rabbitmq_queue_http_regex_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_log_analytics/azure_log_analytics_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_service_bus_queue/azure_service_bus_queue_test.go, has passed after "one" attempts
Execution of tests/secret-providers/trigger_auth_secret/trigger_auth_secret_test.go, has passed after "one" attempts
Execution of tests/scalers/activemq/activemq_test.go, has passed after "one" attempts
Execution of tests/internals/replicaset_scale/replicaset_scale_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_dynamodb_pod_identity/aws_dynamodb_pod_identity_test.go, has passed after "one" attempts
Execution of tests/scalers/external_scaler_so/external_scaler_so_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_service_bus_queue_regex/azure_service_bus_queue_regex_test.go, has passed after "one" attempts
Execution of tests/scalers/splunk/splunk_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_amqp_vhost/rabbitmq_queue_amqp_vhost_test.go, has passed after "one" attempts
Execution of tests/scalers/redis/redis_sentinel_streams_length/redis_sentinel_streams_length_test.go, has passed after "one" attempts
Execution of tests/secret-providers/gcp_secret_manager/gcp_secret_manager_test.go, has passed after "one" attempts
Execution of tests/scalers/postgresql/postgresql_high_available/postgresql_ha_test.go, has passed after "one" attempts
Execution of tests/scalers/influxdb/influxdb_v3/influxdb_v3_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_service_bus_topic_regex/azure_service_bus_topic_regex_test.go, has passed after "one" attempts
Execution of tests/scalers/redis/redis_sentinel_streams_lag/redis_sentinel_streams_lag_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_cloudwatch_metric_stat/aws_cloudwatch_metric_stat_test.go, has passed after "one" attempts
Execution of tests/scalers/nsq/nsq_test.go, has passed after "one" attempts
Execution of tests/secret-providers/aws_identity_assume_role/aws_identity_assume_role_test.go, has passed after "one" attempts
Execution of tests/internals/replica_update_so/replica_update_so_test.go, has passed after "one" attempts
Execution of tests/internals/trigger_update_so/trigger_update_so_test.go, has passed after "one" attempts
Execution of tests/scalers/sumologic/sumologic_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_vhost/rabbitmq_queue_http_vhost_test.go, has passed after "one" attempts
Execution of tests/internals/eventemitter/azureeventgridtopic/azureeventgridtopic_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_amqp_auth/rabbitmq_queue_amqp_auth_test.go, has passed after "one" attempts
Execution of tests/scalers/artemis/artemis_test.go, has passed after "one" attempts
Execution of tests/scalers/gcp/gcp_prometheus_workload_identity/gcp_prometheus_workload_identity_test.go, has passed after "one" attempts
Execution of tests/scalers/solarwinds/solarwinds_test.go, has passed after "one" attempts
Execution of tests/scalers/postgresql/azure_postgresql_flex_server_aad_wi/azure_postgresql_flex_server_aad_wi_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_data_explorer/azure_data_explorer_test.go, has passed after "one" attempts
Execution of tests/internals/cloudevent_source/cloudevent_source_test.go, has passed after "one" attempts
Execution of tests/scalers/temporal/temporal_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_cloudwatch_cross_account/aws_cloudwatch_cross_account_test.go, has passed after "one" attempts
Execution of tests/scalers/forgejo_runner/forgejo_runner_test.go, has passed after "two" attempts
Execution of tests/scalers/external_scaler_sj/external_scaler_sj_test.go, has passed after "one" attempts
Execution of tests/scalers/cpu/cpu_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_regex_aad_wi/rabbitmq_queue_http_regex_aad_wi_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_dget/rabbitmq_queue_http_dget_test.go, has passed after "one" attempts
Execution of tests/internals/pause_scale_in/pause_scale_in_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_dynamodb_streams_pod_identity_eks/aws_dynamodb_streams_pod_identity_eks_test.go, has passed after "one" attempts
Execution of tests/secret-providers/gcp_secret_manager_workload_identity/gcp_secret_manager_workload_identity_test.go, has passed after "one" attempts
Execution of tests/scalers/redis/redis_standalone_lists/redis_standalone_lists_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_cloudwatch_expression/aws_cloudwatch_expression_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_cloudwatch_pod_identity_eks/aws_cloudwatch_pod_identity_eks_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_dynamodb/aws_dynamodb_test.go, has passed after "one" attempts
Execution of tests/internals/custom_hpa_name/custom_hpa_name_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_event_hub_go_sdk/azure_event_hub_go_sdk_test.go, has passed after "one" attempts
Execution of tests/scalers/openstack_swift/openstack_swift_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_regex_vhost/rabbitmq_queue_http_regex_vhost_test.go, has passed after "one" attempts
Execution of tests/scalers/gcp/gcp_storage/gcp_storage_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_service_bus_topic_aad_wi/azure_service_bus_topic_aad_wi_test.go, has passed after "one" attempts
Execution of tests/internals/subresource_scale/subresource_scale_test.go, has passed after "one" attempts
Execution of tests/scalers/redis/redis_standalone_streams_lag/redis_standalone_streams_lag_test.go, has passed after "one" attempts
Execution of tests/scalers/dynatrace_dql/dynatrace_dql_test.go, has passed after "one" attempts
Execution of tests/internals/min_replica_sj/min_replica_sj_test.go, has passed after "one" attempts
Execution of tests/internals/scaled_job_conditions/scaled_job_conditions_test.go, has passed after "one" attempts
Execution of tests/internals/initial_delay_cooldownperiod/initial_delay_cooldownperiod_test.go, has passed after "one" attempts
Execution of tests/scalers/cassandra/cassandra_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_kinesis_stream/aws_kinesis_stream_test.go, has passed after "one" attempts
Execution of tests/scalers/etcd/etcd_cluster_auth/etcd_cluster_auth_test.go, has passed after "one" attempts
Execution of tests/internals/pause_scale_in_restore/pause_scale_in_restore_test.go, has passed after "one" attempts
Execution of tests/scalers/datadog/datadog_api/datadog_api_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_dpratio/rabbitmq_queue_http_dpratio_test.go, has passed after "one" attempts
Execution of tests/internals/events/events_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_managed_prometheus/aws_managed_prometheus_test.go, has passed after "one" attempts
Execution of tests/scalers/newrelic/newrelic_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_queue_aad_wi/azure_queue_aad_wi_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_cloudwatch/aws_cloudwatch_test.go, has passed after "one" attempts
Execution of tests/scalers/gcp/gcp_cloud_tasks_workload_identity/gcp_cloud_tasks_workload_identity_test.go, has passed after "one" attempts
Execution of tests/scalers/pulsar/pulsar_non_partitioned_topic/pulsar_non_partitioned_topic_test.go, has passed after "one" attempts
Execution of tests/scalers/kubernetes_workload/kubernetes_workload_test.go, has passed after "one" attempts
Execution of tests/scalers/gcp/gcp_pubsub/gcp_pubsub_test.go, has passed after "one" attempts
Execution of tests/internals/trigger_authentication_validation/trigger_authentication_validation_test.go, has passed after "one" attempts
Execution of tests/internals/pause_scaledjob/pause_scaledjob_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_event_hub_blob_metadata/azure_event_hub_blob_metadata_test.go, has passed after "one" attempts
Execution of tests/scalers/pulsar/pulsar_partitioned_topic/pulsar_partitioned_topic_test.go, has passed after "one" attempts
Execution of tests/internals/scaling_modifiers/scaling_modifiers_test.go, has passed after "one" attempts
Execution of tests/scalers/mssql/azure_mssql_aad_wi/azure_mssql_aad_wi_test.go, has passed after "one" attempts
Execution of tests/scalers/influxdb/influxdb_v2/influxdb_v2_test.go, has passed after "one" attempts
Execution of tests/scalers/arangodb/arangodb_test.go, has passed after "one" attempts
Execution of tests/scalers/redis/redis_cluster_streams_pending_entries/redis_cluster_streams_pending_entries_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_aad_wi/rabbitmq_queue_http_aad_wi_test.go, has passed after "one" attempts
Execution of tests/scalers/mongodb/mongodb_test.go, has passed after "one" attempts
Execution of tests/internals/scaling_strategies/eager_scaling_strategy/eager_scaling_strategy_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_cloudwatch_ignore_null_values_false/aws_cloudwatch_ignore_null_values_false_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_pipelines_adv/azure_pipelines_adv_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_managed_prometheus_pod_identity/aws_managed_prometheus_pod_identity_test.go, has passed after "one" attempts
Execution of tests/internals/scaling_strategies/accurate_scaling_strategy/accurate_scaling_strategy_test.go, has passed after "two" attempts
Execution of tests/scalers/dynatrace/dynatrace_test.go, has passed after "one" attempts
Execution of tests/internals/scaled_job_validation/scaled_job_validation_test.go, has passed after "one" attempts
Execution of tests/sequential/disruption/disruption_test.go, has passed after "one" attempts
Execution of tests/sequential/prometheus_metrics/prometheus_metrics_test.go, has passed after "one" attempts
Execution of tests/sequential/opentelemetry_metrics/opentelemetry_metrics_test.go, has passed after "one" attempts
Execution of tests/sequential/broken_scaledobject_tolerancy/broken_scaledobject_tolerancy_test.go, has passed after "one" attempts
failed tests: 94
Execution of tests/scalers/elasticsearch/elasticsearch_test.go, has failed after "three" attempts
Execution of tests/internals/fallback/deployments/fallback_test.go, has failed after "three" attempts
Execution of tests/scalers/apache_kafka/apache_kafka_test.go, has failed after "three" attempts
Execution of tests/scalers/splunk_observability/splunk_observability_test.go, has failed after "three" attempts
Execution of tests/scalers/azure/azure_event_hub_aad_wi/azure_event_hub_aad_wi_test.go, has failed after "three" attempts
Execution of tests/scalers/gcp/gcp_pubsub_topic/gcp_pubsub_topic_test.go, has failed after "three" attempts
Execution of tests/scalers/azure/azure_queue/azure_queue_test.go, has failed after "three" attempts
Execution of tests/scalers/aws/aws_cloudwatch_min_metric_value/aws_cloudwatch_min_metric_value_test.go, has failed after "three" attempts
Execution of tests/scalers/gcp/gcp_cloud_tasks/gcp_cloud_tasks_test.go, has failed after "three" attempts
Execution of tests/scalers/gcp/gcp_stackdriver_workload_identity/gcp_stackdriver_workload_identity_test.go, has failed after "three" attempts
Execution of tests/scalers/azure/azure_pipelines_aad_wi/azure_pipelines_aad_wi_test.go, has failed after "three" attempts
Execution of tests/scalers/aws/aws_dynamodb_streams_pod_identity/aws_dynamodb_streams_pod_identity_test.go, has failed after "three" attempts
Execution of tests/scalers/gcp/gcp_stackdriver/gcp_stackdriver_test.go, has failed after "three" attempts
Execution of tests/scalers/gcp/gcp_pubsub_workload_identity/gcp_pubsub_workload_identity_test.go, has failed after "three" attempts
Execution of tests/scalers/beanstalkd/beanstalkd_test.go, has failed after "three" attempts
Execution of tests/scalers/mysql/mysql_test.go, has failed after "three" attempts
Execution of tests/scalers/ibmmq/ibmmq_test.go, has failed after "three" attempts
Execution of tests/scalers/aws/aws_kinesis_stream_pod_identity_eks/aws_kinesis_stream_pod_identity_eks_test.go, has failed after "three" attempts
Execution of tests/scalers/azure/azure_application_insights_aad_wi/azure_application_insights_aad_wi_test.go, has failed after "three" attempts
Execution of tests/scalers/azure/azure_pipelines/azure_pipelines_test.go, has failed after "three" attempts
Execution of tests/scalers/azure/azure_monitor/azure_monitor_test.go, has failed after "three" attempts
Execution of tests/scalers/selenium/selenium_test.go, has failed after "three" attempts
Execution of tests/scalers/aws/aws_kinesis_stream_pod_identity/aws_kinesis_stream_pod_identity_test.go, has failed after "three" attempts
Execution of tests/secret-providers/aws_identity_external_id/aws_identity_external_id_test.go, has failed after "three" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http/rabbitmq_queue_http_test.go, has failed after "three" attempts
Execution of tests/scalers/redis/redis_cluster_lists/redis_cluster_lists_test.go, has failed after "three" attempts
Execution of tests/scalers/azure/azure_event_hub_dapr_wi/azure_event_hub_dapr_wi_test.go, has failed after "three" attempts
Execution of tests/scalers/azure/azure_monitor_aad_wi/azure_monitor_aad_wi_test.go, has failed after "three" attempts
Execution of tests/scalers/azure/azure_blob/azure_blob_test.go, has failed after "three" attempts
Execution of tests/secret-providers/azure_workload_identity_user_assigned/azure_workload_identity_user_assigned_test.go, has failed after "three" attempts
Execution of tests/scalers/solr/solr_test.go, has failed after "three" attempts
Execution of tests/scalers/azure/azure_log_analytics_aad_wi/azure_log_analytics_aad_wi_test.go, has failed after "three" attempts
Execution of tests/secret-providers/azure_keyvault/azure_keyvault_test.go, has failed after "three" attempts
Execution of tests/scalers/predictkube/predictkube_test.go, has failed after "three" attempts
Execution of tests/scalers/cron/cron_test.go, has failed after "three" attempts
Execution of tests/internals/pause_scaledobject/pause_scaledobject_test.go, has failed after "three" attempts
Execution of tests/scalers/postgresql/postgresql_standalone/postgresql_test.go, has failed after "three" attempts
Execution of tests/scalers/redis/redis_standalone_streams_pending_entries/redis_standalone_streams_test_pending_entries_test.go, has failed after "three" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_oauth2/rabbitmq_queue_http_oauth2_test.go, has failed after "three" attempts
Execution of tests/internals/update_ta/update_ta_test.go, has failed after "three" attempts
Execution of tests/scalers/redis/redis_standalone_streams_length/redis_standalone_streams_length_test.go, has failed after "three" attempts
Execution of tests/scalers/aws/aws_cloudwatch_pod_identity/aws_cloudwatch_pod_identity_test.go, has failed after "three" attempts
Execution of tests/scalers/redis/redis_cluster_streams_length/redis_cluster_streams_length_test.go, has failed after "three" attempts
Execution of tests/scalers/etcd/etcd_cluster/etcd_cluster_test.go, has failed after "three" attempts
Execution of tests/internals/file_based_auth/file_based_auth_test.go, has failed after "three" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_auth/rabbitmq_queue_http_auth_test.go, has failed after "three" attempts
Execution of tests/scalers/redis/redis_sentinel_lists/redis_sentinel_lists_test.go, has failed after "three" attempts
Execution of tests/secret-providers/aws_secretmanager_pod_identity/aws_secretmanager_pod_identity_test.go, has failed after "three" attempts
Execution of tests/scalers/azure/azure_service_bus_queue_aad_wi/azure_service_bus_queue_aad_wi_test.go, has failed after "three" attempts
Execution of tests/scalers/metrics_api/metrics_api_test.go, has failed after "three" attempts
Execution of tests/internals/restore_original/restore_original_test.go, has failed after "three" attempts
Execution of tests/scalers/redis/redis_cluster_streams_lag/redis_cluster_streams_lag_test.go, has failed after "three" attempts
Execution of tests/internals/idle_replicas/idle_replicas_test.go, has failed after "three" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_eqct/rabbitmq_queue_http_eqct_test.go, has failed after "three" attempts
Execution of tests/scalers/azure/azure_event_hub_blob_metadata_wi/azure_event_hub_blob_metadata_wi_test.go, has failed after "three" attempts
Execution of tests/scalers/github_runner/github_runner_test.go, has failed after "three" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_amqp/rabbitmq_queue_amqp_test.go, has failed after "three" attempts
Execution of tests/scalers/redis/redis_sentinel_streams_pending_entries/redis_sentinel_streams_pending_entries_test.go, has failed after "three" attempts
Execution of tests/scalers/loki/loki_test.go, has failed after "three" attempts
Execution of tests/internals/status_update/status_update_test.go, has failed after "three" attempts
Execution of tests/scalers/azure/azure_blob_aad_wi/azure_blob_aad_wi_test.go, has failed after "three" attempts
Execution of tests/scalers/external_push_scaler/external_push_scaler_test.go, has failed after "three" attempts
Execution of tests/scalers/graphite/graphite_test.go, has failed after "three" attempts
Execution of tests/scalers/azure/azure_application_insights/azure_application_insights_test.go, has failed after "three" attempts
Execution of tests/scalers/nats_jetstream/nats_jetstream_standalone/nats_jetstream_standalone_test.go, has failed after "three" attempts
Execution of tests/scalers/elastic_forecast/elastic_forecast_test.go, has failed after "three" attempts
Execution of tests/internals/force_activation/force_activation_test.go, has failed after "three" attempts
Execution of tests/scalers/aws/aws_sqs_queue_pod_identity_eks/aws_sqs_queue_pod_identity_eks_test.go, has failed after "three" attempts
Execution of tests/scalers/gcp/gcp_storage_workload_identity/gcp_storage_workload_identity_test.go, has failed after "three" attempts
Execution of tests/scalers/mssql/mssql_test.go, has failed after "three" attempts
Execution of tests/scalers/aws/aws_sqs_queue/aws_sqs_queue_test.go, has failed after "three" attempts
Execution of tests/scalers/azure/azure_service_bus_topic/azure_service_bus_topic_test.go, has failed after "three" attempts
Execution of tests/scalers/azure/azure_data_explorer_aad_wi/azure_data_explorer_aad_wi_test.go, has failed after "three" attempts
Execution of tests/scalers/aws/aws_sqs_queue_pod_identity/aws_sqs_queue_pod_identity_test.go, has failed after "three" attempts
Execution of tests/scalers/external_push_scaler_old_proto/external_push_scaler_old_proto_test.go, has failed after "three" attempts
Execution of tests/scalers/azure/azure_event_hub_dapr/azure_event_hub_dapr_test.go, has failed after "three" attempts
Execution of tests/internals/value_metric_type/value_metric_type_test.go, has failed after "three" attempts
Execution of tests/scalers/prometheus/prometheus_test.go, has failed after "three" attempts
Execution of tests/scalers/aws/aws_dynamodb_pod_identity_eks/aws_dynamodb_pod_identity_eks_test.go, has failed after "three" attempts
Execution of tests/scalers/couchdb/couchdb_test.go, has failed after "three" attempts
Execution of tests/scalers/solace/solace_test.go, has failed after "three" attempts
Execution of tests/scalers/memory/memory_test.go, has failed after "three" attempts
Execution of tests/scalers/solace/direct-messaging/solace_dm_test.go, has failed after "three" attempts
Execution of tests/scalers/nats_jetstream/nats_jetstream_cluster/nats_jetstream_cluster_test.go, has failed after "three" attempts
Execution of tests/scalers/azure/azure_managed_prometheus/azure_managed_prometheus_aad_workload_identity/azure_managed_prometheus_aad_workload_identity_test.go, has failed after "three" attempts
Execution of tests/internals/cache_metrics/cache_metrics_test.go, has failed after "three" attempts
Execution of tests/secret-providers/hashicorp_vault/hashicorp_vault_test.go, has failed after "three" attempts
Execution of tests/internals/pause_scaledobject_explicitly/pause_scaledobject_explicitly_test.go, has failed after "three" attempts
Execution of tests/scalers/kafka/kafka_test.go, has failed after "three" attempts
Execution of tests/internals/polling_cooldown_so/polling_cooldown_so_test.go, has failed after "three" attempts
Execution of tests/scalers/aws/aws_dynamodb_streams/aws_dynamodb_streams_test.go, has failed after "three" attempts
Execution of tests/scalers/kubernetes_resource/kubernetes_resource_test.go, has failed after "three" attempts
Execution of tests/internals/fallback/rollouts/fallback_test.go, has failed after "three" attempts
Execution of tests/sequential/datadog_dca/datadog_dca_test.go, has failed after "two" attempts

@keda-automation keda-automation requested a review from a team May 27, 2026 07:01
@rickbrouwer

rickbrouwer commented May 27, 2026

Copy link
Copy Markdown
Member

/run-e2e
Update: You can check the progress here

passed tests: 188
Execution of tests/internals/subresource_scale/subresource_scale_test.go, has passed after "one" attempts
Execution of tests/secret-providers/aws_secretmanager/aws_secretmanager_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_queue/azure_queue_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_regex/rabbitmq_queue_http_regex_test.go, has passed after "one" attempts
Execution of tests/internals/pause_scaledobject/pause_scaledobject_test.go, has passed after "one" attempts
Execution of tests/scalers/kubernetes_workload/kubernetes_workload_test.go, has passed after "one" attempts
Execution of tests/scalers/influxdb/influxdb_v3/influxdb_v3_test.go, has passed after "one" attempts
Execution of tests/scalers/cron/cron_test.go, has passed after "one" attempts
Execution of tests/scalers/activemq/activemq_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_cloudwatch/aws_cloudwatch_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_kinesis_stream_pod_identity_eks/aws_kinesis_stream_pod_identity_eks_test.go, has passed after "one" attempts
Execution of tests/scalers/postgresql/postgresql_standalone/postgresql_test.go, has passed after "one" attempts
Execution of tests/internals/trigger_authentication_validation/trigger_authentication_validation_test.go, has passed after "one" attempts
Execution of tests/internals/update_ta/update_ta_test.go, has passed after "two" attempts
Execution of tests/scalers/aws/aws_sqs_queue_pod_identity/aws_sqs_queue_pod_identity_test.go, has passed after "one" attempts
Execution of tests/scalers/nats_jetstream/nats_jetstream_standalone/nats_jetstream_standalone_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_event_hub_aad_wi/azure_event_hub_aad_wi_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_cloudwatch_expression/aws_cloudwatch_expression_test.go, has passed after "one" attempts
Execution of tests/scalers/redis/redis_cluster_streams_lag/redis_cluster_streams_lag_test.go, has passed after "one" attempts
Execution of tests/scalers/artemis/artemis_test.go, has passed after "one" attempts
Execution of tests/scalers/redis/redis_cluster_lists/redis_cluster_lists_test.go, has passed after "one" attempts
Execution of tests/internals/cache_metrics/cache_metrics_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_service_bus_topic_regex/azure_service_bus_topic_regex_test.go, has passed after "one" attempts
Execution of tests/scalers/sumologic/sumologic_test.go, has passed after "one" attempts
Execution of tests/secret-providers/aws_identity_assume_role/aws_identity_assume_role_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_dynamodb_pod_identity/aws_dynamodb_pod_identity_test.go, has passed after "one" attempts
Execution of tests/scalers/mssql/azure_mssql_aad_wi/azure_mssql_aad_wi_test.go, has passed after "one" attempts
Execution of tests/scalers/postgresql/azure_postgresql_flex_server_aad_wi/azure_postgresql_flex_server_aad_wi_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_cloudwatch_pod_identity_eks/aws_cloudwatch_pod_identity_eks_test.go, has passed after "one" attempts
Execution of tests/scalers/mongodb/mongodb_test.go, has passed after "one" attempts
Execution of tests/internals/scaling_strategies/accurate_scaling_strategy/accurate_scaling_strategy_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_cloudwatch_cross_account/aws_cloudwatch_cross_account_test.go, has passed after "one" attempts
Execution of tests/scalers/dynatrace_dql/dynatrace_dql_test.go, has passed after "one" attempts
Execution of tests/scalers/external_scaler_sj/external_scaler_sj_test.go, has passed after "one" attempts
Execution of tests/scalers/datadog/datadog_api/datadog_api_test.go, has passed after "one" attempts
Execution of tests/scalers/redis/redis_cluster_streams_pending_entries/redis_cluster_streams_pending_entries_test.go, has passed after "one" attempts
Execution of tests/scalers/external_scaler_so/external_scaler_so_test.go, has passed after "two" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_regex_aad_wi/rabbitmq_queue_http_regex_aad_wi_test.go, has passed after "one" attempts
Execution of tests/internals/value_metric_type/value_metric_type_test.go, has passed after "two" attempts
Execution of tests/scalers/mssql/mssql_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_sqs_queue/aws_sqs_queue_test.go, has passed after "one" attempts
Execution of tests/scalers/postgresql/postgresql_high_available/postgresql_ha_test.go, has passed after "one" attempts
Execution of tests/secret-providers/azure_workload_identity_user_assigned/azure_workload_identity_user_assigned_test.go, has passed after "one" attempts
Execution of tests/scalers/redis/redis_standalone_lists/redis_standalone_lists_test.go, has passed after "one" attempts
Execution of tests/secret-providers/azure_keyvault/azure_keyvault_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_dynamodb_streams/aws_dynamodb_streams_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_service_bus_topic/azure_service_bus_topic_test.go, has passed after "one" attempts
Execution of tests/scalers/gcp/gcp_stackdriver_workload_identity/gcp_stackdriver_workload_identity_test.go, has passed after "one" attempts
Execution of tests/secret-providers/gcp_secret_manager/gcp_secret_manager_test.go, has passed after "one" attempts
Execution of tests/scalers/pulsar/pulsar_partitioned_topic/pulsar_partitioned_topic_test.go, has passed after "one" attempts
Execution of tests/scalers/redis/redis_standalone_streams_length/redis_standalone_streams_length_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_queue_aad_wi/azure_queue_aad_wi_test.go, has passed after "one" attempts
Execution of tests/internals/scaling_modifiers/scaling_modifiers_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_service_bus_topic_aad_wi/azure_service_bus_topic_aad_wi_test.go, has passed after "one" attempts
Execution of tests/scalers/graphite/graphite_test.go, has passed after "one" attempts
Execution of tests/internals/force_activation/force_activation_test.go, has passed after "one" attempts
Execution of tests/scalers/solace/direct-messaging/solace_dm_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_kinesis_stream/aws_kinesis_stream_test.go, has passed after "one" attempts
Execution of tests/scalers/gcp/gcp_pubsub_workload_identity/gcp_pubsub_workload_identity_test.go, has passed after "one" attempts
Execution of tests/internals/scaling_strategies/eager_scaling_strategy/eager_scaling_strategy_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_pipelines/azure_pipelines_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_cloudwatch_metric_stat/aws_cloudwatch_metric_stat_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_auth/rabbitmq_queue_http_auth_test.go, has passed after "one" attempts
Execution of tests/scalers/gcp/gcp_storage_workload_identity/gcp_storage_workload_identity_test.go, has passed after "one" attempts
Execution of tests/internals/scaled_job_conditions/scaled_job_conditions_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_log_analytics_aad_wi/azure_log_analytics_aad_wi_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_dynamodb_streams_pod_identity/aws_dynamodb_streams_pod_identity_test.go, has passed after "one" attempts
Execution of tests/internals/eventemitter/azureeventgridtopic/azureeventgridtopic_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_pipelines_adv/azure_pipelines_adv_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_cloudwatch_ignore_null_values_false/aws_cloudwatch_ignore_null_values_false_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_application_insights/azure_application_insights_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_eqct/rabbitmq_queue_http_eqct_test.go, has passed after "one" attempts
Execution of tests/scalers/kubernetes_resource/kubernetes_resource_test.go, has passed after "one" attempts
Execution of tests/internals/custom_hpa_name/custom_hpa_name_test.go, has passed after "one" attempts
Execution of tests/scalers/nats_jetstream/nats_jetstream_cluster/nats_jetstream_cluster_test.go, has passed after "one" attempts
Execution of tests/internals/cloudevent_source/cloudevent_source_test.go, has passed after "one" attempts
Execution of tests/scalers/solarwinds/solarwinds_test.go, has passed after "one" attempts
Execution of tests/scalers/influxdb/influxdb_v2/influxdb_v2_test.go, has passed after "one" attempts
Execution of tests/secret-providers/azure_keyvault_workload_identity/azure_keyvault_workload_identity_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_monitor/azure_monitor_test.go, has passed after "one" attempts
Execution of tests/scalers/openstack_swift/openstack_swift_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_cloudwatch_min_metric_value/aws_cloudwatch_min_metric_value_test.go, has passed after "one" attempts
Execution of tests/scalers/ibmmq/ibmmq_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_oauth2/rabbitmq_queue_http_oauth2_test.go, has passed after "one" attempts
Execution of tests/scalers/temporal/temporal_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_regex_vhost/rabbitmq_queue_http_regex_vhost_test.go, has passed after "one" attempts
Execution of tests/secret-providers/trigger_auth_secret/trigger_auth_secret_test.go, has passed after "one" attempts
Execution of tests/scalers/github_runner/github_runner_test.go, has passed after "two" attempts
Execution of tests/internals/events/events_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_event_hub_dapr/azure_event_hub_dapr_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_service_bus_queue_aad_wi/azure_service_bus_queue_aad_wi_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_pipelines_aad_wi/azure_pipelines_aad_wi_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_amqp/rabbitmq_queue_amqp_test.go, has passed after "one" attempts
Execution of tests/scalers/gcp/gcp_pubsub/gcp_pubsub_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_managed_prometheus_pod_identity/aws_managed_prometheus_pod_identity_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_vhost/rabbitmq_queue_http_vhost_test.go, has passed after "one" attempts
Execution of tests/secret-providers/aws_secretmanager_pod_identity/aws_secretmanager_pod_identity_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_service_bus_queue_regex/azure_service_bus_queue_regex_test.go, has passed after "one" attempts
Execution of tests/internals/global_custom_ca/global_custom_ca_test.go, has passed after "one" attempts
Execution of tests/scalers/gcp/gcp_cloud_tasks_workload_identity/gcp_cloud_tasks_workload_identity_test.go, has passed after "one" attempts
Execution of tests/scalers/memory/memory_test.go, has passed after "one" attempts
Execution of tests/scalers/splunk/splunk_test.go, has passed after "one" attempts
Execution of tests/scalers/cpu/cpu_test.go, has passed after "one" attempts
Execution of tests/scalers/nsq/nsq_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_cloudwatch_pod_identity/aws_cloudwatch_pod_identity_test.go, has passed after "one" attempts
Execution of tests/scalers/external_push_scaler_old_proto/external_push_scaler_old_proto_test.go, has passed after "one" attempts
Execution of tests/internals/scaled_job_validation/scaled_job_validation_test.go, has passed after "one" attempts
Execution of tests/scalers/elastic_forecast/elastic_forecast_test.go, has passed after "one" attempts
Execution of tests/scalers/redis/redis_sentinel_streams_length/redis_sentinel_streams_length_test.go, has passed after "one" attempts
Execution of tests/secret-providers/trigger_auth_bound_service_account_token/trigger_auth_bound_service_account_token_test.go, has passed after "one" attempts
Execution of tests/scalers/selenium/selenium_test.go, has passed after "two" attempts
Execution of tests/secret-providers/aws_identity_external_id/aws_identity_external_id_test.go, has passed after "one" attempts
Execution of tests/scalers/external_push_scaler/external_push_scaler_test.go, has passed after "one" attempts
Execution of tests/internals/pause_scale_out/pause_scale_out_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_amqp_vhost/rabbitmq_queue_amqp_vhost_test.go, has passed after "one" attempts
Execution of tests/internals/pause_scale_in/pause_scale_in_test.go, has passed after "one" attempts
Execution of tests/secret-providers/gcp_secret_manager_workload_identity/gcp_secret_manager_workload_identity_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_dynamodb/aws_dynamodb_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_amqp_auth/rabbitmq_queue_amqp_auth_test.go, has passed after "one" attempts
Execution of tests/scalers/mysql/mysql_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_blob_aad_wi/azure_blob_aad_wi_test.go, has passed after "one" attempts
Execution of tests/scalers/redis/redis_standalone_streams_lag/redis_standalone_streams_lag_test.go, has passed after "one" attempts
Execution of tests/scalers/prometheus/prometheus_test.go, has passed after "one" attempts
Execution of tests/scalers/redis/redis_sentinel_streams_lag/redis_sentinel_streams_lag_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_aad_wi/rabbitmq_queue_http_aad_wi_test.go, has passed after "two" attempts
Execution of tests/scalers/azure/azure_service_bus_queue/azure_service_bus_queue_test.go, has passed after "one" attempts
Execution of tests/scalers/newrelic/newrelic_test.go, has passed after "one" attempts
Execution of tests/internals/pause_scaledjob/pause_scaledjob_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_managed_prometheus/azure_managed_prometheus_aad_workload_identity/azure_managed_prometheus_aad_workload_identity_test.go, has passed after "one" attempts
Execution of tests/scalers/predictkube/predictkube_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_dget/rabbitmq_queue_http_dget_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_dynamodb_pod_identity_eks/aws_dynamodb_pod_identity_eks_test.go, has passed after "one" attempts
Execution of tests/internals/polling_cooldown_so/polling_cooldown_so_test.go, has passed after "one" attempts
Execution of tests/internals/fallback/rollouts/fallback_test.go, has passed after "one" attempts
Execution of tests/internals/scaled_object_validation/scaled_object_validation_test.go, has passed after "one" attempts
Execution of tests/scalers/etcd/etcd_cluster/etcd_cluster_test.go, has passed after "one" attempts
Execution of tests/scalers/redis/redis_cluster_streams_length/redis_cluster_streams_length_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_event_hub_blob_metadata/azure_event_hub_blob_metadata_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_sqs_queue_pod_identity_eks/aws_sqs_queue_pod_identity_eks_test.go, has passed after "one" attempts
Execution of tests/scalers/couchdb/couchdb_test.go, has passed after "one" attempts
Execution of tests/scalers/pulsar/pulsar_non_partitioned_topic/pulsar_non_partitioned_topic_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_kinesis_stream_pod_identity/aws_kinesis_stream_pod_identity_test.go, has passed after "one" attempts
Execution of tests/internals/replicaset_scale/replicaset_scale_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_dpratio/rabbitmq_queue_http_dpratio_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_data_explorer_aad_wi/azure_data_explorer_aad_wi_test.go, has passed after "one" attempts
Execution of tests/internals/replica_update_so/replica_update_so_test.go, has passed after "one" attempts
Execution of tests/internals/idle_replicas/idle_replicas_test.go, has passed after "one" attempts
Execution of tests/scalers/redis/redis_sentinel_streams_pending_entries/redis_sentinel_streams_pending_entries_test.go, has passed after "one" attempts
Execution of tests/internals/min_replica_sj/min_replica_sj_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_blob/azure_blob_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_dynamodb_streams_pod_identity_eks/aws_dynamodb_streams_pod_identity_eks_test.go, has passed after "one" attempts
Execution of tests/scalers/gcp/gcp_cloud_tasks/gcp_cloud_tasks_test.go, has passed after "one" attempts
Execution of tests/scalers/etcd/etcd_cluster_auth/etcd_cluster_auth_test.go, has passed after "two" attempts
Execution of tests/scalers/aws/aws_managed_prometheus/aws_managed_prometheus_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_log_analytics/azure_log_analytics_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_data_explorer/azure_data_explorer_test.go, has passed after "one" attempts
Execution of tests/internals/restore_original/restore_original_test.go, has passed after "one" attempts
Execution of tests/internals/trigger_update_so/trigger_update_so_test.go, has passed after "one" attempts
Execution of tests/scalers/gcp/gcp_stackdriver/gcp_stackdriver_test.go, has passed after "one" attempts
Execution of tests/scalers/dynatrace/dynatrace_test.go, has passed after "one" attempts
Execution of tests/scalers/metrics_api/metrics_api_test.go, has passed after "one" attempts
Execution of tests/scalers/redis/redis_sentinel_lists/redis_sentinel_lists_test.go, has passed after "one" attempts
Execution of tests/scalers/redis/redis_standalone_streams_pending_entries/redis_standalone_streams_test_pending_entries_test.go, has passed after "one" attempts
Execution of tests/internals/status_update/status_update_test.go, has passed after "one" attempts
Execution of tests/scalers/gcp/gcp_prometheus_workload_identity/gcp_prometheus_workload_identity_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_event_hub_dapr_wi/azure_event_hub_dapr_wi_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_application_insights_aad_wi/azure_application_insights_aad_wi_test.go, has passed after "one" attempts
Execution of tests/scalers/solr/solr_test.go, has passed after "one" attempts
Execution of tests/internals/pause_scale_in_restore/pause_scale_in_restore_test.go, has passed after "one" attempts
Execution of tests/scalers/cassandra/cassandra_test.go, has passed after "one" attempts
Execution of tests/internals/file_based_auth/file_based_auth_test.go, has passed after "one" attempts
Execution of tests/scalers/forgejo_runner/forgejo_runner_test.go, has passed after "one" attempts
Execution of tests/internals/initial_delay_cooldownperiod/initial_delay_cooldownperiod_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http/rabbitmq_queue_http_test.go, has passed after "one" attempts
Execution of tests/scalers/solace/solace_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_event_hub_go_sdk/azure_event_hub_go_sdk_test.go, has passed after "one" attempts
Execution of tests/scalers/elasticsearch/elasticsearch_test.go, has passed after "one" attempts
Execution of tests/internals/fallback/deployments/fallback_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_event_hub_blob_metadata_wi/azure_event_hub_blob_metadata_wi_test.go, has passed after "one" attempts
Execution of tests/scalers/loki/loki_test.go, has passed after "one" attempts
Execution of tests/scalers/beanstalkd/beanstalkd_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_monitor_aad_wi/azure_monitor_aad_wi_test.go, has passed after "one" attempts
Execution of tests/internals/pause_scaledobject_explicitly/pause_scaledobject_explicitly_test.go, has passed after "one" attempts
Execution of tests/scalers/gcp/gcp_storage/gcp_storage_test.go, has passed after "one" attempts
Execution of tests/scalers/arangodb/arangodb_test.go, has passed after "one" attempts
Execution of tests/sequential/disruption/disruption_test.go, has passed after "one" attempts
Execution of tests/sequential/opentelemetry_metrics/opentelemetry_metrics_test.go, has passed after "one" attempts
Execution of tests/sequential/datadog_dca/datadog_dca_test.go, has passed after "one" attempts
failed tests: 7
Execution of tests/scalers/apache_kafka/apache_kafka_test.go, has failed after "three" attempts
Execution of tests/scalers/gcp/gcp_pubsub_topic/gcp_pubsub_topic_test.go, has failed after "three" attempts
Execution of tests/scalers/splunk_observability/splunk_observability_test.go, has failed after "three" attempts
Execution of tests/scalers/kafka/kafka_test.go, has failed after "three" attempts
Execution of tests/secret-providers/hashicorp_vault/hashicorp_vault_test.go, has failed after "three" attempts
Execution of tests/sequential/prometheus_metrics/prometheus_metrics_test.go, has failed after "two" attempts
Execution of tests/sequential/broken_scaledobject_tolerancy/broken_scaledobject_tolerancy_test.go, has failed after "two" attempts

@rickbrouwer

rickbrouwer commented May 27, 2026

Copy link
Copy Markdown
Member

/run-e2e kafka*|gcp*|splunk|hashicorp|sequential
Update: You can check the progress here

@rickbrouwer rickbrouwer added merge-conflict This PR has a merge conflict and removed waiting-for-e2e labels May 28, 2026
…s-nil-gvkr

# Conflicts:
#	pkg/scaling/resolver/scale_resolvers_test.go
@ggarb

ggarb commented Jun 2, 2026

Copy link
Copy Markdown
Contributor Author

@rickbrouwer are these e2e test failures just flaky?

@rickbrouwer rickbrouwer removed the merge-conflict This PR has a merge conflict label Jun 2, 2026
@rickbrouwer

rickbrouwer commented Jun 2, 2026

Copy link
Copy Markdown
Member

/run-e2e
Update: You can check the progress here

passed tests: 192
Execution of tests/secret-providers/azure_keyvault/azure_keyvault_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_service_bus_queue_aad_wi/azure_service_bus_queue_aad_wi_test.go, has passed after "one" attempts
Execution of tests/internals/pause_scale_in/pause_scale_in_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_cloudwatch_min_metric_value/aws_cloudwatch_min_metric_value_test.go, has passed after "one" attempts
Execution of tests/scalers/cron/cron_test.go, has passed after "one" attempts
Execution of tests/internals/trigger_authentication_validation/trigger_authentication_validation_test.go, has passed after "one" attempts
Execution of tests/internals/initial_delay_cooldownperiod/initial_delay_cooldownperiod_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_sqs_queue/aws_sqs_queue_test.go, has passed after "one" attempts
Execution of tests/scalers/splunk/splunk_test.go, has passed after "one" attempts
Execution of tests/scalers/postgresql/azure_postgresql_flex_server_aad_wi/azure_postgresql_flex_server_aad_wi_test.go, has passed after "one" attempts
Execution of tests/scalers/postgresql/postgresql_high_available/postgresql_ha_test.go, has passed after "one" attempts
Execution of tests/scalers/redis/redis_standalone_streams_length/redis_standalone_streams_length_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_oauth2/rabbitmq_queue_http_oauth2_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_event_hub_go_sdk/azure_event_hub_go_sdk_test.go, has passed after "one" attempts
Execution of tests/scalers/artemis/artemis_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_queue/azure_queue_test.go, has passed after "one" attempts
Execution of tests/internals/value_metric_type/value_metric_type_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_regex_vhost/rabbitmq_queue_http_regex_vhost_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_eqct/rabbitmq_queue_http_eqct_test.go, has passed after "two" attempts
Execution of tests/scalers/mysql/mysql_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_vhost/rabbitmq_queue_http_vhost_test.go, has passed after "one" attempts
Execution of tests/internals/custom_hpa_name/custom_hpa_name_test.go, has passed after "one" attempts
Execution of tests/internals/scaling_strategies/eager_scaling_strategy/eager_scaling_strategy_test.go, has passed after "two" attempts
Execution of tests/scalers/pulsar/pulsar_partitioned_topic/pulsar_partitioned_topic_test.go, has passed after "one" attempts
Execution of tests/scalers/external_scaler_sj/external_scaler_sj_test.go, has passed after "one" attempts
Execution of tests/internals/global_custom_ca/global_custom_ca_test.go, has passed after "one" attempts
Execution of tests/scalers/cassandra/cassandra_test.go, has passed after "one" attempts
Execution of tests/scalers/solr/solr_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_cloudwatch_pod_identity/aws_cloudwatch_pod_identity_test.go, has passed after "one" attempts
Execution of tests/internals/scaling_strategies/accurate_scaling_strategy/accurate_scaling_strategy_test.go, has passed after "one" attempts
Execution of tests/secret-providers/gcp_secret_manager/gcp_secret_manager_test.go, has passed after "one" attempts
Execution of tests/scalers/influxdb/influxdb_v2/influxdb_v2_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_dynamodb_streams_pod_identity/aws_dynamodb_streams_pod_identity_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_cloudwatch_metric_stat/aws_cloudwatch_metric_stat_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_kinesis_stream/aws_kinesis_stream_test.go, has passed after "one" attempts
Execution of tests/internals/fallback/fallback_scaling_modifiers_test.go, has passed after "one" attempts
Execution of tests/scalers/couchdb/couchdb_test.go, has passed after "one" attempts
Execution of tests/scalers/redis/redis_sentinel_lists/redis_sentinel_lists_test.go, has passed after "one" attempts
Execution of tests/internals/pause_scale_out/pause_scale_out_test.go, has passed after "one" attempts
Execution of tests/scalers/solace/direct-messaging/solace_dm_test.go, has passed after "one" attempts
Execution of tests/secret-providers/aws_secretmanager/aws_secretmanager_test.go, has passed after "one" attempts
Execution of tests/internals/scaled_job_conditions/scaled_job_conditions_test.go, has passed after "one" attempts
Execution of tests/internals/idle_replicas/idle_replicas_test.go, has passed after "one" attempts
Execution of tests/internals/scaled_job_validation/scaled_job_validation_test.go, has passed after "one" attempts
Execution of tests/scalers/external_push_scaler/external_push_scaler_test.go, has passed after "one" attempts
Execution of tests/scalers/nsq/nsq_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_cloudwatch_ignore_null_values_false/aws_cloudwatch_ignore_null_values_false_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_cloudwatch_cross_account/aws_cloudwatch_cross_account_test.go, has passed after "one" attempts
Execution of tests/scalers/mongodb/mongodb_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_service_bus_queue/azure_service_bus_queue_test.go, has passed after "one" attempts
Execution of tests/scalers/gcp/gcp_cloud_tasks_workload_identity/gcp_cloud_tasks_workload_identity_test.go, has passed after "two" attempts
Execution of tests/scalers/redis/redis_sentinel_streams_lag/redis_sentinel_streams_lag_test.go, has passed after "two" attempts
Execution of tests/scalers/arangodb/arangodb_test.go, has passed after "one" attempts
Execution of tests/scalers/redis/redis_cluster_streams_pending_entries/redis_cluster_streams_pending_entries_test.go, has passed after "one" attempts
Execution of tests/scalers/openstack_swift/openstack_swift_test.go, has passed after "one" attempts
Execution of tests/scalers/influxdb/influxdb_v3/influxdb_v3_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_managed_prometheus/aws_managed_prometheus_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_sqs_queue_pod_identity_eks/aws_sqs_queue_pod_identity_eks_test.go, has passed after "one" attempts
Execution of tests/internals/force_activation/force_activation_test.go, has passed after "one" attempts
Execution of tests/scalers/gcp/gcp_storage_workload_identity/gcp_storage_workload_identity_test.go, has passed after "one" attempts
Execution of tests/scalers/gcp/gcp_pubsub_workload_identity/gcp_pubsub_workload_identity_test.go, has passed after "one" attempts
Execution of tests/internals/cache_metrics/cache_metrics_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_managed_prometheus_pod_identity/aws_managed_prometheus_pod_identity_test.go, has passed after "one" attempts
Execution of tests/scalers/splunk_observability/splunk_observability_test.go, has passed after "one" attempts
Execution of tests/scalers/solarwinds/solarwinds_test.go, has passed after "one" attempts
Execution of tests/internals/min_replica_sj/min_replica_sj_test.go, has passed after "one" attempts
Execution of tests/internals/trigger_update_so/trigger_update_so_test.go, has passed after "one" attempts
Execution of tests/scalers/predictkube/predictkube_test.go, has passed after "one" attempts
Execution of tests/scalers/redis/redis_standalone_lists/redis_standalone_lists_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_amqp_vhost/rabbitmq_queue_amqp_vhost_test.go, has passed after "one" attempts
Execution of tests/scalers/gcp/gcp_cloud_tasks/gcp_cloud_tasks_test.go, has passed after "one" attempts
Execution of tests/internals/pause_scaledjob/pause_scaledjob_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_event_hub_blob_metadata/azure_event_hub_blob_metadata_test.go, has passed after "one" attempts
Execution of tests/scalers/gcp/gcp_pubsub_topic/gcp_pubsub_topic_test.go, has passed after "two" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_aad_wi/rabbitmq_queue_http_aad_wi_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_dynamodb_streams_pod_identity_eks/aws_dynamodb_streams_pod_identity_eks_test.go, has passed after "one" attempts
Execution of tests/secret-providers/aws_secretmanager_pod_identity/aws_secretmanager_pod_identity_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_application_insights_aad_wi/azure_application_insights_aad_wi_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_kinesis_stream_pod_identity/aws_kinesis_stream_pod_identity_test.go, has passed after "one" attempts
Execution of tests/scalers/activemq/activemq_test.go, has passed after "one" attempts
Execution of tests/secret-providers/aws_identity_assume_role/aws_identity_assume_role_test.go, has passed after "one" attempts
Execution of tests/scalers/opensearch/opensearch_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_service_bus_queue_regex/azure_service_bus_queue_regex_test.go, has passed after "one" attempts
Execution of tests/internals/replica_update_so/replica_update_so_test.go, has passed after "one" attempts
Execution of tests/scalers/graphite/graphite_test.go, has passed after "one" attempts
Execution of tests/scalers/redis/redis_standalone_streams_lag/redis_standalone_streams_lag_test.go, has passed after "one" attempts
Execution of tests/scalers/gcp/gcp_stackdriver_workload_identity/gcp_stackdriver_workload_identity_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_event_hub_blob_metadata_wi/azure_event_hub_blob_metadata_wi_test.go, has passed after "one" attempts
Execution of tests/scalers/kafka/kafka_test.go, has passed after "one" attempts
Execution of tests/secret-providers/gcp_secret_manager_workload_identity/gcp_secret_manager_workload_identity_test.go, has passed after "one" attempts
Execution of tests/internals/status_update/status_update_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_managed_prometheus/azure_managed_prometheus_aad_workload_identity/azure_managed_prometheus_aad_workload_identity_test.go, has passed after "one" attempts
Execution of tests/internals/cloudevent_source/cloudevent_source_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_pipelines/azure_pipelines_test.go, has passed after "one" attempts
Execution of tests/scalers/solace/solace_test.go, has passed after "two" attempts
Execution of tests/scalers/redis/redis_standalone_streams_pending_entries/redis_standalone_streams_test_pending_entries_test.go, has passed after "one" attempts
Execution of tests/internals/scaled_object_validation/scaled_object_validation_test.go, has passed after "one" attempts
Execution of tests/scalers/nats_jetstream/nats_jetstream_cluster/nats_jetstream_cluster_test.go, has passed after "one" attempts
Execution of tests/scalers/pulsar/pulsar_non_partitioned_topic/pulsar_non_partitioned_topic_test.go, has passed after "one" attempts
Execution of tests/scalers/gcp/gcp_prometheus_workload_identity/gcp_prometheus_workload_identity_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_dpratio/rabbitmq_queue_http_dpratio_test.go, has passed after "one" attempts
Execution of tests/scalers/gcp/gcp_storage/gcp_storage_test.go, has passed after "one" attempts
Execution of tests/internals/restore_original/restore_original_test.go, has passed after "one" attempts
Execution of tests/scalers/redis/redis_cluster_streams_length/redis_cluster_streams_length_test.go, has passed after "one" attempts
Execution of tests/scalers/beanstalkd/beanstalkd_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_queue_aad_wi/azure_queue_aad_wi_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_auth/rabbitmq_queue_http_auth_test.go, has passed after "one" attempts
Execution of tests/scalers/dynatrace/dynatrace_test.go, has passed after "one" attempts
Execution of tests/internals/pause_scaledobject_explicitly/pause_scaledobject_explicitly_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_dynamodb/aws_dynamodb_test.go, has passed after "one" attempts
Execution of tests/scalers/selenium/selenium_test.go, has passed after "one" attempts
Execution of tests/scalers/kubernetes_workload/kubernetes_workload_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_dynamodb_streams/aws_dynamodb_streams_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_sqs_queue_pod_identity/aws_sqs_queue_pod_identity_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_monitor/azure_monitor_test.go, has passed after "one" attempts
Execution of tests/secret-providers/trigger_auth_bound_service_account_token/trigger_auth_bound_service_account_token_test.go, has passed after "one" attempts
Execution of tests/internals/file_based_auth/file_based_auth_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_regex/rabbitmq_queue_http_regex_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_dget/rabbitmq_queue_http_dget_test.go, has passed after "one" attempts
Execution of tests/scalers/mssql/azure_mssql_aad_wi/azure_mssql_aad_wi_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_event_hub_dapr_wi/azure_event_hub_dapr_wi_test.go, has passed after "one" attempts
Execution of tests/secret-providers/azure_keyvault_workload_identity/azure_keyvault_workload_identity_test.go, has passed after "one" attempts
Execution of tests/internals/pause_scale_in_restore/pause_scale_in_restore_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_pipelines_adv/azure_pipelines_adv_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_service_bus_topic_aad_wi/azure_service_bus_topic_aad_wi_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_event_hub_dapr/azure_event_hub_dapr_test.go, has passed after "one" attempts
Execution of tests/internals/polling_cooldown_so/polling_cooldown_so_test.go, has passed after "one" attempts
Execution of tests/scalers/external_scaler_so/external_scaler_so_test.go, has passed after "one" attempts
Execution of tests/scalers/loki/loki_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_cloudwatch_expression/aws_cloudwatch_expression_test.go, has passed after "one" attempts
Execution of tests/internals/update_ta/update_ta_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_cloudwatch/aws_cloudwatch_test.go, has passed after "one" attempts
Execution of tests/scalers/gcp/gcp_pubsub/gcp_pubsub_test.go, has passed after "one" attempts
Execution of tests/scalers/elastic_forecast/elastic_forecast_test.go, has passed after "one" attempts
Execution of tests/scalers/nats_jetstream/nats_jetstream_standalone/nats_jetstream_standalone_test.go, has passed after "one" attempts
Execution of tests/scalers/redis/redis_cluster_lists/redis_cluster_lists_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http/rabbitmq_queue_http_test.go, has passed after "one" attempts
Execution of tests/internals/replicaset_scale/replicaset_scale_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_service_bus_topic/azure_service_bus_topic_test.go, has passed after "one" attempts
Execution of tests/secret-providers/aws_identity_external_id/aws_identity_external_id_test.go, has passed after "one" attempts
Execution of tests/scalers/github_runner/github_runner_test.go, has passed after "three" attempts
Execution of tests/scalers/memory/memory_test.go, has passed after "one" attempts
Execution of tests/internals/pause_scaledobject/pause_scaledobject_test.go, has passed after "one" attempts
Execution of tests/internals/scaling_modifiers/scaling_modifiers_test.go, has passed after "one" attempts
Execution of tests/secret-providers/trigger_auth_secret/trigger_auth_secret_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_dynamodb_pod_identity/aws_dynamodb_pod_identity_test.go, has passed after "one" attempts
Execution of tests/internals/eventemitter/azureeventgridtopic/azureeventgridtopic_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_service_bus_topic_regex/azure_service_bus_topic_regex_test.go, has passed after "one" attempts
Execution of tests/scalers/kubernetes_resource/kubernetes_resource_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_http_regex_aad_wi/rabbitmq_queue_http_regex_aad_wi_test.go, has passed after "two" attempts
Execution of tests/scalers/azure/azure_log_analytics/azure_log_analytics_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_blob_aad_wi/azure_blob_aad_wi_test.go, has passed after "one" attempts
Execution of tests/scalers/etcd/etcd_cluster_auth/etcd_cluster_auth_test.go, has passed after "one" attempts
Execution of tests/internals/subresource_scale/subresource_scale_test.go, has passed after "one" attempts
Execution of tests/scalers/external_push_scaler_old_proto/external_push_scaler_old_proto_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_log_analytics_aad_wi/azure_log_analytics_aad_wi_test.go, has passed after "one" attempts
Execution of tests/scalers/postgresql/postgresql_standalone/postgresql_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_dynamodb_pod_identity_eks/aws_dynamodb_pod_identity_eks_test.go, has passed after "one" attempts
Execution of tests/scalers/forgejo_runner/forgejo_runner_test.go, has passed after "one" attempts
Execution of tests/scalers/prometheus/prometheus_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_cloudwatch_pod_identity_eks/aws_cloudwatch_pod_identity_eks_test.go, has passed after "one" attempts
Execution of tests/secret-providers/azure_workload_identity_user_assigned/azure_workload_identity_user_assigned_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_monitor_aad_wi/azure_monitor_aad_wi_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_amqp/rabbitmq_queue_amqp_test.go, has passed after "one" attempts
Execution of tests/scalers/redis/redis_sentinel_streams_pending_entries/redis_sentinel_streams_pending_entries_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_blob/azure_blob_test.go, has passed after "one" attempts
Execution of tests/scalers/aws/aws_kinesis_stream_pod_identity_eks/aws_kinesis_stream_pod_identity_eks_test.go, has passed after "one" attempts
Execution of tests/scalers/redis/redis_cluster_streams_lag/redis_cluster_streams_lag_test.go, has passed after "one" attempts
Execution of tests/scalers/rabbitmq/rabbitmq_queue_amqp_auth/rabbitmq_queue_amqp_auth_test.go, has passed after "one" attempts
Execution of tests/scalers/mssql/mssql_test.go, has passed after "one" attempts
Execution of tests/scalers/ibmmq/ibmmq_test.go, has passed after "two" attempts
Execution of tests/scalers/elasticsearch/elasticsearch_test.go, has passed after "one" attempts
Execution of tests/scalers/redis/redis_sentinel_streams_length/redis_sentinel_streams_length_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_event_hub_aad_wi/azure_event_hub_aad_wi_test.go, has passed after "one" attempts
Execution of tests/scalers/gcp/gcp_stackdriver/gcp_stackdriver_test.go, has passed after "one" attempts
Execution of tests/scalers/sumologic/sumologic_test.go, has passed after "one" attempts
Execution of tests/scalers/temporal/temporal_test.go, has passed after "one" attempts
Execution of tests/scalers/etcd/etcd_cluster/etcd_cluster_test.go, has passed after "one" attempts
Execution of tests/scalers/azure/azure_pipelines_aad_wi/azure_pipelines_aad_wi_test.go, has passed after "one" attempts
Execution of tests/scalers/cpu/cpu_test.go, has passed after "one" attempts
Execution of tests/secret-providers/hashicorp_vault/hashicorp_vault_test.go, has passed after "one" attempts
Execution of tests/scalers/dynatrace_dql/dynatrace_dql_test.go, has passed after "one" attempts
Execution of tests/scalers/datadog/datadog_api/datadog_api_test.go, has passed after "one" attempts
Execution of tests/scalers/newrelic/newrelic_test.go, has passed after "one" attempts
Execution of tests/scalers/apache_kafka/apache_kafka_test.go, has passed after "two" attempts
Execution of tests/scalers/azure/azure_application_insights/azure_application_insights_test.go, has passed after "one" attempts
Execution of tests/internals/fallback/deployments/fallback_test.go, has passed after "one" attempts
Execution of tests/internals/fallback/rollouts/fallback_test.go, has passed after "one" attempts
Execution of tests/sequential/broken_scaledobject_tolerancy/broken_scaledobject_tolerancy_test.go, has passed after "one" attempts
Execution of tests/sequential/disruption/disruption_test.go, has passed after "one" attempts
Execution of tests/sequential/prometheus_metrics/prometheus_metrics_test.go, has passed after "one" attempts
Execution of tests/sequential/opentelemetry_metrics/opentelemetry_metrics_test.go, has passed after "one" attempts
failed tests: 5
Execution of tests/scalers/azure/azure_data_explorer/azure_data_explorer_test.go, has failed after "three" attempts
Execution of tests/scalers/azure/azure_data_explorer_aad_wi/azure_data_explorer_aad_wi_test.go, has failed after "three" attempts
Execution of tests/internals/events/events_test.go, has failed after "three" attempts
Execution of tests/scalers/metrics_api/metrics_api_test.go, has failed after "three" attempts
Execution of tests/sequential/datadog_dca/datadog_dca_test.go, has failed after "two" attempts

@ggarber1

ggarber1 commented Jun 2, 2026

Copy link
Copy Markdown

Thanks for the re-runs! The e2e failures look like environmental flakes, not a regression from this change — the evidence is that the two most recent full runs fail on completely disjoint sets of tests:

Run 26496139439 (05-27) — 7 failed Run 26821317939 (06-02) — 5 failed
apache_kafka, kafka azure_data_explorer
gcp_pubsub_topic azure_data_explorer_aad_wi
splunk_observability events
hashicorp_vault metrics_api
prometheus_metrics datadog_dca
broken_scaledobject_tolerancy

No test fails in both runs. The only two that were plausibly related to this PR's scaling path — prometheus_metrics and broken_scaledobject_tolerancy — both pass in the latest run. All the failures are external-credential/infra-dependent scalers (Azure Data Explorer, Datadog, Kafka, GCP, Splunk, Vault) plus the occasional events/metrics_api flake.

Mechanically a regression isn't possible here either: GetCurrentReplicas is called per-ScaledObject inside RequestScale, so an error on a broken SO only sets that SO's Ready condition false — it can't block other ScaledObjects from scaling. And before this change a nil Status.ScaleTargetGVKR would panic the operator (#4389), so replacing the panic with an early error return strictly improves tolerance.

Happy to re-trigger if you'd like a clean run, but I believe the remaining failures are unrelated flakes.

@rickbrouwer

rickbrouwer commented Jun 19, 2026

Copy link
Copy Markdown
Member

/run-e2e internals
Update: You can check the progress here

passed tests: 36
Execution of tests/internals/scaling_strategies/accurate_scaling_strategy/accurate_scaling_strategy_test.go, has passed after "one" attempts
Execution of tests/internals/trigger_authentication_validation/trigger_authentication_validation_test.go, has passed after "one" attempts
Execution of tests/internals/status_update/status_update_test.go, has passed after "one" attempts
Execution of tests/internals/idle_replicas/idle_replicas_test.go, has passed after "one" attempts
Execution of tests/internals/scaled_job_validation/scaled_job_validation_test.go, has passed after "one" attempts
Execution of tests/internals/file_based_auth/file_based_auth_test.go, has passed after "one" attempts
Execution of tests/internals/scaled_object_validation/scaled_object_validation_test.go, has passed after "one" attempts
Execution of tests/internals/min_replica_sj/min_replica_sj_test.go, has passed after "one" attempts
Execution of tests/internals/eventemitter/azureeventgridtopic/azureeventgridtopic_test.go, has passed after "two" attempts
Execution of tests/internals/replicaset_scale/replicaset_scale_test.go, has passed after "one" attempts
Execution of tests/internals/pause_scale_out/pause_scale_out_test.go, has passed after "one" attempts
Execution of tests/internals/custom_hpa_name/custom_hpa_name_test.go, has passed after "one" attempts
Execution of tests/internals/pause_scale_in_restore/pause_scale_in_restore_test.go, has passed after "one" attempts
Execution of tests/internals/value_metric_type/value_metric_type_test.go, has passed after "one" attempts
Execution of tests/internals/events/events_test.go, has passed after "one" attempts
Execution of tests/internals/global_custom_ca/global_custom_ca_test.go, has passed after "one" attempts
Execution of tests/internals/subresource_scale/subresource_scale_test.go, has passed after "one" attempts
Execution of tests/internals/pause_scaledobject/pause_scaledobject_test.go, has passed after "one" attempts
Execution of tests/internals/trigger_update_so/trigger_update_so_test.go, has passed after "one" attempts
Execution of tests/internals/restore_original/restore_original_test.go, has passed after "one" attempts
Execution of tests/internals/replica_update_so/replica_update_so_test.go, has passed after "one" attempts
Execution of tests/internals/scaling_strategies/eager_scaling_strategy/eager_scaling_strategy_test.go, has passed after "one" attempts
Execution of tests/internals/force_activation/force_activation_test.go, has passed after "two" attempts
Execution of tests/internals/pause_scale_in/pause_scale_in_test.go, has passed after "one" attempts
Execution of tests/internals/update_ta/update_ta_test.go, has passed after "one" attempts
Execution of tests/internals/cache_metrics/cache_metrics_test.go, has passed after "one" attempts
Execution of tests/internals/scaled_job_conditions/scaled_job_conditions_test.go, has passed after "one" attempts
Execution of tests/internals/cloudevent_source/cloudevent_source_test.go, has passed after "one" attempts
Execution of tests/internals/initial_delay_cooldownperiod/initial_delay_cooldownperiod_test.go, has passed after "one" attempts
Execution of tests/internals/pause_scaledjob/pause_scaledjob_test.go, has passed after "one" attempts
Execution of tests/internals/fallback/fallback_scaling_modifiers_test.go, has passed after "one" attempts
Execution of tests/internals/scaling_modifiers/scaling_modifiers_test.go, has passed after "one" attempts
Execution of tests/internals/polling_cooldown_so/polling_cooldown_so_test.go, has passed after "one" attempts
Execution of tests/internals/pause_scaledobject_explicitly/pause_scaledobject_explicitly_test.go, has passed after "one" attempts
Execution of tests/internals/fallback/deployments/fallback_test.go, has passed after "one" attempts
Execution of tests/internals/fallback/rollouts/fallback_test.go, has passed after "two" attempts
failed tests: 0

@rickbrouwer rickbrouwer enabled auto-merge (squash) June 19, 2026 10:13
@rickbrouwer rickbrouwer merged commit c5b577c into kedacore:main Jun 19, 2026
24 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants