You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
π Enable scale-from-zero on CKS and OCP with KEDA support
- Remove environment skip in scale_from_zero_test.go β test now runs on
all platforms (KEDA must be pre-installed on the cluster)
- Add retry logic to detect_inference_pool_api_group() to handle the race
where InferencePool instances haven't been created yet after helmfile deploy
- Make deploy_keda() skip helm install when KEDA CRD already exists
(pre-installed on OCP via CMA operator, on CKS via helm)
- Remove environment guard on SCALER_BACKEND=keda β supported everywhere
Signed-off-by: Andy Anderson <andy@clubanderson.com>
Signed-off-by: Andrew Anderson <andy@clubanderson.com>
# Deploy scaler backend: KEDA or Prometheus Adapter
1692
-
# KEDA in this script is for kind-emulator e2e only; on OpenShift use the platform CMA / Prometheus Adapter.
1717
+
# KEDA is supported on all environments. On OpenShift and CKS it is typically
1718
+
# pre-installed on the cluster; deploy_keda will detect and skip the install.
1693
1719
if [ "$SCALER_BACKEND"="keda" ];then
1694
-
if [ "$ENVIRONMENT"!="kind-emulator" ];then
1695
-
log_error "KEDA scaler backend is only supported for kind-emulator environment (ENVIRONMENT=kind-emulator). Current: ENVIRONMENT=$ENVIRONMENT. Use SCALER_BACKEND=prometheus-adapter or run with ENVIRONMENT=kind-emulator."
0 commit comments