Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion internal/adc/translator/apisixconsumer.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ func (t *Translator) TranslateApisixConsumer(tctx *provider.TranslateContext, ac
Username: username,
}
consumer.Plugins = plugins
consumer.Labels = label.GenLabel(ac)
consumer.Labels = label.GenLabelWithObjectLabels(ac)
result.Consumers = append(result.Consumers, consumer)
return result, nil
}
Expand Down
71 changes: 71 additions & 0 deletions internal/adc/translator/apisixconsumer_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.

package translator

import (
"context"
"testing"

"github.com/go-logr/logr"
"github.com/stretchr/testify/require"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

apiv2 "github.com/apache/apisix-ingress-controller/api/v2"
"github.com/apache/apisix-ingress-controller/internal/controller/label"
"github.com/apache/apisix-ingress-controller/internal/provider"
)

func TestTranslateApisixConsumer_UsesMetadataLabelsWithoutOverwritingControllerLabels(t *testing.T) {
translator := NewTranslator(logr.Discard())
tctx := provider.NewDefaultTranslateContext(context.Background())

consumer := &apiv2.ApisixConsumer{
TypeMeta: metav1.TypeMeta{
Kind: "ApisixConsumer",
APIVersion: apiv2.GroupVersion.String(),
},
ObjectMeta: metav1.ObjectMeta{
Name: "demo",
Namespace: "default",
Labels: map[string]string{
"team": "payments",
label.LabelName: "user-value",
label.LabelResourceKey: "user-resource-key",
},
},
Spec: apiv2.ApisixConsumerSpec{
AuthParameter: apiv2.ApisixConsumerAuthParameter{
BasicAuth: &apiv2.ApisixConsumerBasicAuth{
Value: &apiv2.ApisixConsumerBasicAuthValue{
Username: "demo",
Password: "secret",
},
},
},
},
}

result, err := translator.TranslateApisixConsumer(tctx, consumer)
require.NoError(t, err)
require.Len(t, result.Consumers, 1)

translated := result.Consumers[0]
require.Equal(t, "payments", translated.Labels["team"])
require.Equal(t, consumer.Name, translated.Labels[label.LabelName])
require.Equal(t, "ApisixConsumer/default/demo", translated.Labels[label.LabelResourceKey])
}
5 changes: 1 addition & 4 deletions internal/adc/translator/apisixroute.go
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ func (t *Translator) buildRoute(ar *apiv2.ApisixRoute, service *adc.Service, rul
route.Name = adc.ComposeRouteName(ar.Namespace, ar.Name, rule.Name)
route.ID = id.GenID(route.Name)
route.Desc = "Created by apisix-ingress-controller, DO NOT modify it manually"
route.Labels = label.GenLabel(ar)
route.Labels = label.GenLabelWithObjectLabels(ar)
route.EnableWebsocket = rule.Websocket
if route.EnableWebsocket == nil && *enableWebsocket != nil {
route.EnableWebsocket = *enableWebsocket
Expand All @@ -199,9 +199,6 @@ func (t *Translator) buildRoute(ar *apiv2.ApisixRoute, service *adc.Service, rul
route.Timeout = timeout
route.Uris = rule.Match.Paths
route.Vars = vars
for key, value := range ar.GetObjectMeta().GetLabels() {
route.Labels[key] = value
}

service.Routes = []*adc.Route{route}
}
Expand Down
37 changes: 37 additions & 0 deletions internal/adc/translator/apisixroute_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,3 +82,40 @@ func TestBuildService_HostsSet(t *testing.T) {
// service.Hosts SHOULD be set — this is the canonical location for hosts.
assert.Equal(t, []string{"example.com", "foo.com"}, service.Hosts)
}

func TestBuildRoute_MetadataLabelsDoNotOverwriteControllerLabels(t *testing.T) {
translator := NewTranslator(logr.Discard())

ar := &apiv2.ApisixRoute{
TypeMeta: metav1.TypeMeta{
Kind: "ApisixRoute",
APIVersion: apiv2.GroupVersion.String(),
},
ObjectMeta: metav1.ObjectMeta{
Name: "test-route",
Namespace: "default",
Labels: map[string]string{
"team": "payments",
"k8s/name": "user-value",
"k8s/resource-key": "user-resource-key",
},
Comment on lines +97 to +101
},
}

service := &adc.Service{}
rule := apiv2.ApisixRouteHTTP{
Name: "rule1",
Match: apiv2.ApisixRouteHTTPMatch{
Paths: []string{"/api/*"},
},
}

var enableWebsocket *bool
translator.buildRoute(ar, service, rule, nil, nil, nil, &enableWebsocket)

assert.Len(t, service.Routes, 1)
route := service.Routes[0]
assert.Equal(t, "payments", route.Labels["team"])
assert.Equal(t, ar.Name, route.Labels["k8s/name"])
assert.Equal(t, "ApisixRoute/default/test-route", route.Labels["k8s/resource-key"])
}
11 changes: 11 additions & 0 deletions internal/controller/label/label.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,14 @@ func GenLabel(obj client.Object, args ...string) Label {
}
return label
}

func GenLabelWithObjectLabels(obj client.Object, args ...string) Label {
label := make(Label)
for key, value := range obj.GetLabels() {
label[key] = value
}
for key, value := range GenLabel(obj, args...) {
label[key] = value
}
return label
}
58 changes: 58 additions & 0 deletions internal/controller/label/label_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.

package label

import (
"testing"

"github.com/stretchr/testify/require"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

apiv2 "github.com/apache/apisix-ingress-controller/api/v2"
"github.com/apache/apisix-ingress-controller/internal/controller/config"
)

func TestGenLabelWithObjectLabels(t *testing.T) {
consumer := &apiv2.ApisixConsumer{
TypeMeta: metav1.TypeMeta{
Kind: "ApisixConsumer",
APIVersion: apiv2.GroupVersion.String(),
},
ObjectMeta: metav1.ObjectMeta{
Name: "demo",
Namespace: "default",
Labels: map[string]string{
"team": "payments",
LabelName: "user-value",
LabelResourceKey: "user-resource-key",
LabelManagedBy: "user-manager",
LabelNamespace: "user-namespace",
LabelControllerName: "user-controller",
},
},
}

labels := GenLabelWithObjectLabels(consumer)

require.Equal(t, "payments", labels["team"])
require.Equal(t, consumer.Name, labels[LabelName])
require.Equal(t, consumer.Namespace, labels[LabelNamespace])
require.Equal(t, config.ControllerConfig.ControllerName, labels[LabelControllerName])
require.Equal(t, "apisix-ingress-controller", labels[LabelManagedBy])
require.Equal(t, "ApisixConsumer/default/demo", labels[LabelResourceKey])
}
Loading