Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
flux2
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GitHub Mirror
fluxcd
flux2
Commits
f03c2456
Unverified
Commit
f03c2456
authored
3 years ago
by
Stefan Prodan
Browse files
Options
Downloads
Patches
Plain Diff
Skip remote clusters in flux tree cmd
Signed-off-by:
Stefan Prodan
<
stefan.prodan@gmail.com
>
parent
b6a95be5
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cmd/flux/tree_kustomization.go
+8
-1
8 additions, 1 deletion
cmd/flux/tree_kustomization.go
with
8 additions
and
1 deletion
cmd/flux/tree_kustomization.go
+
8
−
1
View file @
f03c2456
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment