-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Improve Connect scheduling #10700
Comments
This PR adds two additional constraints on Connect sidecar and gateway tasks, making sure Nomad schedules them only onto nodes where Connect is actually enabled on the Consul agent. Consul requires `connect.enabled = true` and `ports.grpc = <number>` to be explicitly set on agent configuration before Connect APIs will work. Until now, Nomad would only validate a minimum version of Consul, which would cause confusion for users who try to run Connect tasks on nodes where Consul is not yet sufficiently configured. These contstraints prevent job scheduling on nodes where Connect is not actually use-able. Closes #10700
I know this is closed, but the consul documentation states the following: "The first step to use Connect is to enable Connect for your Consul cluster. By default, Connect is disabled. Enabling Connect requires changing the configuration of only your Consul servers (not client agents). To enable Connect, add the following to a new or existing server configuration file." I now had to reconfigure all clients with this setting in the consul client-configuration, otherwise they got filtered by nomad to connect.enabled-constraint. I couldn't find any reference in the consul-documentation stating this should be set on client nodes, so I am still a bit confused ;) |
I'm going to lock this issue because it has been closed for 120 days ⏳. This helps our maintainers find and focus on the active issues. |
Currently Nomad only checks for the presense of Consul at a minimum version number before scheduling Connect enabled tasks.
In reality, Connect must be explicitly enabled on each Consul agent, and the gRPC port must be set to active the grpc listener for the agent. This is been a source of pain and confusion for users who are missing these config values in Consul, which in turn appears like Nomad problems when their Connect sidecars fail to make contact with Consul.
Using the
consul.connect
andconsul.grpc
node attributes introduced in #10699, add additional constraints for Connect tasks so they are only provisioned on nodes where Connect is actually enabled.The text was updated successfully, but these errors were encountered: