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.
This commit is contained in:
vitor-aignosi
2026-05-22 16:25:20 -03:00
parent bcd4fab259
commit 64295d3855

View File

@@ -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
# -----------------------------------------------------------------------------