7cd28a6fb6
This commit performs refactoring to pull out common service registration objects into a new `client/serviceregistration` package. This new package will form the base point for all client specific service registration functionality. The Consul specific implementation is not moved as it also includes non-service registration implementations; this reduces the blast radius of the changes as well.
28 lines
868 B
Go
28 lines
868 B
Go
package serviceregistration
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/hashicorp/nomad/nomad/structs"
|
|
)
|
|
|
|
const (
|
|
// nomadServicePrefix is the prefix that scopes all Nomad registered
|
|
// services (both agent and task entries).
|
|
nomadServicePrefix = "_nomad"
|
|
|
|
// nomadTaskPrefix is the prefix that scopes Nomad registered services
|
|
// for tasks.
|
|
nomadTaskPrefix = nomadServicePrefix + "-task-"
|
|
)
|
|
|
|
// MakeAllocServiceID creates a unique ID for identifying an alloc service in
|
|
// a service registration provider. Both Nomad and Consul solutions use the
|
|
// same ID format to provide consistency.
|
|
//
|
|
// Example Service ID: _nomad-task-b4e61df9-b095-d64e-f241-23860da1375f-redis-http-http
|
|
func MakeAllocServiceID(allocID, taskName string, service *structs.Service) string {
|
|
return fmt.Sprintf("%s%s-%s-%s-%s",
|
|
nomadTaskPrefix, allocID, taskName, service.Name, service.PortLabel)
|
|
}
|