onyxia icon indicating copy to clipboard operation
onyxia copied to clipboard

Copying helm values from the interface does not work

Open micedre opened this issue 5 months ago • 0 comments

When copying helm values from onyxia web ui (to use them in another service manually for instance), the copied values are not working :

Image
  • All numeric variable are treated as string, which causes errors when passing them to the chart :
networking:
  user:
    port: "5000"
    enabled: false

should be

networking:
  user:
    port: 5000
    enabled: false
  • the network policy is missing configuration for ingress to work :
security:
  networkPolicy:
    enabled: true

should be something like :

from:
    - ipBlock:
        cidr: ****

micedre avatar Nov 04 '25 15:11 micedre