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

Skip remote clusters in flux tree cmd

parent b6a95be5
No related branches found
No related tags found
No related merge requests found
...@@ -169,7 +169,9 @@ func treeKustomization(ctx context.Context, tree tree.ObjMetadataTree, item *kus ...@@ -169,7 +169,9 @@ func treeKustomization(ctx context.Context, tree tree.ObjMetadataTree, item *kus
} }
if objMetadata.GroupKind.Group == kustomizev1.GroupVersion.Group && if objMetadata.GroupKind.Group == kustomizev1.GroupVersion.Group &&
objMetadata.GroupKind.Kind == kustomizev1.KustomizationKind { objMetadata.GroupKind.Kind == kustomizev1.KustomizationKind &&
// skip kustomization if it targets a remote clusters
item.Spec.KubeConfig == nil {
k := &kustomizev1.Kustomization{} k := &kustomizev1.Kustomization{}
err = kubeClient.Get(ctx, client.ObjectKey{ err = kubeClient.Get(ctx, client.ObjectKey{
Namespace: objMetadata.Namespace, Namespace: objMetadata.Namespace,
...@@ -199,6 +201,11 @@ func getHelmReleaseInventory(ctx context.Context, objectKey client.ObjectKey, ku ...@@ -199,6 +201,11 @@ func getHelmReleaseInventory(ctx context.Context, objectKey client.ObjectKey, ku
return nil, err return nil, err
} }
// skip release if it targets a remote clusters
if hr.Spec.KubeConfig != nil {
return nil, nil
}
storageNamespace := hr.GetNamespace() storageNamespace := hr.GetNamespace()
if hr.Spec.StorageNamespace != "" { if hr.Spec.StorageNamespace != "" {
storageNamespace = hr.Spec.StorageNamespace storageNamespace = hr.Spec.StorageNamespace
......
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