mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-11-16 19:57:02 +00:00
Automatic merge from submit-queue (batch tested with PRs 43900, 44152, 44324) fix return value of "kubectl auth cani --quiet" Before this change: $ kubectl auth can-i get pod no $ kubectl auth can-i get pod --quiet $ echo $? 0 After this change: $ kubectl auth can-i get pod no $ kubectl auth can-i get pod --quiet $ echo $? 1 @deads2k **Release note**: ```NONE ```