When copying helm values from onyxia web ui (to use them in another service manually for instance), the copied values are not working :
- 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: ****