Skip to content
This repository was archived by the owner on Oct 30, 2024. It is now read-only.

✨ Use dynamic kubeclient #433

Merged
merged 4 commits into from
Jun 8, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update internal/k8sinternal/client.go
Co-authored-by: Genevieve Luyt <11131143+genevieveluyt@users.noreply.github.com>
  • Loading branch information
jerr and genevieveluyt authored Jun 8, 2022
commit 5947edf9289264769faa8f8c1506f973e8d56d40
2 changes: 1 addition & 1 deletion internal/k8sinternal/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ func (kc kubeClient) GetAllResources(options ClientOptions) []k8s.Resource {
}
}

if options.IncludeGenerated == false {
if !options.IncludeGenerated {
resources = excludeGenerated(resources)
}
return resources
Expand Down