Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion replicated/openhands.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,8 @@ spec:
CPU_LIMIT: 'repl{{ ConfigOption "sandbox_cpu_limit" }}'
LOG_LEVEL: 'repl{{ ConfigOption "log_level" }}'
ADDITIONAL_CONFIGMAPS: "openhands-ca-bundle:/etc/openhands/ca-bundle"
ADDITIONAL_HOST_PATHS: 'repl{{ ConfigOption "sandbox_additional_host_paths" }}'
# Textarea is "one per line"; normalize to a comma list so a multiline value isn't YAML-folded into a space-joined token.
ADDITIONAL_HOST_PATHS: 'repl{{ $hp := list }}repl{{ range $raw := splitList "\n" (ConfigOption "sandbox_additional_host_paths" | replace "\r" "\n") }}repl{{ $e := trim $raw }}repl{{ if $e }}repl{{ $hp = append $hp $e }}repl{{ end }}repl{{ end }}repl{{ $hp | join "," }}'
SANDBOX_KVM_ENABLED: 'repl{{ ConfigOptionEquals "sandbox_kvm_enabled" "1" }}'
KVM_DEVICE_RESOURCE: "smarter-devices/kvm"
kvm:
Expand Down
Loading