Commit d1f616d
authored
fix: normalize Additional Host Path Mounts textarea to a comma list (#740)
* fix: normalize Additional Host Path Mounts textarea to a comma list
The field's help text says "one per line", but the multiline value was
rendered into a single-quoted YAML scalar, which YAML-folds the newline
into a space. runtime-api then split only on commas/newlines, so the
space-joined value became one malformed token and was skipped — no
mounts. Normalize newlines to a comma list at render time (the proven
splitList/trim/join idiom used for the model textareas), so the env var
is always a clean single-line comma list. Works with the currently
deployed runtime-api too, no image rebuild required.
* chore: touch image-loader to trigger required chart CI
The branch-protection ruleset requires the 9 path-filtered
publish-charts(...) checks, which never run on replicated/-only PRs,
leaving them permanently BLOCKED. Touch a standalone chart to fire the
chart workflow so those checks report. (Also a true doc note.)1 parent aa5a2e8 commit d1f616d
2 files changed
Lines changed: 3 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
1 | 2 | | |
2 | 3 | | |
3 | 4 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
314 | 314 | | |
315 | 315 | | |
316 | 316 | | |
317 | | - | |
| 317 | + | |
| 318 | + | |
318 | 319 | | |
319 | 320 | | |
320 | 321 | | |
| |||
0 commit comments