Skip to content

Commit

Permalink
move label package from internal to pkg
Browse files Browse the repository at this point in the history
  • Loading branch information
friedrichwilken committed Jan 3, 2024
1 parent 86689f9 commit 0aa71fa
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion internal/controller/cache/cache.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"sigs.k8s.io/controller-runtime/pkg/cache"
"sigs.k8s.io/controller-runtime/pkg/client"

"github.com/kyma-project/nats-manager/internal/label"
"github.com/kyma-project/nats-manager/pkg/label"
)

// New returns a cache with the cache-options applied, generade form the rest-config.
Expand Down
2 changes: 1 addition & 1 deletion internal/controller/cache/cache_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"testing"
"time"

"github.com/kyma-project/nats-manager/internal/label"
"github.com/kyma-project/nats-manager/pkg/label"
"github.com/stretchr/testify/require"
appsv1 "k8s.io/api/apps/v1"
autoscalingv1 "k8s.io/api/autoscaling/v1"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion internal/label/label_test.go → pkg/label/label_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (

"k8s.io/apimachinery/pkg/labels"

"github.com/kyma-project/nats-manager/internal/label"
"github.com/kyma-project/nats-manager/pkg/label"
)

func TestSelectorInstanceNATS(t *testing.T) {
Expand Down

0 comments on commit 0aa71fa

Please sign in to comment.