Fix: change v1.JSON for HelmRelease to pointer

pull/185/head
Hidde Beydals 5 years ago
parent 22ff25269d
commit 2078d048a1

@ -154,7 +154,7 @@ func createHelmReleaseCmdRun(cmd *cobra.Command, args []string) error {
return fmt.Errorf("converting values to JSON from %s failed: %w", hrValuesFile, err)
}
helmRelease.Spec.Values = apiextensionsv1.JSON{Raw: json}
helmRelease.Spec.Values = &apiextensionsv1.JSON{Raw: json}
}
if export {

Loading…
Cancel
Save