Fix: change v1.JSON for HelmRelease to pointer

This commit is contained in:
Hidde Beydals
2020-08-28 15:20:34 +02:00
parent 22ff25269d
commit 2078d048a1

View File

@ -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 {