From 6bab6696cc3ee26586fb224c7300f51b9cb6e198 Mon Sep 17 00:00:00 2001 From: Eric Haberkorn Date: Wed, 12 Apr 2023 16:49:28 -0400 Subject: [PATCH] add sameness to exported services structs in the api package (#16984) --- api/config_entry_exports.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/api/config_entry_exports.go b/api/config_entry_exports.go index 284b98b7a2..97920e40dd 100644 --- a/api/config_entry_exports.go +++ b/api/config_entry_exports.go @@ -54,6 +54,9 @@ type ServiceConsumer struct { // Peer is the name of the peer to export the service to. Peer string `json:",omitempty" alias:"peer_name"` + + // SamenessGroup is the name of the sameness group to export the service to. + SamenessGroup string `json:",omitempty" alias:"sameness_group"` } func (e *ExportedServicesConfigEntry) GetKind() string { return ExportedServices }