Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Catch misbehaving kube api errors in Client#resources #94

Merged
merged 1 commit into from
Jan 10, 2019
Merged
Changes from all commits
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
8 changes: 7 additions & 1 deletion lib/k8s/client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,13 @@ def apis(api_versions = nil, prefetch_resources: false, skip_missing: false)
# @param namespace [String, nil]
# @return [Array<K8s::ResourceClient>]
def resources(namespace: nil)
apis(prefetch_resources: true).map { |api| api.resources(namespace: namespace) }.flatten
apis(prefetch_resources: true).map { |api|
begin
api.resources(namespace: namespace)
rescue K8s::Error::ServiceUnavailable, K8s::Error::NotFound
[]
end
}.flatten
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

map { ... }.flatten == flat_map { ... }

end

# Pipeline list requests for multiple resource types.
Expand Down