You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# This would be an attempt to not create any nodes via a specifying it in a secondary values file.# It wouldn't work bec the nodes section of the chart's default values.yaml file will get merged into# it, creating a rolling node.nodes: {}# let this work instead to not create any nodes:nodes: null
A use case would be wanting to only deploy a remote signer.
Resolving this issue will require updates in config generator, with possibly needing other updates as well. For example:
NODES=json.loads(os.environ["NODES"])
The above will fail bec it is expecting a dict for the NODES env var.
The text was updated successfully, but these errors were encountered:
For example:
A use case would be wanting to only deploy a remote signer.
Resolving this issue will require updates in config generator, with possibly needing other updates as well. For example:
The above will fail bec it is expecting a dict for the NODES env var.
The text was updated successfully, but these errors were encountered: