Skip to content

Copying helm values from the interface does not work #1044

@micedre

Description

@micedre

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: ****

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions