mirror of
https://github.com/fluxcd/flux2.git
synced 2026-02-20 22:51:47 +00:00
Fix: change v1.JSON for HelmRelease to pointer
This commit is contained in:
parent
22ff25269d
commit
2078d048a1
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
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 {
|
if export {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue