22 lines
853 B
Go
22 lines
853 B
Go
package extensioncommon
|
|
|
|
import (
|
|
"github.com/hashicorp/consul/envoyextensions/xdscommon"
|
|
)
|
|
|
|
// EnvoyExtender is the interface that all Envoy extensions must implement in order
|
|
// to be dynamically executed during runtime.
|
|
type EnvoyExtender interface {
|
|
|
|
// Validate ensures the data in config can successfuly be used
|
|
// to apply the specified Envoy extension.
|
|
Validate(*RuntimeConfig) error
|
|
|
|
// Extend updates indexed xDS structures to include patches for
|
|
// built-in extensions. It is responsible for applying extensions to
|
|
// the the appropriate xDS resources. If any portion of this function fails,
|
|
// it will attempt continue and return an error. The caller can then determine
|
|
// if it is better to use a partially applied extension or error out.
|
|
Extend(*xdscommon.IndexedResources, *RuntimeConfig) (*xdscommon.IndexedResources, error)
|
|
}
|