50e04c976e
Also refactor Consul ServiceClient to take a struct instead of a massive set of arguments. Meant updating a lot of code but it should be far easier to extend in the future as you will only need to update a single struct instead of every single call site. Adds an e2e test for canary tags.
15 lines
433 B
Go
15 lines
433 B
Go
package client
|
|
|
|
import (
|
|
"github.com/hashicorp/nomad/command/agent/consul"
|
|
)
|
|
|
|
// ConsulServiceAPI is the interface the Nomad Client uses to register and
|
|
// remove services and checks from Consul.
|
|
type ConsulServiceAPI interface {
|
|
RegisterTask(*consul.TaskServices) error
|
|
RemoveTask(*consul.TaskServices)
|
|
UpdateTask(old, newTask *consul.TaskServices) error
|
|
AllocRegistrations(allocID string) (*consul.AllocRegistration, error)
|
|
}
|