From 64295d3855f3a0647a95a0ae42785d880192c7e5 Mon Sep 17 00:00:00 2001 From: vitor-aignosi Date: Fri, 22 May 2026 16:25:20 -0300 Subject: [PATCH] refactor: update runtime configuration in values.yaml - Changed the structure of the `runtimes` section in `values.yaml` to use a key-value format for better clarity and organization, replacing the previous list format. - Updated the names of the runtimes to be keys, improving readability and maintainability of the configuration. --- values.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/values.yaml b/values.yaml index bb88584..59fa408 100644 --- a/values.yaml +++ b/values.yaml @@ -211,10 +211,10 @@ global: # Each runtime inherits settings from `global` (resources, env, probes, autoscaling) # unless overridden here. runtimes: - - name: "basic" + basic: # Replicas for this runtime. Replaces the old replicaCount. replicas: 1 - - name: "xgboost" + xgboost: replicas: 1 # -----------------------------------------------------------------------------