1
0
mirror of https://github.com/rancher/steve.git synced 2025-09-18 00:08:17 +00:00

Bumps rancher/wrangler to it's tagged v2 version.

The previous wrangler commit included all of the v2 changes.
Except for the import paths changes.
This commit is contained in:
Kevin Joiner
2024-01-11 16:32:09 -05:00
parent 9935404019
commit 7a5069b811
44 changed files with 88 additions and 88 deletions

View File

@@ -4,7 +4,7 @@ import (
apiserver "github.com/rancher/apiserver/pkg/server"
"github.com/rancher/apiserver/pkg/types"
"github.com/rancher/steve/pkg/attributes"
"github.com/rancher/wrangler/pkg/kv"
"github.com/rancher/wrangler/v2/pkg/kv"
"k8s.io/apimachinery/pkg/runtime/schema"
)

View File

@@ -7,7 +7,7 @@ import (
"sort"
"time"
v1 "github.com/rancher/wrangler/pkg/generated/controllers/rbac/v1"
v1 "github.com/rancher/wrangler/v2/pkg/generated/controllers/rbac/v1"
"k8s.io/apimachinery/pkg/util/cache"
"k8s.io/apiserver/pkg/authentication/user"
)

View File

@@ -5,7 +5,7 @@ import (
"hash"
"sort"
v1 "github.com/rancher/wrangler/pkg/generated/controllers/rbac/v1"
v1 "github.com/rancher/wrangler/v2/pkg/generated/controllers/rbac/v1"
rbacv1 "k8s.io/api/rbac/v1"
"k8s.io/apimachinery/pkg/runtime/schema"
)

View File

@@ -4,8 +4,8 @@ import (
"context"
"sync"
rbac "github.com/rancher/wrangler/pkg/generated/controllers/rbac/v1"
"github.com/rancher/wrangler/pkg/kv"
rbac "github.com/rancher/wrangler/v2/pkg/generated/controllers/rbac/v1"
"github.com/rancher/wrangler/v2/pkg/kv"
rbacv1 "k8s.io/api/rbac/v1"
)