refactor(gateway): make node name explicitly configurable in spec
This commit is contained in:
parent
0b551325b9
commit
a5c170a478
3 changed files with 9 additions and 1 deletions
api/v1alpha1
|
@ -38,6 +38,10 @@ type ControlPlaneSpec struct {
|
|||
}
|
||||
|
||||
type EnvoySpec struct {
|
||||
// NodeName - identifies the Envoy cluster within the current namespace
|
||||
// if not set, the name of the APIGateway resource will be used
|
||||
// The primary use case is to make the assignment of multiple supabase instances in a single namespace explicit.
|
||||
NodeName string `json:"nodeName,omitempty"`
|
||||
// ControlPlane - configure the control plane where Envoy will retrieve its configuration from
|
||||
ControlPlane *ControlPlaneSpec `json:"controlPlane"`
|
||||
// WorkloadTemplate - customize the Envoy deployment
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue