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
Given that this provider can now support dynamic types and the fact that any object type is valid for the Helm values, it would make sense to make use of dynamic types when specifying chart values. This should be relevant to the set inputs, but would be even more powerful for the values input. The primary driver here is using the provider like Helm and passing in a block of YAML (or HCL) and getting a better diff on the changes.
Our current pattern is as follows and it results in a poor diff experience as the whole values string is shown for any change.
If the values type was made dynamic it could support list of strings, a single string, list of object, or object; and the diff would only show the actual changes instead of the whole string.
Potential Terraform Configuration
The example from above could then be represented by the following code.
Description
Given that this provider can now support dynamic types and the fact that any object type is valid for the Helm values, it would make sense to make use of dynamic types when specifying chart values. This should be relevant to the
set
inputs, but would be even more powerful for thevalues
input. The primary driver here is using the provider like Helm and passing in a block of YAML (or HCL) and getting a better diff on the changes.Our current pattern is as follows and it results in a poor diff experience as the whole
values
string is shown for any change.If the values type was made dynamic it could support list of strings, a single string, list of object, or object; and the diff would only show the actual changes instead of the whole string.
Potential Terraform Configuration
The example from above could then be represented by the following code.
References
Community Note
The text was updated successfully, but these errors were encountered: