mirror of
https://github.com/arangodb/kube-arangodb.git
synced 2024-12-14 11:57:37 +00:00
[Bugfix] Fix Gateway Options (#1753)
This commit is contained in:
parent
87d14d510b
commit
0a339b413c
10 changed files with 143 additions and 61 deletions
|
@ -9,6 +9,7 @@
|
|||
- (Feature) (Integration) SchedulerV2
|
||||
- (Feature) (Integration) Basic Envs
|
||||
- (Maintenance) Inspector Generics
|
||||
- (Bugfix) Fix Gateway Options
|
||||
|
||||
## [1.2.43](https://github.com/arangodb/kube-arangodb/tree/1.2.43) (2024-10-14)
|
||||
- (Feature) ArangoRoute CRD
|
||||
|
|
|
@ -16,9 +16,6 @@ rules:
|
|||
- apiGroups: ["database.arangodb.com"]
|
||||
resources: ["arangodeployments", "arangodeployments/status","arangomembers", "arangomembers/status"]
|
||||
verbs: ["*"]
|
||||
- apiGroups: ["networking.arangodb.com"]
|
||||
resources: ["arangoroutes", "arangoroutes/status"]
|
||||
verbs: ["*"]
|
||||
{{- if .Values.rbac.extensions.acs }}
|
||||
- apiGroups: ["database.arangodb.com"]
|
||||
resources: ["arangoclustersynchronizations", "arangoclustersynchronizations/status"]
|
||||
|
|
|
@ -13,56 +13,11 @@ metadata:
|
|||
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||
release: {{ .Release.Name }}
|
||||
rules:
|
||||
- apiGroups:
|
||||
- "ml.arangodb.com"
|
||||
resources:
|
||||
- "arangomlextensions"
|
||||
- "arangomlextensions/status"
|
||||
- "arangomlbatchjobs"
|
||||
- "arangomlbatchjobs/status"
|
||||
- "arangomlcronjobs"
|
||||
- "arangomlcronjobs/status"
|
||||
- "arangomlstorages"
|
||||
- "arangomlstorages/status"
|
||||
verbs:
|
||||
- "*"
|
||||
- apiGroups:
|
||||
- "scheduler.arangodb.com"
|
||||
resources:
|
||||
- "arangoprofiles"
|
||||
- "arangoprofiles/status"
|
||||
verbs:
|
||||
- "*"
|
||||
- apiGroups:
|
||||
- "database.arangodb.com"
|
||||
resources:
|
||||
- "arangodeployments"
|
||||
verbs:
|
||||
- "get"
|
||||
- "list"
|
||||
- "watch"
|
||||
- apiGroups:
|
||||
- "rbac.authorization.k8s.io"
|
||||
resources:
|
||||
- "roles"
|
||||
- "rolebindings"
|
||||
verbs: ["*"]
|
||||
- apiGroups:
|
||||
- "batch"
|
||||
resources:
|
||||
- "cronjobs"
|
||||
- "jobs"
|
||||
verbs: ["*"]
|
||||
- apiGroups: ["apps"]
|
||||
resources:
|
||||
- "statefulsets"
|
||||
verbs: ["*"]
|
||||
- apiGroups: [""]
|
||||
resources:
|
||||
- "pods"
|
||||
- "secrets"
|
||||
- "services"
|
||||
- "serviceaccounts"
|
||||
verbs: ["*"]
|
||||
- apiGroups: ["networking.arangodb.com"]
|
||||
resources: ["arangoroutes", "arangoroutes/status"]
|
||||
verbs: ["*"]
|
||||
- apiGroups: [""]
|
||||
resources: ["pods", "services", "endpoints"]
|
||||
verbs: ["get", "list", "watch"]
|
||||
{{- end }}
|
||||
{{- end }}
|
|
@ -34,7 +34,7 @@ type ArangoRouteSpec struct {
|
|||
}
|
||||
|
||||
func (s *ArangoRouteSpec) GetDeployment() string {
|
||||
if s == nil || s.Destination == nil {
|
||||
if s == nil || s.Deployment == nil {
|
||||
return ""
|
||||
}
|
||||
|
||||
|
|
|
@ -170,7 +170,13 @@ func (c Config) RenderClusters() ([]*clusterAPI.Cluster, error) {
|
|||
UpstreamProtocolOptions: &upstreamHttpApi.HttpProtocolOptions_ExplicitHttpConfig_{
|
||||
ExplicitHttpConfig: &upstreamHttpApi.HttpProtocolOptions_ExplicitHttpConfig{
|
||||
ProtocolConfig: &upstreamHttpApi.HttpProtocolOptions_ExplicitHttpConfig_Http2ProtocolOptions{
|
||||
Http2ProtocolOptions: &coreAPI.Http2ProtocolOptions{},
|
||||
Http2ProtocolOptions: &coreAPI.Http2ProtocolOptions{
|
||||
ConnectionKeepalive: &coreAPI.KeepaliveSettings{
|
||||
Interval: durationpb.New(15 * time.Second),
|
||||
Timeout: durationpb.New(30 * time.Second),
|
||||
ConnectionIdleInterval: durationpb.New(60 * time.Second),
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
|
|
@ -24,8 +24,12 @@ import (
|
|||
"time"
|
||||
|
||||
clusterAPI "github.com/envoyproxy/go-control-plane/envoy/config/cluster/v3"
|
||||
coreAPI "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
|
||||
endpointAPI "github.com/envoyproxy/go-control-plane/envoy/config/endpoint/v3"
|
||||
routeAPI "github.com/envoyproxy/go-control-plane/envoy/config/route/v3"
|
||||
upstreamHttpApi "github.com/envoyproxy/go-control-plane/envoy/extensions/upstreams/http/v3"
|
||||
"github.com/golang/protobuf/ptypes/any"
|
||||
"google.golang.org/protobuf/types/known/anypb"
|
||||
"google.golang.org/protobuf/types/known/durationpb"
|
||||
|
||||
shared "github.com/arangodb/kube-arangodb/pkg/apis/shared"
|
||||
|
@ -115,6 +119,25 @@ func (c *ConfigDestination) RenderRoute(name, prefix string) (*routeAPI.Route, e
|
|||
}
|
||||
|
||||
func (c *ConfigDestination) RenderCluster(name string) (*clusterAPI.Cluster, error) {
|
||||
hpo, err := anypb.New(&upstreamHttpApi.HttpProtocolOptions{
|
||||
UpstreamProtocolOptions: &upstreamHttpApi.HttpProtocolOptions_ExplicitHttpConfig_{
|
||||
ExplicitHttpConfig: &upstreamHttpApi.HttpProtocolOptions_ExplicitHttpConfig{
|
||||
ProtocolConfig: &upstreamHttpApi.HttpProtocolOptions_ExplicitHttpConfig_Http2ProtocolOptions{
|
||||
Http2ProtocolOptions: &coreAPI.Http2ProtocolOptions{
|
||||
ConnectionKeepalive: &coreAPI.KeepaliveSettings{
|
||||
Interval: durationpb.New(15 * time.Second),
|
||||
Timeout: durationpb.New(30 * time.Second),
|
||||
ConnectionIdleInterval: durationpb.New(60 * time.Second),
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
cluster := &clusterAPI.Cluster{
|
||||
Name: name,
|
||||
ConnectTimeout: durationpb.New(time.Second),
|
||||
|
@ -127,6 +150,9 @@ func (c *ConfigDestination) RenderCluster(name string) (*clusterAPI.Cluster, err
|
|||
},
|
||||
},
|
||||
},
|
||||
TypedExtensionProtocolOptions: map[string]*any.Any{
|
||||
"envoy.extensions.upstreams.http.v3.HttpProtocolOptions": hpo,
|
||||
},
|
||||
}
|
||||
|
||||
if t, err := c.Type.RenderUpstreamTransportSocket(); err != nil {
|
||||
|
|
|
@ -32,8 +32,8 @@ import (
|
|||
type ConfigSNIList []ConfigSNI
|
||||
|
||||
func (c ConfigSNIList) RenderFilterChain(filters []*listenerAPI.Filter) ([]*listenerAPI.FilterChain, error) {
|
||||
var r = make([]*listenerAPI.FilterChain, len(filters))
|
||||
for id := range filters {
|
||||
var r = make([]*listenerAPI.FilterChain, len(c))
|
||||
for id := range c {
|
||||
if f, err := c[id].RenderFilterChain(filters); err != nil {
|
||||
return nil, err
|
||||
} else {
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
package gateway
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"testing"
|
||||
|
||||
bootstrapAPI "github.com/envoyproxy/go-control-plane/envoy/config/bootstrap/v3"
|
||||
|
@ -29,14 +30,18 @@ import (
|
|||
"github.com/arangodb/kube-arangodb/pkg/util"
|
||||
)
|
||||
|
||||
func renderAndPrintGatewayConfig(t *testing.T, cfg Config) *bootstrapAPI.Bootstrap {
|
||||
func renderAndPrintGatewayConfig(t *testing.T, cfg Config, validates ...func(t *testing.T, b *bootstrapAPI.Bootstrap)) {
|
||||
data, checksum, obj, err := cfg.RenderYAML()
|
||||
require.NoError(t, err)
|
||||
|
||||
t.Logf("Checksum: %s", checksum)
|
||||
t.Log(string(data))
|
||||
|
||||
return obj
|
||||
for id := range validates {
|
||||
t.Run(fmt.Sprintf("Validation%d", id), func(t *testing.T) {
|
||||
validates[id](t, obj)
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
func Test_GatewayConfig(t *testing.T) {
|
||||
|
@ -50,8 +55,27 @@ func Test_GatewayConfig(t *testing.T) {
|
|||
},
|
||||
},
|
||||
},
|
||||
}, func(t *testing.T, b *bootstrapAPI.Bootstrap) {
|
||||
require.NotNil(t, b)
|
||||
require.NotNil(t, b.StaticResources)
|
||||
require.NotNil(t, b.StaticResources.Clusters)
|
||||
require.Len(t, b.StaticResources.Clusters, 1)
|
||||
require.NotNil(t, b.StaticResources.Clusters[0])
|
||||
require.NotNil(t, b.StaticResources.Clusters[0].LoadAssignment)
|
||||
require.NotNil(t, b.StaticResources.Clusters[0].LoadAssignment.Endpoints)
|
||||
require.Len(t, b.StaticResources.Clusters[0].LoadAssignment.Endpoints, 1)
|
||||
require.NotNil(t, b.StaticResources.Clusters[0].LoadAssignment.Endpoints[0])
|
||||
require.NotNil(t, b.StaticResources.Clusters[0].LoadAssignment.Endpoints[0].LbEndpoints)
|
||||
require.Len(t, b.StaticResources.Clusters[0].LoadAssignment.Endpoints[0].LbEndpoints, 1)
|
||||
require.NotNil(t, b.StaticResources.Clusters[0].LoadAssignment.Endpoints[0].LbEndpoints[0])
|
||||
require.NotNil(t, b.StaticResources.Clusters[0].LoadAssignment.Endpoints[0].LbEndpoints[0].GetEndpoint())
|
||||
require.NotNil(t, b.StaticResources.Clusters[0].LoadAssignment.Endpoints[0].LbEndpoints[0].GetEndpoint().Address)
|
||||
require.NotNil(t, b.StaticResources.Clusters[0].LoadAssignment.Endpoints[0].LbEndpoints[0].GetEndpoint().Address.GetSocketAddress())
|
||||
require.EqualValues(t, "127.0.0.1", b.StaticResources.Clusters[0].LoadAssignment.Endpoints[0].LbEndpoints[0].GetEndpoint().Address.GetSocketAddress().Address)
|
||||
require.EqualValues(t, 12345, b.StaticResources.Clusters[0].LoadAssignment.Endpoints[0].LbEndpoints[0].GetEndpoint().Address.GetSocketAddress().GetPortValue())
|
||||
})
|
||||
})
|
||||
|
||||
t.Run("Default", func(t *testing.T) {
|
||||
renderAndPrintGatewayConfig(t, Config{
|
||||
DefaultDestination: ConfigDestination{
|
||||
|
@ -69,6 +93,7 @@ func Test_GatewayConfig(t *testing.T) {
|
|||
},
|
||||
})
|
||||
})
|
||||
|
||||
t.Run("Default", func(t *testing.T) {
|
||||
renderAndPrintGatewayConfig(t, Config{
|
||||
DefaultDestination: ConfigDestination{
|
||||
|
@ -87,6 +112,7 @@ func Test_GatewayConfig(t *testing.T) {
|
|||
},
|
||||
})
|
||||
})
|
||||
|
||||
t.Run("Default", func(t *testing.T) {
|
||||
renderAndPrintGatewayConfig(t, Config{
|
||||
DefaultDestination: ConfigDestination{
|
||||
|
@ -117,6 +143,7 @@ func Test_GatewayConfig(t *testing.T) {
|
|||
},
|
||||
})
|
||||
})
|
||||
|
||||
t.Run("Default", func(t *testing.T) {
|
||||
renderAndPrintGatewayConfig(t, Config{
|
||||
DefaultDestination: ConfigDestination{
|
||||
|
@ -147,6 +174,7 @@ func Test_GatewayConfig(t *testing.T) {
|
|||
},
|
||||
})
|
||||
})
|
||||
|
||||
t.Run("Default", func(t *testing.T) {
|
||||
renderAndPrintGatewayConfig(t, Config{
|
||||
DefaultDestination: ConfigDestination{
|
||||
|
@ -188,4 +216,55 @@ func Test_GatewayConfig(t *testing.T) {
|
|||
},
|
||||
})
|
||||
})
|
||||
|
||||
t.Run("Default", func(t *testing.T) {
|
||||
renderAndPrintGatewayConfig(t, Config{
|
||||
DefaultDestination: ConfigDestination{
|
||||
Targets: []ConfigDestinationTarget{
|
||||
{
|
||||
Host: "127.0.0.1",
|
||||
Port: 12345,
|
||||
},
|
||||
},
|
||||
Path: util.NewType("/test/path/"),
|
||||
Type: util.NewType(ConfigDestinationTypeHTTPS),
|
||||
},
|
||||
DefaultTLS: &ConfigTLS{
|
||||
CertificatePath: "/test",
|
||||
PrivateKeyPath: "/test12",
|
||||
},
|
||||
SNI: []ConfigSNI{
|
||||
{
|
||||
ConfigTLS: ConfigTLS{
|
||||
CertificatePath: "/cp",
|
||||
PrivateKeyPath: "/pp",
|
||||
},
|
||||
ServerNames: []string{
|
||||
"example.com",
|
||||
},
|
||||
},
|
||||
{
|
||||
ConfigTLS: ConfigTLS{
|
||||
CertificatePath: "/c2",
|
||||
PrivateKeyPath: "/p2",
|
||||
},
|
||||
ServerNames: []string{
|
||||
"2.example.com",
|
||||
},
|
||||
},
|
||||
},
|
||||
Destinations: ConfigDestinations{
|
||||
"/_test/": {
|
||||
Targets: []ConfigDestinationTarget{
|
||||
{
|
||||
Host: "127.0.0.1",
|
||||
Port: 12346,
|
||||
},
|
||||
},
|
||||
Path: util.NewType("/test/path/"),
|
||||
Type: util.NewType(ConfigDestinationTypeHTTP),
|
||||
},
|
||||
},
|
||||
})
|
||||
})
|
||||
}
|
||||
|
|
|
@ -39,3 +39,13 @@ func Marshal[T proto.Message](in T) ([]byte, string, T, error) {
|
|||
data, err = yaml.JSONToYAML(data)
|
||||
return data, util.SHA256(data), in, err
|
||||
}
|
||||
|
||||
func Unmarshal[T proto.Message](data []byte) (T, error) {
|
||||
var v T
|
||||
|
||||
if err := (protojson.UnmarshalOptions{}).Unmarshal(data, v); err != nil {
|
||||
return util.Default[T](), err
|
||||
}
|
||||
|
||||
return v, nil
|
||||
}
|
||||
|
|
|
@ -81,7 +81,15 @@ func Profiles(ctx context.Context, client generic.ListInterface[*schedulerApi.Ar
|
|||
})
|
||||
|
||||
extractedProfiles = extractedProfiles.Sort(func(a, b *schedulerApi.ArangoProfile) bool {
|
||||
return a.Spec.Template.GetPriority() > b.Spec.Template.GetPriority()
|
||||
if ca, cb := a.Spec.Template.GetPriority(), b.Spec.Template.GetPriority(); ca != cb {
|
||||
return ca > cb
|
||||
}
|
||||
|
||||
if ca, cb := a.GetName(), b.GetName(); ca != cb {
|
||||
return ca > cb
|
||||
}
|
||||
|
||||
return a.GetCreationTimestamp().After(b.GetCreationTimestamp().Time)
|
||||
})
|
||||
|
||||
// Check if everything is valid
|
||||
|
|
Loading…
Reference in a new issue