2021-10-01 13:59:55 +00:00
|
|
|
//go:build !ent
|
2020-05-28 19:40:17 +00:00
|
|
|
// +build !ent
|
2017-09-19 14:47:10 +00:00
|
|
|
|
|
|
|
package nomad
|
|
|
|
|
2018-09-15 23:23:13 +00:00
|
|
|
import (
|
|
|
|
"github.com/hashicorp/consul/agent/consul/autopilot"
|
|
|
|
)
|
2017-12-18 21:16:23 +00:00
|
|
|
|
2020-05-27 17:46:52 +00:00
|
|
|
// LicenseConfig allows for tunable licensing config
|
|
|
|
// primarily used for enterprise testing
|
2021-04-27 20:50:07 +00:00
|
|
|
type LicenseConfig struct {
|
|
|
|
AdditionalPubKeys []string
|
|
|
|
}
|
2020-05-27 17:46:52 +00:00
|
|
|
|
2017-09-19 14:47:10 +00:00
|
|
|
type EnterpriseState struct{}
|
|
|
|
|
2020-05-27 17:46:52 +00:00
|
|
|
func (es *EnterpriseState) Features() uint64 {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2021-03-23 13:08:14 +00:00
|
|
|
func (es *EnterpriseState) ReloadLicense(_ *Config) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-09-19 14:47:10 +00:00
|
|
|
func (s *Server) setupEnterprise(config *Config) error {
|
2017-12-18 21:16:23 +00:00
|
|
|
// Set up the OSS version of autopilot
|
|
|
|
apDelegate := &AutopilotDelegate{s}
|
2020-02-14 00:06:17 +00:00
|
|
|
s.autopilot = autopilot.NewAutopilot(s.logger, apDelegate, config.AutopilotInterval, config.ServerHealthInterval)
|
2017-12-18 21:16:23 +00:00
|
|
|
|
2017-09-19 14:47:10 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
func (s *Server) startEnterpriseBackground() {}
|
2020-07-17 14:41:45 +00:00
|
|
|
|
|
|
|
func (s *Server) entVaultDelegate() *VaultNoopDelegate {
|
|
|
|
return &VaultNoopDelegate{}
|
|
|
|
}
|