Apply SSA fix to flux install and bootstrap

Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
pull/1919/head
Stefan Prodan 3 years ago
parent 03df386f9e
commit 2eb6ba5a48
No known key found for this signature in database
GPG Key ID: 3299AEB0E4085BAF

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

Loading…
Cancel
Save