Replies: 2 comments
-
| 💬 Your Product Feedback Has Been Submitted 🎉 Thank you for taking the time to share your insights with us! Your feedback is invaluable as we build a better GitHub experience for all our users. Here's what you can expect moving forward ⏩ 
 Where to look to see what's shipping 👀 
 What you can do in the meantime 💻 
 As a member of the GitHub community, your participation is essential. While we can't promise that every suggestion will be implemented, we want to emphasize that your feedback is instrumental in guiding our decisions and priorities. Thank you once again for your contribution to making GitHub even better! We're grateful for your ongoing support and collaboration in shaping the future of our platform. ⭐ | 
Beta Was this translation helpful? Give feedback.
-
| Thanks for acknowledging this. Just wanted to highlight that having listener pods in the same namespace as AutoscalingRunnerSets would simplify permissions and configs a lot for us. Looking forward to any updates on this. | 
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Why are you starting this discussion?
Product Feedback
What GitHub Actions topic or product is this about?
ARC (Actions Runner Controller)
Discussion Details
ARC creates listener pods in the controller's namespace.
For example, if the controller is deployed in
arcnamespace and a user creates an AutoscalingRunnerSet intargetnamespace,child resources like EphemeralRunnerSet will be created in
target, while the listener pods will be created inarcnamespace.To allow the listener pods to interact with EphemeralRunnerSet and other resources in
target, a RoleBinding is created intargetwith the listener's ServiceAccount as the subject.This occurs the following issues:
Depending on a cluster's security requirements, creating RoleBindings that span namespaces may be restricted. In this case, ARC cannot be used because the RoleBinding cannot be created.
The namespace where the listener pods are created is the namespace where cluster management addons (ARC is one) are deployed. Depending on the cluster configuration, special settings may be required for these pods, such as node selectors or tolerations. While we can configure these by specifying
listenerTemplate, requiring cluster management addon configurations to be defined in user-created resources like AutoscalingRunnerSet feels unnatural.To address these issues, would it be feasible to add an option to create listener pods in the same namespace as AutoscalingRunnerSets?
This would keep the RoleBinding within
targetnamespace and eliminate the need for listener pod configuration.Beta Was this translation helpful? Give feedback.
All reactions