Skip to content
Snippets Groups Projects
Unverified Commit 2eb6ba5a authored by Stefan Prodan's avatar Stefan Prodan
Browse files

Apply SSA fix to flux install and bootstrap

parent 03df386f
No related branches found
No related tags found
No related merge requests found
......@@ -50,6 +50,10 @@ func Apply(ctx context.Context, kubeConfigPath string, kubeContext string, manif
return "", fmt.Errorf("no Kubernetes objects found at: %s", manifestPath)
}
if err := ssa.SetNativeKindsDefaults(objs); err != nil {
return "", err
}
changeSet, err := resourceManager.ApplyAllStaged(ctx, objs, false, time.Minute)
if err != nil {
return "", err
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment