consul/agent/structs/config_entry_exports_oss.go
Derek Menteer 8d40cf9858
Add sameness-group to exported-services config entries (#16836)
This PR adds the sameness-group field to exported-service
config entries, which allows for services to be exported
to multiple destination partitions / peers easily.
2023-03-31 12:36:44 -05:00

25 lines
595 B
Go

//go:build !consulent
// +build !consulent
package structs
import (
"fmt"
"github.com/hashicorp/consul/acl"
)
func (e *ExportedServicesConfigEntry) validateServicesEnterprise() error {
for i, svc := range e.Services {
for j, consumer := range svc.Consumers {
if !acl.IsDefaultPartition(consumer.Partition) {
return fmt.Errorf("Services[%d].Consumers[%d]: partitions are an enterprise-only feature", i, j)
}
if consumer.SamenessGroup != "" {
return fmt.Errorf("Services[%d].Consumers[%d]: sameness-groups are an enterprise-only feature", i, j)
}
}
}
return nil
}