-
Notifications
You must be signed in to change notification settings - Fork 128
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
Skip forbidden resources as they are rarely required #55
Conversation
I think this is agreeable, there's just a little bug that we need to assign to |
Signed-off-by: Ahmet Alp Balkan <[email protected]>
Signed-off-by: Ahmet Alp Balkan <[email protected]>
Signed-off-by: Ahmet Alp Balkan <[email protected]>
Any updates on that? |
+1, would be nice to see this merged. |
+1 waiting for it |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry for the delay. Only one small comment.
.github/workflows/ci.yml
Outdated
@@ -11,7 +11,7 @@ jobs: | |||
- name: Setup Go | |||
uses: actions/setup-go@v1 | |||
with: | |||
go-version: 1.18 | |||
go-version: 1.20 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You need to type ' or " around this otherwise it becomes 1.2 float :) at this point let's do 1.22
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Omg i made this error myself it turns out 🤦
+1, would be nice to see this merged. |
sorry for the delay - missed this. hows this look? |
+1 |
it seems |
In a multi-tenant cluster, rarely do users have permissions to view all API resources. This makes it so any resource that is forbidden to the user will be skipped.
Fixes #14
Fixes #60