diff --git a/.golangci.yaml b/.golangci.yaml index 79a53adae8f..56ae1590e55 100644 --- a/.golangci.yaml +++ b/.golangci.yaml @@ -123,9 +123,9 @@ linters: - staticcheck text: QF1008 # "could remove embedded field" often impedes readability and clarity paths: - - third_party$ - - builtin$ - - examples$ + - third_party + # TODO(embik): this is a blanket ignore specifically because of github.com/dev-kcp/client-go. + - listers issues: max-issues-per-linter: 0 max-same-issues: 0 diff --git a/.prow.yaml b/.prow.yaml index 0f8942e9e13..d96be56ffd1 100644 --- a/.prow.yaml +++ b/.prow.yaml @@ -177,6 +177,8 @@ presubmits: value: '2' - name: E2E_PARALLELISM value: '3' + - name: TEST_ARGS + value: '-timeout 20m' resources: requests: memory: 6Gi diff --git a/Dockerfile b/Dockerfile index b16febca5a4..9072acd7266 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,6 +32,12 @@ COPY sdk/go.mod sdk/go.mod COPY sdk/go.sum sdk/go.sum COPY cli/go.mod cli/go.mod COPY cli/go.sum cli/go.sum +COPY staging/src/github.com/kcp-dev/apimachinery/go.mod staging/src/github.com/kcp-dev/apimachinery/go.mod +COPY staging/src/github.com/kcp-dev/apimachinery/go.sum staging/src/github.com/kcp-dev/apimachinery/go.sum +COPY staging/src/github.com/kcp-dev/client-go/go.mod staging/src/github.com/kcp-dev/client-go/go.mod +COPY staging/src/github.com/kcp-dev/client-go/go.sum staging/src/github.com/kcp-dev/client-go/go.sum +COPY staging/src/github.com/kcp-dev/code-generator/go.mod staging/src/github.com/kcp-dev/code-generator/go.mod +COPY staging/src/github.com/kcp-dev/code-generator/go.sum staging/src/github.com/kcp-dev/code-generator/go.sum USER 0 # Install kubectl. diff --git a/Makefile b/Makefile index 91082ce9841..61514822fba 100644 --- a/Makefile +++ b/Makefile @@ -143,7 +143,8 @@ $(KCP_APIGEN_GEN): lint: $(GOLANGCI_LINT) $(LOGCHECK) ## Verify lint echo "Linting root module..."; \ $(GOLANGCI_LINT) run $(GOLANGCI_LINT_FLAGS) -c $(ROOT_DIR)/.golangci.yaml --timeout 20m - for MOD in $$(git ls-files '**/go.mod' | sed 's,/go.mod,,'); do \ + # TODO(embik): stop skipping lint for staging repositories + for MOD in $$(git ls-files '**/go.mod' | sed 's,/go.mod,,' | grep -v staging); do \ if [ "$$MOD" != "." ]; then \ echo "Linting $$MOD module..."; \ (cd $$MOD && $(GOLANGCI_LINT) run $(GOLANGCI_LINT_FLAGS) -c $(ROOT_DIR)/.golangci.yaml --timeout 20m); \ @@ -251,9 +252,10 @@ $(TOOLS_DIR)/verify_boilerplate.py: curl --fail --retry 3 -L -o $(TOOLS_DIR)/verify_boilerplate.py https://raw.githubusercontent.com/kubernetes/repo-infra/201dcad9616c117927232ee0bc499ff38a27023e/hack/verify_boilerplate.py chmod +x $(TOOLS_DIR)/verify_boilerplate.py + .PHONY: verify-boilerplate verify-boilerplate: $(TOOLS_DIR)/verify_boilerplate.py ## Verify boilerplate - $(TOOLS_DIR)/verify_boilerplate.py --boilerplate-dir=hack/boilerplate --skip docs/venv --skip pkg/network/dialer + $(TOOLS_DIR)/verify_boilerplate.py --boilerplate-dir=hack/boilerplate --skip docs/venv --skip pkg/network/dialer --skip staging/src ifdef ARTIFACT_DIR GOTESTSUM_ARGS += --junitfile=$(ARTIFACT_DIR)/junit.xml diff --git a/cli/go.mod b/cli/go.mod index 33e7f8f0e8a..91ad720bf17 100644 --- a/cli/go.mod +++ b/cli/go.mod @@ -78,4 +78,7 @@ require ( sigs.k8s.io/yaml v1.4.0 // indirect ) -replace github.com/kcp-dev/kcp/sdk => ../sdk +replace ( + github.com/kcp-dev/client-go => ../staging/src/github.com/kcp-dev/client-go + github.com/kcp-dev/kcp/sdk => ../sdk +) diff --git a/cli/go.sum b/cli/go.sum index 9d5ccfd5d39..867d2ed9e3f 100644 --- a/cli/go.sum +++ b/cli/go.sum @@ -63,8 +63,6 @@ github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnr github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= github.com/kcp-dev/apimachinery/v2 v2.0.1-0.20250728122101-adbf20db3e51 h1:l38RDS+VUMx9etvyaCgJIZa4nM7FaNevNubWN0kDZY4= github.com/kcp-dev/apimachinery/v2 v2.0.1-0.20250728122101-adbf20db3e51/go.mod h1:rF1jfvUfPjFXs+HV/LN1BtPzAz1bfjJOwVa+hAVfroQ= -github.com/kcp-dev/client-go v0.0.0-20250728134101-0355faa9361b h1:2LGrXvY9sc4l5yjKIbMZ86GEou7NyrHhA4qBPaeFfxs= -github.com/kcp-dev/client-go v0.0.0-20250728134101-0355faa9361b/go.mod h1:QdO8AaGAZPr/rIZ1iVanCM3tUOiiuX897GWv7WTByLE= github.com/kcp-dev/logicalcluster/v3 v3.0.5 h1:JbYakokb+5Uinz09oTXomSUJVQsqfxEvU4RyHUYxHOU= github.com/kcp-dev/logicalcluster/v3 v3.0.5/go.mod h1:EWBUBxdr49fUB1cLMO4nOdBWmYifLbP1LfoL20KkXYY= github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= diff --git a/docs/generators/cli-doc/go.sum b/docs/generators/cli-doc/go.sum index 4a07f3cd3cc..347dc5642d4 100644 --- a/docs/generators/cli-doc/go.sum +++ b/docs/generators/cli-doc/go.sum @@ -1,4 +1,4 @@ -eel.dev/expr v0.19.1 h1:NciYrtDRIR0lNCnH1LFJegdjspNx9fI59O7TWcua/W4= +cel.dev/expr v0.19.1 h1:NciYrtDRIR0lNCnH1LFJegdjspNx9fI59O7TWcua/W4= cel.dev/expr v0.19.1/go.mod h1:MrpN08Q+lEBs+bGYdLxxHkZoUSsCp0nSKTs0nTymJgw= github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 h1:L/gRVlceqvL25UVaW/CKtUDjefjrs0SPonmDGUVOYP0= github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161/go.mod h1:xomTg63KZ2rFqZQzSB4Vz2SUXa1BpHTVz9L5PTmPC4E= @@ -61,10 +61,6 @@ github.com/josharian/intern v1.0.0 h1:vlS4z54oSdjm0bgjRigI+G1HpF+tI+9rE5LLzOg8Hm github.com/josharian/intern v1.0.0/go.mod h1:5DoeVV0s6jJacbCEi61lwdGj/aVlrQvzHFFd8Hwg//Y= github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM= github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= -github.com/kcp-dev/apimachinery/v2 v2.0.1-0.20250512171935-ebb573a40077 h1:lDi9nZ75ypmRJwDFXUN70Cdu8+HxAjPU1kcnn+l4MvI= -github.com/kcp-dev/apimachinery/v2 v2.0.1-0.20250512171935-ebb573a40077/go.mod h1:jnMZxVnCuKlkIXc4J1Qtmy1Lyo171CDF/RQhNAo0tvA= -github.com/kcp-dev/client-go v0.0.0-20250707095244-decc4df45adb h1:PTfc4FGjz1Dx+6epz92G4RJj3BYrqg0+XYTiGJQR1cc= -github.com/kcp-dev/client-go v0.0.0-20250707095244-decc4df45adb/go.mod h1:iv3cC1ShwBGzFfNjB+6KWvZviWPe6+MbRlQ7SZoZPFc= github.com/kcp-dev/apimachinery/v2 v2.0.1-0.20250728122101-adbf20db3e51 h1:l38RDS+VUMx9etvyaCgJIZa4nM7FaNevNubWN0kDZY4= github.com/kcp-dev/apimachinery/v2 v2.0.1-0.20250728122101-adbf20db3e51/go.mod h1:rF1jfvUfPjFXs+HV/LN1BtPzAz1bfjJOwVa+hAVfroQ= github.com/kcp-dev/client-go v0.0.0-20250728134101-0355faa9361b h1:2LGrXvY9sc4l5yjKIbMZ86GEou7NyrHhA4qBPaeFfxs= diff --git a/go.mod b/go.mod index 9421d6a749c..922768f5885 100644 --- a/go.mod +++ b/go.mod @@ -214,3 +214,9 @@ replace ( k8s.io/sample-cli-plugin => github.com/kcp-dev/kubernetes/staging/src/k8s.io/sample-cli-plugin v0.0.0-20251003054701-d4b0368d53f0 k8s.io/sample-controller => github.com/kcp-dev/kubernetes/staging/src/k8s.io/sample-controller v0.0.0-20251003054701-d4b0368d53f0 ) + +replace ( + github.com/kcp-dev/apimachinery/v2 => ./staging/src/github.com/kcp-dev/apimachinery + github.com/kcp-dev/client-go => ./staging/src/github.com/kcp-dev/client-go + github.com/kcp-dev/code-generator/v3 => ./staging/src/github.com/kcp-dev/code-generator +) diff --git a/go.sum b/go.sum index 719ad90a5ce..9e01f87bbf2 100644 --- a/go.sum +++ b/go.sum @@ -138,12 +138,6 @@ github.com/josharian/intern v1.0.0 h1:vlS4z54oSdjm0bgjRigI+G1HpF+tI+9rE5LLzOg8Hm github.com/josharian/intern v1.0.0/go.mod h1:5DoeVV0s6jJacbCEi61lwdGj/aVlrQvzHFFd8Hwg//Y= github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM= github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= -github.com/kcp-dev/apimachinery/v2 v2.0.1-0.20250728122101-adbf20db3e51 h1:l38RDS+VUMx9etvyaCgJIZa4nM7FaNevNubWN0kDZY4= -github.com/kcp-dev/apimachinery/v2 v2.0.1-0.20250728122101-adbf20db3e51/go.mod h1:rF1jfvUfPjFXs+HV/LN1BtPzAz1bfjJOwVa+hAVfroQ= -github.com/kcp-dev/client-go v0.0.0-20250728134101-0355faa9361b h1:2LGrXvY9sc4l5yjKIbMZ86GEou7NyrHhA4qBPaeFfxs= -github.com/kcp-dev/client-go v0.0.0-20250728134101-0355faa9361b/go.mod h1:QdO8AaGAZPr/rIZ1iVanCM3tUOiiuX897GWv7WTByLE= -github.com/kcp-dev/code-generator/v3 v3.0.0-20250728122101-5b4ff5c24054 h1:yEt2JpW+bXYPHDDVp7CYBSj2QCfT3Hja5q+9uQrqn38= -github.com/kcp-dev/code-generator/v3 v3.0.0-20250728122101-5b4ff5c24054/go.mod h1:PZBfAWJtztxgGCiIjH+txB7aZbMBUOCN5HFms7h7CwE= github.com/kcp-dev/embeddedetcd v1.0.3-0.20250805142358-a4839a83564a h1:P2+BWZW1yzo/TEOgKcdLgDMhJuXwH6Yv79vji+ikfRk= github.com/kcp-dev/embeddedetcd v1.0.3-0.20250805142358-a4839a83564a/go.mod h1:/rP5E1xbbdx0MhSh1vKHzIzDadKgE91FGpNYpngtks0= github.com/kcp-dev/kubernetes v0.0.0-20251003054701-d4b0368d53f0 h1:mAHGMA1n4fyssJa9uoelo0AvaDcF8zhX7rZYutDXZmE= diff --git a/sdk/go.mod b/sdk/go.mod index f1a3ae7445a..77f53b891eb 100644 --- a/sdk/go.mod +++ b/sdk/go.mod @@ -113,3 +113,8 @@ require ( sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.31.2 // indirect sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect ) + +replace ( + github.com/kcp-dev/apimachinery/v2 => ../staging/src/github.com/kcp-dev/apimachinery + github.com/kcp-dev/client-go => ../staging/src/github.com/kcp-dev/client-go +) diff --git a/sdk/go.sum b/sdk/go.sum index 61b11c61d00..ce18f0bc724 100644 --- a/sdk/go.sum +++ b/sdk/go.sum @@ -95,10 +95,6 @@ github.com/josharian/intern v1.0.0 h1:vlS4z54oSdjm0bgjRigI+G1HpF+tI+9rE5LLzOg8Hm github.com/josharian/intern v1.0.0/go.mod h1:5DoeVV0s6jJacbCEi61lwdGj/aVlrQvzHFFd8Hwg//Y= github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM= github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= -github.com/kcp-dev/apimachinery/v2 v2.0.1-0.20250728122101-adbf20db3e51 h1:l38RDS+VUMx9etvyaCgJIZa4nM7FaNevNubWN0kDZY4= -github.com/kcp-dev/apimachinery/v2 v2.0.1-0.20250728122101-adbf20db3e51/go.mod h1:rF1jfvUfPjFXs+HV/LN1BtPzAz1bfjJOwVa+hAVfroQ= -github.com/kcp-dev/client-go v0.0.0-20250728134101-0355faa9361b h1:2LGrXvY9sc4l5yjKIbMZ86GEou7NyrHhA4qBPaeFfxs= -github.com/kcp-dev/client-go v0.0.0-20250728134101-0355faa9361b/go.mod h1:QdO8AaGAZPr/rIZ1iVanCM3tUOiiuX897GWv7WTByLE= github.com/kcp-dev/logicalcluster/v3 v3.0.5 h1:JbYakokb+5Uinz09oTXomSUJVQsqfxEvU4RyHUYxHOU= github.com/kcp-dev/logicalcluster/v3 v3.0.5/go.mod h1:EWBUBxdr49fUB1cLMO4nOdBWmYifLbP1LfoL20KkXYY= github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= diff --git a/staging/src/github.com/kcp-dev/apimachinery/pkg/cache/controller.go b/staging/src/github.com/kcp-dev/apimachinery/pkg/cache/controller.go index d2e2c59dee8..0ff0935d63d 100644 --- a/staging/src/github.com/kcp-dev/apimachinery/pkg/cache/controller.go +++ b/staging/src/github.com/kcp-dev/apimachinery/pkg/cache/controller.go @@ -19,9 +19,9 @@ package cache import ( "fmt" - "github.com/kcp-dev/logicalcluster/v3" - "k8s.io/apimachinery/pkg/api/meta" + + "github.com/kcp-dev/logicalcluster/v3" ) const ( diff --git a/staging/src/github.com/kcp-dev/apimachinery/pkg/cache/controller_test.go b/staging/src/github.com/kcp-dev/apimachinery/pkg/cache/controller_test.go index 701b7078bc6..97810874c1b 100644 --- a/staging/src/github.com/kcp-dev/apimachinery/pkg/cache/controller_test.go +++ b/staging/src/github.com/kcp-dev/apimachinery/pkg/cache/controller_test.go @@ -19,10 +19,11 @@ package cache import ( "testing" - "github.com/kcp-dev/logicalcluster/v3" "github.com/stretchr/testify/require" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + + "github.com/kcp-dev/logicalcluster/v3" ) func TestClusterIndexFunc(t *testing.T) { diff --git a/staging/src/github.com/kcp-dev/apimachinery/pkg/cache/informers.go b/staging/src/github.com/kcp-dev/apimachinery/pkg/cache/informers.go index 7fa9e8c1332..87b95a769be 100644 --- a/staging/src/github.com/kcp-dev/apimachinery/pkg/cache/informers.go +++ b/staging/src/github.com/kcp-dev/apimachinery/pkg/cache/informers.go @@ -19,9 +19,9 @@ package cache import ( "context" - "github.com/kcp-dev/logicalcluster/v3" - "k8s.io/client-go/tools/cache" + + "github.com/kcp-dev/logicalcluster/v3" ) // ScopeableSharedIndexInformer is an informer that knows how to scope itself down to one cluster, diff --git a/staging/src/github.com/kcp-dev/apimachinery/pkg/cache/keyfunc.go b/staging/src/github.com/kcp-dev/apimachinery/pkg/cache/keyfunc.go index 64698b6e321..d639ae9ac61 100644 --- a/staging/src/github.com/kcp-dev/apimachinery/pkg/cache/keyfunc.go +++ b/staging/src/github.com/kcp-dev/apimachinery/pkg/cache/keyfunc.go @@ -20,10 +20,10 @@ import ( "fmt" "strings" - "github.com/kcp-dev/logicalcluster/v3" - "k8s.io/apimachinery/pkg/api/meta" "k8s.io/client-go/tools/cache" + + "github.com/kcp-dev/logicalcluster/v3" ) // DeletionHandlingMetaClusterNamespaceKeyFunc checks for diff --git a/staging/src/github.com/kcp-dev/apimachinery/pkg/cache/keyfunc_test.go b/staging/src/github.com/kcp-dev/apimachinery/pkg/cache/keyfunc_test.go index c2d5a3fa630..f8329205656 100644 --- a/staging/src/github.com/kcp-dev/apimachinery/pkg/cache/keyfunc_test.go +++ b/staging/src/github.com/kcp-dev/apimachinery/pkg/cache/keyfunc_test.go @@ -21,11 +21,12 @@ import ( "testing" "github.com/google/go-cmp/cmp" - "github.com/kcp-dev/logicalcluster/v3" corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/client-go/tools/cache" + + "github.com/kcp-dev/logicalcluster/v3" ) func TestDeletionHandlingMetaClusterNamespaceKeyFunc(t *testing.T) { diff --git a/staging/src/github.com/kcp-dev/apimachinery/pkg/cache/listers.go b/staging/src/github.com/kcp-dev/apimachinery/pkg/cache/listers.go index 5e816ddc987..b38e106a19d 100644 --- a/staging/src/github.com/kcp-dev/apimachinery/pkg/cache/listers.go +++ b/staging/src/github.com/kcp-dev/apimachinery/pkg/cache/listers.go @@ -17,8 +17,6 @@ limitations under the License. package cache import ( - "github.com/kcp-dev/logicalcluster/v3" - "k8s.io/apimachinery/pkg/api/errors" "k8s.io/apimachinery/pkg/api/meta" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" @@ -28,6 +26,8 @@ import ( "k8s.io/apimachinery/pkg/util/sets" "k8s.io/client-go/tools/cache" "k8s.io/klog/v2" + + "github.com/kcp-dev/logicalcluster/v3" ) // ListAllByCluster used to list items belongs to a cluster from Indexer. diff --git a/staging/src/github.com/kcp-dev/apimachinery/pkg/cache/listers_test.go b/staging/src/github.com/kcp-dev/apimachinery/pkg/cache/listers_test.go index 6a63ee43a63..477745f86dd 100644 --- a/staging/src/github.com/kcp-dev/apimachinery/pkg/cache/listers_test.go +++ b/staging/src/github.com/kcp-dev/apimachinery/pkg/cache/listers_test.go @@ -19,13 +19,14 @@ package cache import ( "testing" - "github.com/kcp-dev/logicalcluster/v3" "github.com/stretchr/testify/require" "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" "k8s.io/apimachinery/pkg/labels" "k8s.io/apimachinery/pkg/runtime/schema" "k8s.io/client-go/tools/cache" + + "github.com/kcp-dev/logicalcluster/v3" ) func newUnstructured(cluster, namespace, name string, labels labels.Set) *unstructured.Unstructured { diff --git a/staging/src/github.com/kcp-dev/apimachinery/pkg/client/cluster_config.go b/staging/src/github.com/kcp-dev/apimachinery/pkg/client/cluster_config.go index c9ddc82bf53..55e16f97157 100644 --- a/staging/src/github.com/kcp-dev/apimachinery/pkg/client/cluster_config.go +++ b/staging/src/github.com/kcp-dev/apimachinery/pkg/client/cluster_config.go @@ -17,9 +17,9 @@ limitations under the License. package client import ( - "github.com/kcp-dev/logicalcluster/v3" - "k8s.io/client-go/rest" + + "github.com/kcp-dev/logicalcluster/v3" ) // SetCluster modifies the config host path to include the diff --git a/staging/src/github.com/kcp-dev/apimachinery/pkg/client/constructor.go b/staging/src/github.com/kcp-dev/apimachinery/pkg/client/constructor.go index 0f522da11f1..93dfc4b341a 100644 --- a/staging/src/github.com/kcp-dev/apimachinery/pkg/client/constructor.go +++ b/staging/src/github.com/kcp-dev/apimachinery/pkg/client/constructor.go @@ -20,9 +20,9 @@ import ( "net/http" "sync" - "github.com/kcp-dev/logicalcluster/v3" - "k8s.io/client-go/rest" + + "github.com/kcp-dev/logicalcluster/v3" ) // Constructor is a wrapper around a constructor method for the client of type R. diff --git a/staging/src/github.com/kcp-dev/apimachinery/third_party/informers/scoped_shared_informer.go b/staging/src/github.com/kcp-dev/apimachinery/third_party/informers/scoped_shared_informer.go index 2ff27d4f7ec..a8dd1ff9842 100644 --- a/staging/src/github.com/kcp-dev/apimachinery/third_party/informers/scoped_shared_informer.go +++ b/staging/src/github.com/kcp-dev/apimachinery/third_party/informers/scoped_shared_informer.go @@ -21,12 +21,11 @@ import ( "sync" "time" - "github.com/kcp-dev/logicalcluster/v3" - utilruntime "k8s.io/apimachinery/pkg/util/runtime" "k8s.io/client-go/tools/cache" kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + "github.com/kcp-dev/logicalcluster/v3" ) // scopedSharedIndexInformer ensures that event handlers added to the underlying diff --git a/staging/src/github.com/kcp-dev/apimachinery/third_party/informers/shared_informer.go b/staging/src/github.com/kcp-dev/apimachinery/third_party/informers/shared_informer.go index 5ec1f764b0d..bbc61c16f2b 100644 --- a/staging/src/github.com/kcp-dev/apimachinery/third_party/informers/shared_informer.go +++ b/staging/src/github.com/kcp-dev/apimachinery/third_party/informers/shared_informer.go @@ -24,8 +24,6 @@ import ( "sync" "time" - "github.com/kcp-dev/logicalcluster/v3" - "k8s.io/apimachinery/pkg/api/meta" "k8s.io/apimachinery/pkg/runtime" utilruntime "k8s.io/apimachinery/pkg/util/runtime" @@ -39,6 +37,7 @@ import ( "k8s.io/utils/ptr" kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + "github.com/kcp-dev/logicalcluster/v3" ) // Optional configuration options for [SharedInformer.AddEventHandlerWithOptions]. diff --git a/staging/src/github.com/kcp-dev/client-go/apiextensions/client/clientset.go b/staging/src/github.com/kcp-dev/client-go/apiextensions/client/clientset.go index 9b2398fde20..7e241b00eec 100644 --- a/staging/src/github.com/kcp-dev/client-go/apiextensions/client/clientset.go +++ b/staging/src/github.com/kcp-dev/client-go/apiextensions/client/clientset.go @@ -22,16 +22,15 @@ import ( fmt "fmt" http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - client "k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset" discovery "k8s.io/client-go/discovery" rest "k8s.io/client-go/rest" flowcontrol "k8s.io/client-go/util/flowcontrol" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" apiextensionsv1 "github.com/kcp-dev/client-go/apiextensions/client/typed/apiextensions/v1" apiextensionsv1beta1 "github.com/kcp-dev/client-go/apiextensions/client/typed/apiextensions/v1beta1" + "github.com/kcp-dev/logicalcluster/v3" ) type ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/apiextensions/client/fake/clientset.go b/staging/src/github.com/kcp-dev/client-go/apiextensions/client/fake/clientset.go index 090d79f8810..e4f6ec365f5 100644 --- a/staging/src/github.com/kcp-dev/client-go/apiextensions/client/fake/clientset.go +++ b/staging/src/github.com/kcp-dev/client-go/apiextensions/client/fake/clientset.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - applyconfiguration "k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration" clientset "k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset" apiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1" @@ -36,6 +34,7 @@ import ( kcpfakeapiextensionsv1beta1 "github.com/kcp-dev/client-go/apiextensions/client/typed/apiextensions/v1beta1/fake" kcpfakediscovery "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/discovery/fake" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // NewSimpleClientset returns a clientset that will respond with the provided objects. diff --git a/staging/src/github.com/kcp-dev/client-go/apiextensions/client/typed/apiextensions/v1/apiextensions_client.go b/staging/src/github.com/kcp-dev/client-go/apiextensions/client/typed/apiextensions/v1/apiextensions_client.go index 9fe35c46403..81c45b2df27 100644 --- a/staging/src/github.com/kcp-dev/client-go/apiextensions/client/typed/apiextensions/v1/apiextensions_client.go +++ b/staging/src/github.com/kcp-dev/client-go/apiextensions/client/typed/apiextensions/v1/apiextensions_client.go @@ -21,14 +21,13 @@ package v1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apisapiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1" apiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/apiextensions/client/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type ApiextensionsV1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/apiextensions/client/typed/apiextensions/v1/customresourcedefinition.go b/staging/src/github.com/kcp-dev/client-go/apiextensions/client/typed/apiextensions/v1/customresourcedefinition.go index 3c9ad688eaf..bf70bddd08b 100644 --- a/staging/src/github.com/kcp-dev/client-go/apiextensions/client/typed/apiextensions/v1/customresourcedefinition.go +++ b/staging/src/github.com/kcp-dev/client-go/apiextensions/client/typed/apiextensions/v1/customresourcedefinition.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apisapiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1" apiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // CustomResourceDefinitionsClusterGetter has a method to return a CustomResourceDefinitionClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/apiextensions/client/typed/apiextensions/v1/fake/apiextensions_client.go b/staging/src/github.com/kcp-dev/client-go/apiextensions/client/typed/apiextensions/v1/fake/apiextensions_client.go index 1684659940a..2a6eb8d22d6 100644 --- a/staging/src/github.com/kcp-dev/client-go/apiextensions/client/typed/apiextensions/v1/fake/apiextensions_client.go +++ b/staging/src/github.com/kcp-dev/client-go/apiextensions/client/typed/apiextensions/v1/fake/apiextensions_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - apiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1" rest "k8s.io/client-go/rest" kcpapiextensionsv1 "github.com/kcp-dev/client-go/apiextensions/client/typed/apiextensions/v1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpapiextensionsv1.ApiextensionsV1ClusterInterface = (*ApiextensionsV1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/apiextensions/client/typed/apiextensions/v1/fake/customresourcedefinition.go b/staging/src/github.com/kcp-dev/client-go/apiextensions/client/typed/apiextensions/v1/fake/customresourcedefinition.go index 868170298f8..6039c837893 100644 --- a/staging/src/github.com/kcp-dev/client-go/apiextensions/client/typed/apiextensions/v1/fake/customresourcedefinition.go +++ b/staging/src/github.com/kcp-dev/client-go/apiextensions/client/typed/apiextensions/v1/fake/customresourcedefinition.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - apiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1" v1 "k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1" typedapiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1" @@ -28,6 +26,7 @@ import ( typedkcpapiextensionsv1 "github.com/kcp-dev/client-go/apiextensions/client/typed/apiextensions/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // customResourceDefinitionClusterClient implements CustomResourceDefinitionClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/apiextensions/client/typed/apiextensions/v1beta1/apiextensions_client.go b/staging/src/github.com/kcp-dev/client-go/apiextensions/client/typed/apiextensions/v1beta1/apiextensions_client.go index aad579e507b..bf685ee2940 100644 --- a/staging/src/github.com/kcp-dev/client-go/apiextensions/client/typed/apiextensions/v1beta1/apiextensions_client.go +++ b/staging/src/github.com/kcp-dev/client-go/apiextensions/client/typed/apiextensions/v1beta1/apiextensions_client.go @@ -21,14 +21,13 @@ package v1beta1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apisapiextensionsv1beta1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1" apiextensionsv1beta1 "k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/apiextensions/client/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type ApiextensionsV1beta1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/apiextensions/client/typed/apiextensions/v1beta1/customresourcedefinition.go b/staging/src/github.com/kcp-dev/client-go/apiextensions/client/typed/apiextensions/v1beta1/customresourcedefinition.go index 35c0dddc957..514994e61bf 100644 --- a/staging/src/github.com/kcp-dev/client-go/apiextensions/client/typed/apiextensions/v1beta1/customresourcedefinition.go +++ b/staging/src/github.com/kcp-dev/client-go/apiextensions/client/typed/apiextensions/v1beta1/customresourcedefinition.go @@ -21,13 +21,13 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apisapiextensionsv1beta1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1" apiextensionsv1beta1 "k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // CustomResourceDefinitionsClusterGetter has a method to return a CustomResourceDefinitionClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/apiextensions/client/typed/apiextensions/v1beta1/fake/apiextensions_client.go b/staging/src/github.com/kcp-dev/client-go/apiextensions/client/typed/apiextensions/v1beta1/fake/apiextensions_client.go index 587eaed6f49..820116ce33f 100644 --- a/staging/src/github.com/kcp-dev/client-go/apiextensions/client/typed/apiextensions/v1beta1/fake/apiextensions_client.go +++ b/staging/src/github.com/kcp-dev/client-go/apiextensions/client/typed/apiextensions/v1beta1/fake/apiextensions_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - apiextensionsv1beta1 "k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1" rest "k8s.io/client-go/rest" kcpapiextensionsv1beta1 "github.com/kcp-dev/client-go/apiextensions/client/typed/apiextensions/v1beta1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpapiextensionsv1beta1.ApiextensionsV1beta1ClusterInterface = (*ApiextensionsV1beta1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/apiextensions/client/typed/apiextensions/v1beta1/fake/customresourcedefinition.go b/staging/src/github.com/kcp-dev/client-go/apiextensions/client/typed/apiextensions/v1beta1/fake/customresourcedefinition.go index 2dde15c0a3f..fa9f9f473fd 100644 --- a/staging/src/github.com/kcp-dev/client-go/apiextensions/client/typed/apiextensions/v1beta1/fake/customresourcedefinition.go +++ b/staging/src/github.com/kcp-dev/client-go/apiextensions/client/typed/apiextensions/v1beta1/fake/customresourcedefinition.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - apiextensionsv1beta1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1" v1beta1 "k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1beta1" typedapiextensionsv1beta1 "k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1" @@ -28,6 +26,7 @@ import ( typedkcpapiextensionsv1beta1 "github.com/kcp-dev/client-go/apiextensions/client/typed/apiextensions/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // customResourceDefinitionClusterClient implements CustomResourceDefinitionClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/apiextensions/informers/apiextensions/v1/customresourcedefinition.go b/staging/src/github.com/kcp-dev/client-go/apiextensions/informers/apiextensions/v1/customresourcedefinition.go index 0dab6ce5dff..f24500a5692 100644 --- a/staging/src/github.com/kcp-dev/client-go/apiextensions/informers/apiextensions/v1/customresourcedefinition.go +++ b/staging/src/github.com/kcp-dev/client-go/apiextensions/informers/apiextensions/v1/customresourcedefinition.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apisapiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1" apiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/client/informers/externalversions/apiextensions/v1" listersapiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/client/listers/apiextensions/v1" @@ -34,9 +30,12 @@ import ( watch "k8s.io/apimachinery/pkg/watch" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpclient "github.com/kcp-dev/client-go/apiextensions/client" kcpinternalinterfaces "github.com/kcp-dev/client-go/apiextensions/informers/internalinterfaces" kcpv1 "github.com/kcp-dev/client-go/apiextensions/listers/apiextensions/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // CustomResourceDefinitionClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/apiextensions/informers/apiextensions/v1beta1/customresourcedefinition.go b/staging/src/github.com/kcp-dev/client-go/apiextensions/informers/apiextensions/v1beta1/customresourcedefinition.go index b1a8369109d..92a3c333ab6 100644 --- a/staging/src/github.com/kcp-dev/client-go/apiextensions/informers/apiextensions/v1beta1/customresourcedefinition.go +++ b/staging/src/github.com/kcp-dev/client-go/apiextensions/informers/apiextensions/v1beta1/customresourcedefinition.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apisapiextensionsv1beta1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1" apiextensionsv1beta1 "k8s.io/apiextensions-apiserver/pkg/client/informers/externalversions/apiextensions/v1beta1" listersapiextensionsv1beta1 "k8s.io/apiextensions-apiserver/pkg/client/listers/apiextensions/v1beta1" @@ -34,9 +30,12 @@ import ( watch "k8s.io/apimachinery/pkg/watch" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpclient "github.com/kcp-dev/client-go/apiextensions/client" kcpinternalinterfaces "github.com/kcp-dev/client-go/apiextensions/informers/internalinterfaces" kcpv1beta1 "github.com/kcp-dev/client-go/apiextensions/listers/apiextensions/v1beta1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // CustomResourceDefinitionClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/apiextensions/informers/factory.go b/staging/src/github.com/kcp-dev/client-go/apiextensions/informers/factory.go index 2479c10aa6f..19dbd16f866 100644 --- a/staging/src/github.com/kcp-dev/client-go/apiextensions/informers/factory.go +++ b/staging/src/github.com/kcp-dev/client-go/apiextensions/informers/factory.go @@ -23,18 +23,17 @@ import ( sync "sync" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - externalversions "k8s.io/apiextensions-apiserver/pkg/client/informers/externalversions" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" schema "k8s.io/apimachinery/pkg/runtime/schema" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" kcpclient "github.com/kcp-dev/client-go/apiextensions/client" kcpapiextensions "github.com/kcp-dev/client-go/apiextensions/informers/apiextensions" kcpinternalinterfaces "github.com/kcp-dev/client-go/apiextensions/informers/internalinterfaces" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // SharedInformerOption defines the functional option type for SharedInformerFactory. diff --git a/staging/src/github.com/kcp-dev/client-go/apiextensions/informers/generic.go b/staging/src/github.com/kcp-dev/client-go/apiextensions/informers/generic.go index 3617f9cc515..db911ff0ef6 100644 --- a/staging/src/github.com/kcp-dev/client-go/apiextensions/informers/generic.go +++ b/staging/src/github.com/kcp-dev/client-go/apiextensions/informers/generic.go @@ -22,14 +22,14 @@ import ( context "context" fmt "fmt" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - v1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1" v1beta1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1" externalversions "k8s.io/apiextensions-apiserver/pkg/client/informers/externalversions" schema "k8s.io/apimachinery/pkg/runtime/schema" cache "k8s.io/client-go/tools/cache" + + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) type GenericClusterInformer interface { diff --git a/staging/src/github.com/kcp-dev/client-go/apiextensions/informers/internalinterfaces/factory_interfaces.go b/staging/src/github.com/kcp-dev/client-go/apiextensions/informers/internalinterfaces/factory_interfaces.go index e767f3fb47f..76f8442b247 100644 --- a/staging/src/github.com/kcp-dev/client-go/apiextensions/informers/internalinterfaces/factory_interfaces.go +++ b/staging/src/github.com/kcp-dev/client-go/apiextensions/informers/internalinterfaces/factory_interfaces.go @@ -21,11 +21,10 @@ package internalinterfaces import ( time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" kcpclient "github.com/kcp-dev/client-go/apiextensions/client" ) diff --git a/staging/src/github.com/kcp-dev/client-go/apiextensions/listers/apiextensions/v1/customresourcedefinition.go b/staging/src/github.com/kcp-dev/client-go/apiextensions/listers/apiextensions/v1/customresourcedefinition.go index cfa3012f2fe..54764c8cde1 100644 --- a/staging/src/github.com/kcp-dev/client-go/apiextensions/listers/apiextensions/v1/customresourcedefinition.go +++ b/staging/src/github.com/kcp-dev/client-go/apiextensions/listers/apiextensions/v1/customresourcedefinition.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - apiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1" listersapiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/client/listers/apiextensions/v1" "k8s.io/apimachinery/pkg/labels" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // CustomResourceDefinitionClusterLister helps list CustomResourceDefinitions across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/apiextensions/listers/apiextensions/v1beta1/customresourcedefinition.go b/staging/src/github.com/kcp-dev/client-go/apiextensions/listers/apiextensions/v1beta1/customresourcedefinition.go index f0dc0ac0a20..3e010f52602 100644 --- a/staging/src/github.com/kcp-dev/client-go/apiextensions/listers/apiextensions/v1beta1/customresourcedefinition.go +++ b/staging/src/github.com/kcp-dev/client-go/apiextensions/listers/apiextensions/v1beta1/customresourcedefinition.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - apiextensionsv1beta1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1" listersapiextensionsv1beta1 "k8s.io/apiextensions-apiserver/pkg/client/listers/apiextensions/v1beta1" "k8s.io/apimachinery/pkg/labels" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // CustomResourceDefinitionClusterLister helps list CustomResourceDefinitions across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/dependencies.go b/staging/src/github.com/kcp-dev/client-go/dependencies.go index e40c184a2aa..683cb118039 100644 --- a/staging/src/github.com/kcp-dev/client-go/dependencies.go +++ b/staging/src/github.com/kcp-dev/client-go/dependencies.go @@ -20,7 +20,6 @@ import ( _ "github.com/kcp-dev/apimachinery/v2/pkg/cache" _ "github.com/kcp-dev/code-generator/v3/cmd/cluster-client-gen/generators" _ "github.com/kcp-dev/logicalcluster/v3" - _ "k8s.io/api/core/v1" _ "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1" _ "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation" diff --git a/staging/src/github.com/kcp-dev/client-go/discovery/clientset.go b/staging/src/github.com/kcp-dev/client-go/discovery/clientset.go index a4ab68216ab..9d08f6546f7 100644 --- a/staging/src/github.com/kcp-dev/client-go/discovery/clientset.go +++ b/staging/src/github.com/kcp-dev/client-go/discovery/clientset.go @@ -20,12 +20,12 @@ import ( "fmt" "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - "k8s.io/client-go/discovery" "k8s.io/client-go/rest" "k8s.io/client-go/util/flowcontrol" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) var _ DiscoveryClusterInterface = (*ClusterClientset)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/discovery/interface.go b/staging/src/github.com/kcp-dev/client-go/discovery/interface.go index 002b010cc5b..ddf418e6a75 100644 --- a/staging/src/github.com/kcp-dev/client-go/discovery/interface.go +++ b/staging/src/github.com/kcp-dev/client-go/discovery/interface.go @@ -17,9 +17,9 @@ limitations under the License. package discovery import ( - "github.com/kcp-dev/logicalcluster/v3" - "k8s.io/client-go/discovery" + + "github.com/kcp-dev/logicalcluster/v3" ) type DiscoveryClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/dynamic/clientset.go b/staging/src/github.com/kcp-dev/client-go/dynamic/clientset.go index dc5dadfa2ba..733ec8dedfa 100644 --- a/staging/src/github.com/kcp-dev/client-go/dynamic/clientset.go +++ b/staging/src/github.com/kcp-dev/client-go/dynamic/clientset.go @@ -21,9 +21,6 @@ import ( "fmt" "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" "k8s.io/apimachinery/pkg/runtime/schema" @@ -32,7 +29,9 @@ import ( "k8s.io/client-go/rest" "k8s.io/client-go/util/flowcontrol" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" thirdpartydynamic "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/dynamic" + "github.com/kcp-dev/logicalcluster/v3" ) var _ ClusterInterface = (*ClusterClientset)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/dynamic/dynamicinformer/informer.go b/staging/src/github.com/kcp-dev/client-go/dynamic/dynamicinformer/informer.go index 396d650a055..937012883c9 100644 --- a/staging/src/github.com/kcp-dev/client-go/dynamic/dynamicinformer/informer.go +++ b/staging/src/github.com/kcp-dev/client-go/dynamic/dynamicinformer/informer.go @@ -21,10 +21,6 @@ import ( "sync" "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - thirdpartyinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - "github.com/kcp-dev/logicalcluster/v3" - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( upstreaminformers "k8s.io/client-go/informers" "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + thirdpartyinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpdynamic "github.com/kcp-dev/client-go/dynamic" kcpdynamiclisters "github.com/kcp-dev/client-go/dynamic/dynamiclister" kcpinformers "github.com/kcp-dev/client-go/informers" + "github.com/kcp-dev/logicalcluster/v3" ) // NewDynamicSharedInformerFactory constructs a new instance of dynamicSharedInformerFactory for all namespaces. diff --git a/staging/src/github.com/kcp-dev/client-go/dynamic/dynamiclister/interface.go b/staging/src/github.com/kcp-dev/client-go/dynamic/dynamiclister/interface.go index 9d07a361aea..0ffe4e96a1c 100644 --- a/staging/src/github.com/kcp-dev/client-go/dynamic/dynamiclister/interface.go +++ b/staging/src/github.com/kcp-dev/client-go/dynamic/dynamiclister/interface.go @@ -17,11 +17,11 @@ limitations under the License. package dynamiclister import ( - "github.com/kcp-dev/logicalcluster/v3" - "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" "k8s.io/apimachinery/pkg/labels" "k8s.io/client-go/dynamic/dynamiclister" + + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterLister can list resources across all workspaces, or scope down to a Lister for one workspace. diff --git a/staging/src/github.com/kcp-dev/client-go/dynamic/dynamiclister/lister.go b/staging/src/github.com/kcp-dev/client-go/dynamic/dynamiclister/lister.go index c9000fddbec..8902a1c967f 100644 --- a/staging/src/github.com/kcp-dev/client-go/dynamic/dynamiclister/lister.go +++ b/staging/src/github.com/kcp-dev/client-go/dynamic/dynamiclister/lister.go @@ -17,9 +17,6 @@ limitations under the License. package dynamiclister import ( - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - "github.com/kcp-dev/logicalcluster/v3" - "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" @@ -27,6 +24,9 @@ import ( "k8s.io/apimachinery/pkg/runtime/schema" "k8s.io/client-go/dynamic/dynamiclister" "k8s.io/client-go/tools/cache" + + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + "github.com/kcp-dev/logicalcluster/v3" ) // New returns a new ClusterLister. diff --git a/staging/src/github.com/kcp-dev/client-go/dynamic/dynamiclister/shim.go b/staging/src/github.com/kcp-dev/client-go/dynamic/dynamiclister/shim.go index a967112d331..9dfbc22db26 100644 --- a/staging/src/github.com/kcp-dev/client-go/dynamic/dynamiclister/shim.go +++ b/staging/src/github.com/kcp-dev/client-go/dynamic/dynamiclister/shim.go @@ -17,13 +17,13 @@ limitations under the License. package dynamiclister import ( - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - "github.com/kcp-dev/logicalcluster/v3" - "k8s.io/apimachinery/pkg/labels" "k8s.io/apimachinery/pkg/runtime" "k8s.io/client-go/dynamic/dynamiclister" "k8s.io/client-go/tools/cache" + + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + "github.com/kcp-dev/logicalcluster/v3" ) // NewRuntimeObjectShim returns a new shim for ClusterLister. diff --git a/staging/src/github.com/kcp-dev/client-go/dynamic/interface.go b/staging/src/github.com/kcp-dev/client-go/dynamic/interface.go index c1061b83596..729121638a8 100644 --- a/staging/src/github.com/kcp-dev/client-go/dynamic/interface.go +++ b/staging/src/github.com/kcp-dev/client-go/dynamic/interface.go @@ -19,13 +19,13 @@ package dynamic import ( "context" - "github.com/kcp-dev/logicalcluster/v3" - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" "k8s.io/apimachinery/pkg/runtime/schema" "k8s.io/apimachinery/pkg/watch" "k8s.io/client-go/dynamic" + + "github.com/kcp-dev/logicalcluster/v3" ) type ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/go.mod b/staging/src/github.com/kcp-dev/client-go/go.mod index cfd86579a71..a53c5224d8a 100644 --- a/staging/src/github.com/kcp-dev/client-go/go.mod +++ b/staging/src/github.com/kcp-dev/client-go/go.mod @@ -89,3 +89,8 @@ require ( sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect sigs.k8s.io/randfill v1.0.0 // indirect ) + +replace ( + github.com/kcp-dev/apimachinery/v2 => ../apimachinery + github.com/kcp-dev/code-generator/v3 => ../code-generator +) diff --git a/staging/src/github.com/kcp-dev/client-go/go.sum b/staging/src/github.com/kcp-dev/client-go/go.sum index d68129a400c..3d1d6e4a44c 100644 --- a/staging/src/github.com/kcp-dev/client-go/go.sum +++ b/staging/src/github.com/kcp-dev/client-go/go.sum @@ -66,10 +66,6 @@ github.com/josharian/intern v1.0.0 h1:vlS4z54oSdjm0bgjRigI+G1HpF+tI+9rE5LLzOg8Hm github.com/josharian/intern v1.0.0/go.mod h1:5DoeVV0s6jJacbCEi61lwdGj/aVlrQvzHFFd8Hwg//Y= github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM= github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= -github.com/kcp-dev/apimachinery/v2 v2.0.1-0.20250717064240-78e565b4a69a h1:MG1AMJQrRI/Y644cJsZ2qdtdWzVQMRt37DNJd+k4KoI= -github.com/kcp-dev/apimachinery/v2 v2.0.1-0.20250717064240-78e565b4a69a/go.mod h1:rF1jfvUfPjFXs+HV/LN1BtPzAz1bfjJOwVa+hAVfroQ= -github.com/kcp-dev/code-generator/v3 v3.0.0-20250717064843-0c8e5fec4f71 h1:j4QnxRd+JSV2Cq4wyYgtSptESnj6ftNcqHPSqY59YHE= -github.com/kcp-dev/code-generator/v3 v3.0.0-20250717064843-0c8e5fec4f71/go.mod h1:PZBfAWJtztxgGCiIjH+txB7aZbMBUOCN5HFms7h7CwE= github.com/kcp-dev/logicalcluster/v3 v3.0.5 h1:JbYakokb+5Uinz09oTXomSUJVQsqfxEvU4RyHUYxHOU= github.com/kcp-dev/logicalcluster/v3 v3.0.5/go.mod h1:EWBUBxdr49fUB1cLMO4nOdBWmYifLbP1LfoL20KkXYY= github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= diff --git a/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1/mutatingwebhookconfiguration.go b/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1/mutatingwebhookconfiguration.go index 15e4e4169d7..ae2f4a76600 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1/mutatingwebhookconfiguration.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1/mutatingwebhookconfiguration.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiadmissionregistrationv1 "k8s.io/api/admissionregistration/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersadmissionregistrationv1 "k8s.io/client-go/listers/admissionregistration/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/admissionregistration/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // MutatingWebhookConfigurationClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1/validatingadmissionpolicy.go b/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1/validatingadmissionpolicy.go index 7c96bef7b72..26ccc2df0cc 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1/validatingadmissionpolicy.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1/validatingadmissionpolicy.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiadmissionregistrationv1 "k8s.io/api/admissionregistration/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersadmissionregistrationv1 "k8s.io/client-go/listers/admissionregistration/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/admissionregistration/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ValidatingAdmissionPolicyClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1/validatingadmissionpolicybinding.go b/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1/validatingadmissionpolicybinding.go index ceffd8f0059..d15b955dfc3 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1/validatingadmissionpolicybinding.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1/validatingadmissionpolicybinding.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiadmissionregistrationv1 "k8s.io/api/admissionregistration/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersadmissionregistrationv1 "k8s.io/client-go/listers/admissionregistration/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/admissionregistration/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ValidatingAdmissionPolicyBindingClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1/validatingwebhookconfiguration.go b/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1/validatingwebhookconfiguration.go index b51a58c2936..a0ee9d16233 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1/validatingwebhookconfiguration.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1/validatingwebhookconfiguration.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiadmissionregistrationv1 "k8s.io/api/admissionregistration/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersadmissionregistrationv1 "k8s.io/client-go/listers/admissionregistration/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/admissionregistration/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ValidatingWebhookConfigurationClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1alpha1/mutatingadmissionpolicy.go b/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1alpha1/mutatingadmissionpolicy.go index bd3b4c9cd44..828e9c44d88 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1alpha1/mutatingadmissionpolicy.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1alpha1/mutatingadmissionpolicy.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiadmissionregistrationv1alpha1 "k8s.io/api/admissionregistration/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersadmissionregistrationv1alpha1 "k8s.io/client-go/listers/admissionregistration/v1alpha1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1alpha1 "github.com/kcp-dev/client-go/listers/admissionregistration/v1alpha1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // MutatingAdmissionPolicyClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1alpha1/mutatingadmissionpolicybinding.go b/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1alpha1/mutatingadmissionpolicybinding.go index 28693435350..78bda5cbc13 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1alpha1/mutatingadmissionpolicybinding.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1alpha1/mutatingadmissionpolicybinding.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiadmissionregistrationv1alpha1 "k8s.io/api/admissionregistration/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersadmissionregistrationv1alpha1 "k8s.io/client-go/listers/admissionregistration/v1alpha1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1alpha1 "github.com/kcp-dev/client-go/listers/admissionregistration/v1alpha1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // MutatingAdmissionPolicyBindingClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1alpha1/validatingadmissionpolicy.go b/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1alpha1/validatingadmissionpolicy.go index 5ad1a9fa64f..4eb40d8f114 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1alpha1/validatingadmissionpolicy.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1alpha1/validatingadmissionpolicy.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiadmissionregistrationv1alpha1 "k8s.io/api/admissionregistration/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersadmissionregistrationv1alpha1 "k8s.io/client-go/listers/admissionregistration/v1alpha1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1alpha1 "github.com/kcp-dev/client-go/listers/admissionregistration/v1alpha1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ValidatingAdmissionPolicyClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1alpha1/validatingadmissionpolicybinding.go b/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1alpha1/validatingadmissionpolicybinding.go index 25a18dc1089..017b9d6e401 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1alpha1/validatingadmissionpolicybinding.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1alpha1/validatingadmissionpolicybinding.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiadmissionregistrationv1alpha1 "k8s.io/api/admissionregistration/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersadmissionregistrationv1alpha1 "k8s.io/client-go/listers/admissionregistration/v1alpha1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1alpha1 "github.com/kcp-dev/client-go/listers/admissionregistration/v1alpha1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ValidatingAdmissionPolicyBindingClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1beta1/mutatingwebhookconfiguration.go b/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1beta1/mutatingwebhookconfiguration.go index e0a04e6ae34..2b5a03bf82d 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1beta1/mutatingwebhookconfiguration.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1beta1/mutatingwebhookconfiguration.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiadmissionregistrationv1beta1 "k8s.io/api/admissionregistration/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersadmissionregistrationv1beta1 "k8s.io/client-go/listers/admissionregistration/v1beta1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta1 "github.com/kcp-dev/client-go/listers/admissionregistration/v1beta1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // MutatingWebhookConfigurationClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1beta1/validatingadmissionpolicy.go b/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1beta1/validatingadmissionpolicy.go index c754c8aeb3a..b608670364b 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1beta1/validatingadmissionpolicy.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1beta1/validatingadmissionpolicy.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiadmissionregistrationv1beta1 "k8s.io/api/admissionregistration/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersadmissionregistrationv1beta1 "k8s.io/client-go/listers/admissionregistration/v1beta1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta1 "github.com/kcp-dev/client-go/listers/admissionregistration/v1beta1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ValidatingAdmissionPolicyClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1beta1/validatingadmissionpolicybinding.go b/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1beta1/validatingadmissionpolicybinding.go index d87a5408991..a675d4c46a6 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1beta1/validatingadmissionpolicybinding.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1beta1/validatingadmissionpolicybinding.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiadmissionregistrationv1beta1 "k8s.io/api/admissionregistration/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersadmissionregistrationv1beta1 "k8s.io/client-go/listers/admissionregistration/v1beta1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta1 "github.com/kcp-dev/client-go/listers/admissionregistration/v1beta1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ValidatingAdmissionPolicyBindingClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1beta1/validatingwebhookconfiguration.go b/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1beta1/validatingwebhookconfiguration.go index 285074f45ff..a78a3b63bfb 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1beta1/validatingwebhookconfiguration.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/admissionregistration/v1beta1/validatingwebhookconfiguration.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiadmissionregistrationv1beta1 "k8s.io/api/admissionregistration/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersadmissionregistrationv1beta1 "k8s.io/client-go/listers/admissionregistration/v1beta1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta1 "github.com/kcp-dev/client-go/listers/admissionregistration/v1beta1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ValidatingWebhookConfigurationClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/apiserverinternal/v1alpha1/storageversion.go b/staging/src/github.com/kcp-dev/client-go/informers/apiserverinternal/v1alpha1/storageversion.go index 5446a7c56ad..a953bb2ed70 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/apiserverinternal/v1alpha1/storageversion.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/apiserverinternal/v1alpha1/storageversion.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiapiserverinternalv1alpha1 "k8s.io/api/apiserverinternal/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersapiserverinternalv1alpha1 "k8s.io/client-go/listers/apiserverinternal/v1alpha1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1alpha1 "github.com/kcp-dev/client-go/listers/apiserverinternal/v1alpha1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // StorageVersionClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/apps/v1/controllerrevision.go b/staging/src/github.com/kcp-dev/client-go/informers/apps/v1/controllerrevision.go index 29c4ed31694..807e7cca31c 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/apps/v1/controllerrevision.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/apps/v1/controllerrevision.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiappsv1 "k8s.io/api/apps/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersappsv1 "k8s.io/client-go/listers/apps/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/apps/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ControllerRevisionClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/apps/v1/daemonset.go b/staging/src/github.com/kcp-dev/client-go/informers/apps/v1/daemonset.go index 539a0c27d57..1e2cc530261 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/apps/v1/daemonset.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/apps/v1/daemonset.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiappsv1 "k8s.io/api/apps/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersappsv1 "k8s.io/client-go/listers/apps/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/apps/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // DaemonSetClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/apps/v1/deployment.go b/staging/src/github.com/kcp-dev/client-go/informers/apps/v1/deployment.go index 71c25a60322..8e2cd2b31c8 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/apps/v1/deployment.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/apps/v1/deployment.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiappsv1 "k8s.io/api/apps/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersappsv1 "k8s.io/client-go/listers/apps/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/apps/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // DeploymentClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/apps/v1/replicaset.go b/staging/src/github.com/kcp-dev/client-go/informers/apps/v1/replicaset.go index 08e14daf66e..d20dcb0c924 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/apps/v1/replicaset.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/apps/v1/replicaset.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiappsv1 "k8s.io/api/apps/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersappsv1 "k8s.io/client-go/listers/apps/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/apps/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ReplicaSetClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/apps/v1/statefulset.go b/staging/src/github.com/kcp-dev/client-go/informers/apps/v1/statefulset.go index 97732903a20..d05922eeac6 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/apps/v1/statefulset.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/apps/v1/statefulset.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiappsv1 "k8s.io/api/apps/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersappsv1 "k8s.io/client-go/listers/apps/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/apps/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // StatefulSetClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/apps/v1beta1/controllerrevision.go b/staging/src/github.com/kcp-dev/client-go/informers/apps/v1beta1/controllerrevision.go index 814f1b13d3f..81168d725ae 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/apps/v1beta1/controllerrevision.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/apps/v1beta1/controllerrevision.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiappsv1beta1 "k8s.io/api/apps/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersappsv1beta1 "k8s.io/client-go/listers/apps/v1beta1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta1 "github.com/kcp-dev/client-go/listers/apps/v1beta1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ControllerRevisionClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/apps/v1beta1/deployment.go b/staging/src/github.com/kcp-dev/client-go/informers/apps/v1beta1/deployment.go index 0b8e8d187f3..eb83dfc281b 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/apps/v1beta1/deployment.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/apps/v1beta1/deployment.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiappsv1beta1 "k8s.io/api/apps/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersappsv1beta1 "k8s.io/client-go/listers/apps/v1beta1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta1 "github.com/kcp-dev/client-go/listers/apps/v1beta1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // DeploymentClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/apps/v1beta1/statefulset.go b/staging/src/github.com/kcp-dev/client-go/informers/apps/v1beta1/statefulset.go index 7fcf0e0f572..8c26aa81639 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/apps/v1beta1/statefulset.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/apps/v1beta1/statefulset.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiappsv1beta1 "k8s.io/api/apps/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersappsv1beta1 "k8s.io/client-go/listers/apps/v1beta1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta1 "github.com/kcp-dev/client-go/listers/apps/v1beta1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // StatefulSetClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/apps/v1beta2/controllerrevision.go b/staging/src/github.com/kcp-dev/client-go/informers/apps/v1beta2/controllerrevision.go index c716e5d2bf8..9d8cb9861b5 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/apps/v1beta2/controllerrevision.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/apps/v1beta2/controllerrevision.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiappsv1beta2 "k8s.io/api/apps/v1beta2" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersappsv1beta2 "k8s.io/client-go/listers/apps/v1beta2" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta2 "github.com/kcp-dev/client-go/listers/apps/v1beta2" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ControllerRevisionClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/apps/v1beta2/daemonset.go b/staging/src/github.com/kcp-dev/client-go/informers/apps/v1beta2/daemonset.go index cf2ec687127..16f330af984 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/apps/v1beta2/daemonset.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/apps/v1beta2/daemonset.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiappsv1beta2 "k8s.io/api/apps/v1beta2" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersappsv1beta2 "k8s.io/client-go/listers/apps/v1beta2" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta2 "github.com/kcp-dev/client-go/listers/apps/v1beta2" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // DaemonSetClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/apps/v1beta2/deployment.go b/staging/src/github.com/kcp-dev/client-go/informers/apps/v1beta2/deployment.go index 04ffc59c973..685469c6d17 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/apps/v1beta2/deployment.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/apps/v1beta2/deployment.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiappsv1beta2 "k8s.io/api/apps/v1beta2" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersappsv1beta2 "k8s.io/client-go/listers/apps/v1beta2" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta2 "github.com/kcp-dev/client-go/listers/apps/v1beta2" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // DeploymentClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/apps/v1beta2/replicaset.go b/staging/src/github.com/kcp-dev/client-go/informers/apps/v1beta2/replicaset.go index f3e77fcb6f7..4c62832e046 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/apps/v1beta2/replicaset.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/apps/v1beta2/replicaset.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiappsv1beta2 "k8s.io/api/apps/v1beta2" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersappsv1beta2 "k8s.io/client-go/listers/apps/v1beta2" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta2 "github.com/kcp-dev/client-go/listers/apps/v1beta2" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ReplicaSetClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/apps/v1beta2/statefulset.go b/staging/src/github.com/kcp-dev/client-go/informers/apps/v1beta2/statefulset.go index 3b1caf15d52..8a4dd5ec50a 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/apps/v1beta2/statefulset.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/apps/v1beta2/statefulset.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiappsv1beta2 "k8s.io/api/apps/v1beta2" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersappsv1beta2 "k8s.io/client-go/listers/apps/v1beta2" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta2 "github.com/kcp-dev/client-go/listers/apps/v1beta2" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // StatefulSetClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/autoscaling/v1/horizontalpodautoscaler.go b/staging/src/github.com/kcp-dev/client-go/informers/autoscaling/v1/horizontalpodautoscaler.go index 16b210e17fa..f04bb65fd21 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/autoscaling/v1/horizontalpodautoscaler.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/autoscaling/v1/horizontalpodautoscaler.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiautoscalingv1 "k8s.io/api/autoscaling/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersautoscalingv1 "k8s.io/client-go/listers/autoscaling/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/autoscaling/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // HorizontalPodAutoscalerClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/autoscaling/v2/horizontalpodautoscaler.go b/staging/src/github.com/kcp-dev/client-go/informers/autoscaling/v2/horizontalpodautoscaler.go index d9d5fd2e870..c32739fc00c 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/autoscaling/v2/horizontalpodautoscaler.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/autoscaling/v2/horizontalpodautoscaler.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiautoscalingv2 "k8s.io/api/autoscaling/v2" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersautoscalingv2 "k8s.io/client-go/listers/autoscaling/v2" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv2 "github.com/kcp-dev/client-go/listers/autoscaling/v2" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // HorizontalPodAutoscalerClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/autoscaling/v2beta1/horizontalpodautoscaler.go b/staging/src/github.com/kcp-dev/client-go/informers/autoscaling/v2beta1/horizontalpodautoscaler.go index 329a13fdc53..e13d893065a 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/autoscaling/v2beta1/horizontalpodautoscaler.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/autoscaling/v2beta1/horizontalpodautoscaler.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiautoscalingv2beta1 "k8s.io/api/autoscaling/v2beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersautoscalingv2beta1 "k8s.io/client-go/listers/autoscaling/v2beta1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv2beta1 "github.com/kcp-dev/client-go/listers/autoscaling/v2beta1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // HorizontalPodAutoscalerClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/autoscaling/v2beta2/horizontalpodautoscaler.go b/staging/src/github.com/kcp-dev/client-go/informers/autoscaling/v2beta2/horizontalpodautoscaler.go index f1c114d1a7c..a42865772df 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/autoscaling/v2beta2/horizontalpodautoscaler.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/autoscaling/v2beta2/horizontalpodautoscaler.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiautoscalingv2beta2 "k8s.io/api/autoscaling/v2beta2" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersautoscalingv2beta2 "k8s.io/client-go/listers/autoscaling/v2beta2" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv2beta2 "github.com/kcp-dev/client-go/listers/autoscaling/v2beta2" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // HorizontalPodAutoscalerClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/batch/v1/cronjob.go b/staging/src/github.com/kcp-dev/client-go/informers/batch/v1/cronjob.go index 5e4cbe1e40f..0db6bb4a84b 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/batch/v1/cronjob.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/batch/v1/cronjob.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apibatchv1 "k8s.io/api/batch/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersbatchv1 "k8s.io/client-go/listers/batch/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/batch/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // CronJobClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/batch/v1/job.go b/staging/src/github.com/kcp-dev/client-go/informers/batch/v1/job.go index 54a7d23275e..4d6085f5e9c 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/batch/v1/job.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/batch/v1/job.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apibatchv1 "k8s.io/api/batch/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersbatchv1 "k8s.io/client-go/listers/batch/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/batch/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // JobClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/batch/v1beta1/cronjob.go b/staging/src/github.com/kcp-dev/client-go/informers/batch/v1beta1/cronjob.go index 3093d9dec8e..7f36c3826cf 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/batch/v1beta1/cronjob.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/batch/v1beta1/cronjob.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apibatchv1beta1 "k8s.io/api/batch/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersbatchv1beta1 "k8s.io/client-go/listers/batch/v1beta1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta1 "github.com/kcp-dev/client-go/listers/batch/v1beta1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // CronJobClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/certificates/v1/certificatesigningrequest.go b/staging/src/github.com/kcp-dev/client-go/informers/certificates/v1/certificatesigningrequest.go index 73183671c1f..b61608a5a01 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/certificates/v1/certificatesigningrequest.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/certificates/v1/certificatesigningrequest.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apicertificatesv1 "k8s.io/api/certificates/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listerscertificatesv1 "k8s.io/client-go/listers/certificates/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/certificates/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // CertificateSigningRequestClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/certificates/v1alpha1/clustertrustbundle.go b/staging/src/github.com/kcp-dev/client-go/informers/certificates/v1alpha1/clustertrustbundle.go index 0a33056bcf3..f2e7bebec63 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/certificates/v1alpha1/clustertrustbundle.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/certificates/v1alpha1/clustertrustbundle.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apicertificatesv1alpha1 "k8s.io/api/certificates/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listerscertificatesv1alpha1 "k8s.io/client-go/listers/certificates/v1alpha1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1alpha1 "github.com/kcp-dev/client-go/listers/certificates/v1alpha1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTrustBundleClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/certificates/v1beta1/certificatesigningrequest.go b/staging/src/github.com/kcp-dev/client-go/informers/certificates/v1beta1/certificatesigningrequest.go index 1b29067aee6..cca5b46930b 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/certificates/v1beta1/certificatesigningrequest.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/certificates/v1beta1/certificatesigningrequest.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apicertificatesv1beta1 "k8s.io/api/certificates/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listerscertificatesv1beta1 "k8s.io/client-go/listers/certificates/v1beta1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta1 "github.com/kcp-dev/client-go/listers/certificates/v1beta1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // CertificateSigningRequestClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/certificates/v1beta1/clustertrustbundle.go b/staging/src/github.com/kcp-dev/client-go/informers/certificates/v1beta1/clustertrustbundle.go index 06f1ce3f5ec..603a0f4857f 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/certificates/v1beta1/clustertrustbundle.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/certificates/v1beta1/clustertrustbundle.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apicertificatesv1beta1 "k8s.io/api/certificates/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listerscertificatesv1beta1 "k8s.io/client-go/listers/certificates/v1beta1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta1 "github.com/kcp-dev/client-go/listers/certificates/v1beta1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTrustBundleClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/coordination/v1/lease.go b/staging/src/github.com/kcp-dev/client-go/informers/coordination/v1/lease.go index fe55e39a867..96261f9b6e4 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/coordination/v1/lease.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/coordination/v1/lease.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apicoordinationv1 "k8s.io/api/coordination/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listerscoordinationv1 "k8s.io/client-go/listers/coordination/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/coordination/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // LeaseClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/coordination/v1alpha2/leasecandidate.go b/staging/src/github.com/kcp-dev/client-go/informers/coordination/v1alpha2/leasecandidate.go index e2b393e7403..eca5d98d68b 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/coordination/v1alpha2/leasecandidate.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/coordination/v1alpha2/leasecandidate.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apicoordinationv1alpha2 "k8s.io/api/coordination/v1alpha2" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listerscoordinationv1alpha2 "k8s.io/client-go/listers/coordination/v1alpha2" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1alpha2 "github.com/kcp-dev/client-go/listers/coordination/v1alpha2" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // LeaseCandidateClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/coordination/v1beta1/lease.go b/staging/src/github.com/kcp-dev/client-go/informers/coordination/v1beta1/lease.go index 7a43d932257..8e639234c78 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/coordination/v1beta1/lease.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/coordination/v1beta1/lease.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apicoordinationv1beta1 "k8s.io/api/coordination/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listerscoordinationv1beta1 "k8s.io/client-go/listers/coordination/v1beta1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta1 "github.com/kcp-dev/client-go/listers/coordination/v1beta1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // LeaseClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/coordination/v1beta1/leasecandidate.go b/staging/src/github.com/kcp-dev/client-go/informers/coordination/v1beta1/leasecandidate.go index f38ad8ca35a..f24e3367e0c 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/coordination/v1beta1/leasecandidate.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/coordination/v1beta1/leasecandidate.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apicoordinationv1beta1 "k8s.io/api/coordination/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listerscoordinationv1beta1 "k8s.io/client-go/listers/coordination/v1beta1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta1 "github.com/kcp-dev/client-go/listers/coordination/v1beta1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // LeaseCandidateClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/core/v1/componentstatus.go b/staging/src/github.com/kcp-dev/client-go/informers/core/v1/componentstatus.go index 5aaf1f0fb3e..2f9f1196ff1 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/core/v1/componentstatus.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/core/v1/componentstatus.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apicorev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listerscorev1 "k8s.io/client-go/listers/core/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/core/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ComponentStatusClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/core/v1/configmap.go b/staging/src/github.com/kcp-dev/client-go/informers/core/v1/configmap.go index 2e99feabfd6..f38590c7011 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/core/v1/configmap.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/core/v1/configmap.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apicorev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listerscorev1 "k8s.io/client-go/listers/core/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/core/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ConfigMapClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/core/v1/endpoints.go b/staging/src/github.com/kcp-dev/client-go/informers/core/v1/endpoints.go index 5360e0a1b84..9aa17c17e12 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/core/v1/endpoints.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/core/v1/endpoints.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apicorev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listerscorev1 "k8s.io/client-go/listers/core/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/core/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // EndpointsClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/core/v1/event.go b/staging/src/github.com/kcp-dev/client-go/informers/core/v1/event.go index a7dec535f7a..ed3e7554594 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/core/v1/event.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/core/v1/event.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apicorev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listerscorev1 "k8s.io/client-go/listers/core/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/core/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // EventClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/core/v1/limitrange.go b/staging/src/github.com/kcp-dev/client-go/informers/core/v1/limitrange.go index bc92f07950b..6c0245d4f80 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/core/v1/limitrange.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/core/v1/limitrange.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apicorev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listerscorev1 "k8s.io/client-go/listers/core/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/core/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // LimitRangeClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/core/v1/namespace.go b/staging/src/github.com/kcp-dev/client-go/informers/core/v1/namespace.go index bdcce54f1bb..d4d40d083d6 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/core/v1/namespace.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/core/v1/namespace.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apicorev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listerscorev1 "k8s.io/client-go/listers/core/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/core/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // NamespaceClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/core/v1/node.go b/staging/src/github.com/kcp-dev/client-go/informers/core/v1/node.go index cda1e461682..3930e502184 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/core/v1/node.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/core/v1/node.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apicorev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listerscorev1 "k8s.io/client-go/listers/core/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/core/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // NodeClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/core/v1/persistentvolume.go b/staging/src/github.com/kcp-dev/client-go/informers/core/v1/persistentvolume.go index 11bb1de69b2..72b50e0d0f7 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/core/v1/persistentvolume.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/core/v1/persistentvolume.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apicorev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listerscorev1 "k8s.io/client-go/listers/core/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/core/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // PersistentVolumeClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/core/v1/persistentvolumeclaim.go b/staging/src/github.com/kcp-dev/client-go/informers/core/v1/persistentvolumeclaim.go index bfb3d9072b8..c3ecf91eb0a 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/core/v1/persistentvolumeclaim.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/core/v1/persistentvolumeclaim.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apicorev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listerscorev1 "k8s.io/client-go/listers/core/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/core/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // PersistentVolumeClaimClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/core/v1/pod.go b/staging/src/github.com/kcp-dev/client-go/informers/core/v1/pod.go index 829329e9761..d3ae5a96e3f 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/core/v1/pod.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/core/v1/pod.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apicorev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listerscorev1 "k8s.io/client-go/listers/core/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/core/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // PodClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/core/v1/podtemplate.go b/staging/src/github.com/kcp-dev/client-go/informers/core/v1/podtemplate.go index 137414e40ca..80d97859a4b 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/core/v1/podtemplate.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/core/v1/podtemplate.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apicorev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listerscorev1 "k8s.io/client-go/listers/core/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/core/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // PodTemplateClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/core/v1/replicationcontroller.go b/staging/src/github.com/kcp-dev/client-go/informers/core/v1/replicationcontroller.go index d3990629f98..fe68a7242da 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/core/v1/replicationcontroller.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/core/v1/replicationcontroller.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apicorev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listerscorev1 "k8s.io/client-go/listers/core/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/core/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ReplicationControllerClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/core/v1/resourcequota.go b/staging/src/github.com/kcp-dev/client-go/informers/core/v1/resourcequota.go index 3b9ace38505..c6928e1b332 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/core/v1/resourcequota.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/core/v1/resourcequota.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apicorev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listerscorev1 "k8s.io/client-go/listers/core/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/core/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ResourceQuotaClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/core/v1/secret.go b/staging/src/github.com/kcp-dev/client-go/informers/core/v1/secret.go index 17f071a9881..dc0843c3fff 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/core/v1/secret.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/core/v1/secret.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apicorev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listerscorev1 "k8s.io/client-go/listers/core/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/core/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // SecretClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/core/v1/service.go b/staging/src/github.com/kcp-dev/client-go/informers/core/v1/service.go index 3eec65a043e..c78bec8c810 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/core/v1/service.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/core/v1/service.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apicorev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listerscorev1 "k8s.io/client-go/listers/core/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/core/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ServiceClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/core/v1/serviceaccount.go b/staging/src/github.com/kcp-dev/client-go/informers/core/v1/serviceaccount.go index 0a1498d38de..fe666fe37ff 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/core/v1/serviceaccount.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/core/v1/serviceaccount.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apicorev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listerscorev1 "k8s.io/client-go/listers/core/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/core/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ServiceAccountClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/discovery/v1/endpointslice.go b/staging/src/github.com/kcp-dev/client-go/informers/discovery/v1/endpointslice.go index e5c263589c8..a7494ca6761 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/discovery/v1/endpointslice.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/discovery/v1/endpointslice.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apidiscoveryv1 "k8s.io/api/discovery/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersdiscoveryv1 "k8s.io/client-go/listers/discovery/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/discovery/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // EndpointSliceClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/discovery/v1beta1/endpointslice.go b/staging/src/github.com/kcp-dev/client-go/informers/discovery/v1beta1/endpointslice.go index cae82c37f50..cef014f4b6f 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/discovery/v1beta1/endpointslice.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/discovery/v1beta1/endpointslice.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apidiscoveryv1beta1 "k8s.io/api/discovery/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersdiscoveryv1beta1 "k8s.io/client-go/listers/discovery/v1beta1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta1 "github.com/kcp-dev/client-go/listers/discovery/v1beta1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // EndpointSliceClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/events/v1/event.go b/staging/src/github.com/kcp-dev/client-go/informers/events/v1/event.go index 459a49f0321..53f348c898e 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/events/v1/event.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/events/v1/event.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apieventsv1 "k8s.io/api/events/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listerseventsv1 "k8s.io/client-go/listers/events/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/events/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // EventClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/events/v1beta1/event.go b/staging/src/github.com/kcp-dev/client-go/informers/events/v1beta1/event.go index f554cadcfcd..c3e76eb2284 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/events/v1beta1/event.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/events/v1beta1/event.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apieventsv1beta1 "k8s.io/api/events/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listerseventsv1beta1 "k8s.io/client-go/listers/events/v1beta1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta1 "github.com/kcp-dev/client-go/listers/events/v1beta1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // EventClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/extensions/v1beta1/daemonset.go b/staging/src/github.com/kcp-dev/client-go/informers/extensions/v1beta1/daemonset.go index 4be7864bb90..7a6ee805f61 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/extensions/v1beta1/daemonset.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/extensions/v1beta1/daemonset.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiextensionsv1beta1 "k8s.io/api/extensions/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersextensionsv1beta1 "k8s.io/client-go/listers/extensions/v1beta1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta1 "github.com/kcp-dev/client-go/listers/extensions/v1beta1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // DaemonSetClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/extensions/v1beta1/deployment.go b/staging/src/github.com/kcp-dev/client-go/informers/extensions/v1beta1/deployment.go index 0db3e467ad6..80b5dad1cd5 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/extensions/v1beta1/deployment.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/extensions/v1beta1/deployment.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiextensionsv1beta1 "k8s.io/api/extensions/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersextensionsv1beta1 "k8s.io/client-go/listers/extensions/v1beta1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta1 "github.com/kcp-dev/client-go/listers/extensions/v1beta1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // DeploymentClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/extensions/v1beta1/ingress.go b/staging/src/github.com/kcp-dev/client-go/informers/extensions/v1beta1/ingress.go index f5dd12089c3..203c1d137b9 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/extensions/v1beta1/ingress.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/extensions/v1beta1/ingress.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiextensionsv1beta1 "k8s.io/api/extensions/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersextensionsv1beta1 "k8s.io/client-go/listers/extensions/v1beta1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta1 "github.com/kcp-dev/client-go/listers/extensions/v1beta1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // IngressClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/extensions/v1beta1/networkpolicy.go b/staging/src/github.com/kcp-dev/client-go/informers/extensions/v1beta1/networkpolicy.go index 1cd76bf5ff3..3efc6b070a5 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/extensions/v1beta1/networkpolicy.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/extensions/v1beta1/networkpolicy.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiextensionsv1beta1 "k8s.io/api/extensions/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersextensionsv1beta1 "k8s.io/client-go/listers/extensions/v1beta1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta1 "github.com/kcp-dev/client-go/listers/extensions/v1beta1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // NetworkPolicyClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/extensions/v1beta1/replicaset.go b/staging/src/github.com/kcp-dev/client-go/informers/extensions/v1beta1/replicaset.go index fe376877ba0..5b04ba8005f 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/extensions/v1beta1/replicaset.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/extensions/v1beta1/replicaset.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiextensionsv1beta1 "k8s.io/api/extensions/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersextensionsv1beta1 "k8s.io/client-go/listers/extensions/v1beta1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta1 "github.com/kcp-dev/client-go/listers/extensions/v1beta1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ReplicaSetClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/factory.go b/staging/src/github.com/kcp-dev/client-go/informers/factory.go index 36a7989e553..83a88f01378 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/factory.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/factory.go @@ -23,15 +23,13 @@ import ( sync "sync" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" schema "k8s.io/apimachinery/pkg/runtime/schema" clientgoinformers "k8s.io/client-go/informers" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" kcpadmissionregistration "github.com/kcp-dev/client-go/informers/admissionregistration" kcpapiserverinternal "github.com/kcp-dev/client-go/informers/apiserverinternal" kcpapps "github.com/kcp-dev/client-go/informers/apps" @@ -54,6 +52,7 @@ import ( kcpstorage "github.com/kcp-dev/client-go/informers/storage" kcpstoragemigration "github.com/kcp-dev/client-go/informers/storagemigration" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // SharedInformerOption defines the functional option type for SharedInformerFactory. diff --git a/staging/src/github.com/kcp-dev/client-go/informers/flowcontrol/v1/flowschema.go b/staging/src/github.com/kcp-dev/client-go/informers/flowcontrol/v1/flowschema.go index f5db19a5a46..30d88597303 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/flowcontrol/v1/flowschema.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/flowcontrol/v1/flowschema.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiflowcontrolv1 "k8s.io/api/flowcontrol/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersflowcontrolv1 "k8s.io/client-go/listers/flowcontrol/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/flowcontrol/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // FlowSchemaClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/flowcontrol/v1/prioritylevelconfiguration.go b/staging/src/github.com/kcp-dev/client-go/informers/flowcontrol/v1/prioritylevelconfiguration.go index 4af1be47646..296eb52c2eb 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/flowcontrol/v1/prioritylevelconfiguration.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/flowcontrol/v1/prioritylevelconfiguration.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiflowcontrolv1 "k8s.io/api/flowcontrol/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersflowcontrolv1 "k8s.io/client-go/listers/flowcontrol/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/flowcontrol/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // PriorityLevelConfigurationClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/flowcontrol/v1beta1/flowschema.go b/staging/src/github.com/kcp-dev/client-go/informers/flowcontrol/v1beta1/flowschema.go index 18099aba3f0..24f253501f8 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/flowcontrol/v1beta1/flowschema.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/flowcontrol/v1beta1/flowschema.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiflowcontrolv1beta1 "k8s.io/api/flowcontrol/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersflowcontrolv1beta1 "k8s.io/client-go/listers/flowcontrol/v1beta1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta1 "github.com/kcp-dev/client-go/listers/flowcontrol/v1beta1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // FlowSchemaClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/flowcontrol/v1beta1/prioritylevelconfiguration.go b/staging/src/github.com/kcp-dev/client-go/informers/flowcontrol/v1beta1/prioritylevelconfiguration.go index cfcbfcb13eb..17f802ae8e8 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/flowcontrol/v1beta1/prioritylevelconfiguration.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/flowcontrol/v1beta1/prioritylevelconfiguration.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiflowcontrolv1beta1 "k8s.io/api/flowcontrol/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersflowcontrolv1beta1 "k8s.io/client-go/listers/flowcontrol/v1beta1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta1 "github.com/kcp-dev/client-go/listers/flowcontrol/v1beta1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // PriorityLevelConfigurationClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/flowcontrol/v1beta2/flowschema.go b/staging/src/github.com/kcp-dev/client-go/informers/flowcontrol/v1beta2/flowschema.go index bcbfed6cfc5..142f6868152 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/flowcontrol/v1beta2/flowschema.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/flowcontrol/v1beta2/flowschema.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiflowcontrolv1beta2 "k8s.io/api/flowcontrol/v1beta2" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersflowcontrolv1beta2 "k8s.io/client-go/listers/flowcontrol/v1beta2" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta2 "github.com/kcp-dev/client-go/listers/flowcontrol/v1beta2" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // FlowSchemaClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/flowcontrol/v1beta2/prioritylevelconfiguration.go b/staging/src/github.com/kcp-dev/client-go/informers/flowcontrol/v1beta2/prioritylevelconfiguration.go index 7ef6c782df8..bce617cbf3f 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/flowcontrol/v1beta2/prioritylevelconfiguration.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/flowcontrol/v1beta2/prioritylevelconfiguration.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiflowcontrolv1beta2 "k8s.io/api/flowcontrol/v1beta2" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersflowcontrolv1beta2 "k8s.io/client-go/listers/flowcontrol/v1beta2" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta2 "github.com/kcp-dev/client-go/listers/flowcontrol/v1beta2" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // PriorityLevelConfigurationClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/flowcontrol/v1beta3/flowschema.go b/staging/src/github.com/kcp-dev/client-go/informers/flowcontrol/v1beta3/flowschema.go index 1ba143ddecd..5f84b7db7ae 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/flowcontrol/v1beta3/flowschema.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/flowcontrol/v1beta3/flowschema.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiflowcontrolv1beta3 "k8s.io/api/flowcontrol/v1beta3" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersflowcontrolv1beta3 "k8s.io/client-go/listers/flowcontrol/v1beta3" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta3 "github.com/kcp-dev/client-go/listers/flowcontrol/v1beta3" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // FlowSchemaClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/flowcontrol/v1beta3/prioritylevelconfiguration.go b/staging/src/github.com/kcp-dev/client-go/informers/flowcontrol/v1beta3/prioritylevelconfiguration.go index c7d92bfaf0c..425d66f050e 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/flowcontrol/v1beta3/prioritylevelconfiguration.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/flowcontrol/v1beta3/prioritylevelconfiguration.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiflowcontrolv1beta3 "k8s.io/api/flowcontrol/v1beta3" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersflowcontrolv1beta3 "k8s.io/client-go/listers/flowcontrol/v1beta3" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta3 "github.com/kcp-dev/client-go/listers/flowcontrol/v1beta3" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // PriorityLevelConfigurationClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/generic.go b/staging/src/github.com/kcp-dev/client-go/informers/generic.go index 34d492a081c..817ea0098b2 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/generic.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/generic.go @@ -22,9 +22,6 @@ import ( context "context" fmt "fmt" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - v1 "k8s.io/api/admissionregistration/v1" v1alpha1 "k8s.io/api/admissionregistration/v1alpha1" v1beta1 "k8s.io/api/admissionregistration/v1beta1" @@ -78,6 +75,9 @@ import ( schema "k8s.io/apimachinery/pkg/runtime/schema" clientgoinformers "k8s.io/client-go/informers" cache "k8s.io/client-go/tools/cache" + + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) type GenericClusterInformer interface { diff --git a/staging/src/github.com/kcp-dev/client-go/informers/internalinterfaces/factory_interfaces.go b/staging/src/github.com/kcp-dev/client-go/informers/internalinterfaces/factory_interfaces.go index 7f65aeba710..8689e37b963 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/internalinterfaces/factory_interfaces.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/internalinterfaces/factory_interfaces.go @@ -21,11 +21,10 @@ package internalinterfaces import ( time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" ) diff --git a/staging/src/github.com/kcp-dev/client-go/informers/networking/v1/ingress.go b/staging/src/github.com/kcp-dev/client-go/informers/networking/v1/ingress.go index f7e529d0f72..539b37bcc19 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/networking/v1/ingress.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/networking/v1/ingress.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apinetworkingv1 "k8s.io/api/networking/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersnetworkingv1 "k8s.io/client-go/listers/networking/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/networking/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // IngressClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/networking/v1/ingressclass.go b/staging/src/github.com/kcp-dev/client-go/informers/networking/v1/ingressclass.go index 8464e706f62..e50bb082840 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/networking/v1/ingressclass.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/networking/v1/ingressclass.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apinetworkingv1 "k8s.io/api/networking/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersnetworkingv1 "k8s.io/client-go/listers/networking/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/networking/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // IngressClassClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/networking/v1/ipaddress.go b/staging/src/github.com/kcp-dev/client-go/informers/networking/v1/ipaddress.go index dee4d5b9f49..2ec2be5bed9 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/networking/v1/ipaddress.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/networking/v1/ipaddress.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apinetworkingv1 "k8s.io/api/networking/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersnetworkingv1 "k8s.io/client-go/listers/networking/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/networking/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // IPAddressClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/networking/v1/networkpolicy.go b/staging/src/github.com/kcp-dev/client-go/informers/networking/v1/networkpolicy.go index ecba5cc61dd..a426ba52ffc 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/networking/v1/networkpolicy.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/networking/v1/networkpolicy.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apinetworkingv1 "k8s.io/api/networking/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersnetworkingv1 "k8s.io/client-go/listers/networking/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/networking/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // NetworkPolicyClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/networking/v1/servicecidr.go b/staging/src/github.com/kcp-dev/client-go/informers/networking/v1/servicecidr.go index 7ec22348915..a1392c7156e 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/networking/v1/servicecidr.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/networking/v1/servicecidr.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apinetworkingv1 "k8s.io/api/networking/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersnetworkingv1 "k8s.io/client-go/listers/networking/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/networking/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ServiceCIDRClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/networking/v1alpha1/ipaddress.go b/staging/src/github.com/kcp-dev/client-go/informers/networking/v1alpha1/ipaddress.go index f6e70b1d8f3..445db64d40c 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/networking/v1alpha1/ipaddress.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/networking/v1alpha1/ipaddress.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apinetworkingv1alpha1 "k8s.io/api/networking/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersnetworkingv1alpha1 "k8s.io/client-go/listers/networking/v1alpha1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1alpha1 "github.com/kcp-dev/client-go/listers/networking/v1alpha1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // IPAddressClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/networking/v1alpha1/servicecidr.go b/staging/src/github.com/kcp-dev/client-go/informers/networking/v1alpha1/servicecidr.go index f2d21899f4e..8329a6eed58 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/networking/v1alpha1/servicecidr.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/networking/v1alpha1/servicecidr.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apinetworkingv1alpha1 "k8s.io/api/networking/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersnetworkingv1alpha1 "k8s.io/client-go/listers/networking/v1alpha1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1alpha1 "github.com/kcp-dev/client-go/listers/networking/v1alpha1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ServiceCIDRClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/networking/v1beta1/ingress.go b/staging/src/github.com/kcp-dev/client-go/informers/networking/v1beta1/ingress.go index 6da58c85d8b..933fe7c56dd 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/networking/v1beta1/ingress.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/networking/v1beta1/ingress.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apinetworkingv1beta1 "k8s.io/api/networking/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersnetworkingv1beta1 "k8s.io/client-go/listers/networking/v1beta1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta1 "github.com/kcp-dev/client-go/listers/networking/v1beta1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // IngressClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/networking/v1beta1/ingressclass.go b/staging/src/github.com/kcp-dev/client-go/informers/networking/v1beta1/ingressclass.go index aa4f6045f07..bef30e9a97c 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/networking/v1beta1/ingressclass.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/networking/v1beta1/ingressclass.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apinetworkingv1beta1 "k8s.io/api/networking/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersnetworkingv1beta1 "k8s.io/client-go/listers/networking/v1beta1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta1 "github.com/kcp-dev/client-go/listers/networking/v1beta1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // IngressClassClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/networking/v1beta1/ipaddress.go b/staging/src/github.com/kcp-dev/client-go/informers/networking/v1beta1/ipaddress.go index e03d5e77f92..f20a8364b0c 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/networking/v1beta1/ipaddress.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/networking/v1beta1/ipaddress.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apinetworkingv1beta1 "k8s.io/api/networking/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersnetworkingv1beta1 "k8s.io/client-go/listers/networking/v1beta1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta1 "github.com/kcp-dev/client-go/listers/networking/v1beta1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // IPAddressClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/networking/v1beta1/servicecidr.go b/staging/src/github.com/kcp-dev/client-go/informers/networking/v1beta1/servicecidr.go index ecb8339b93b..204fbc0bb41 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/networking/v1beta1/servicecidr.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/networking/v1beta1/servicecidr.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apinetworkingv1beta1 "k8s.io/api/networking/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersnetworkingv1beta1 "k8s.io/client-go/listers/networking/v1beta1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta1 "github.com/kcp-dev/client-go/listers/networking/v1beta1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ServiceCIDRClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/node/v1/runtimeclass.go b/staging/src/github.com/kcp-dev/client-go/informers/node/v1/runtimeclass.go index 02abe706bc6..977896c4ca0 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/node/v1/runtimeclass.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/node/v1/runtimeclass.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apinodev1 "k8s.io/api/node/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersnodev1 "k8s.io/client-go/listers/node/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/node/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // RuntimeClassClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/node/v1alpha1/runtimeclass.go b/staging/src/github.com/kcp-dev/client-go/informers/node/v1alpha1/runtimeclass.go index d83f0f3b6c1..eccbf0eec2a 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/node/v1alpha1/runtimeclass.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/node/v1alpha1/runtimeclass.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apinodev1alpha1 "k8s.io/api/node/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersnodev1alpha1 "k8s.io/client-go/listers/node/v1alpha1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1alpha1 "github.com/kcp-dev/client-go/listers/node/v1alpha1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // RuntimeClassClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/node/v1beta1/runtimeclass.go b/staging/src/github.com/kcp-dev/client-go/informers/node/v1beta1/runtimeclass.go index 42f2e3ea698..8833f326b25 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/node/v1beta1/runtimeclass.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/node/v1beta1/runtimeclass.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apinodev1beta1 "k8s.io/api/node/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersnodev1beta1 "k8s.io/client-go/listers/node/v1beta1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta1 "github.com/kcp-dev/client-go/listers/node/v1beta1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // RuntimeClassClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/policy/v1/poddisruptionbudget.go b/staging/src/github.com/kcp-dev/client-go/informers/policy/v1/poddisruptionbudget.go index 7bfcc0267c4..9b082ad6538 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/policy/v1/poddisruptionbudget.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/policy/v1/poddisruptionbudget.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apipolicyv1 "k8s.io/api/policy/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listerspolicyv1 "k8s.io/client-go/listers/policy/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/policy/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // PodDisruptionBudgetClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/policy/v1beta1/poddisruptionbudget.go b/staging/src/github.com/kcp-dev/client-go/informers/policy/v1beta1/poddisruptionbudget.go index e14022137b1..26d2b28e50e 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/policy/v1beta1/poddisruptionbudget.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/policy/v1beta1/poddisruptionbudget.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apipolicyv1beta1 "k8s.io/api/policy/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listerspolicyv1beta1 "k8s.io/client-go/listers/policy/v1beta1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta1 "github.com/kcp-dev/client-go/listers/policy/v1beta1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // PodDisruptionBudgetClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1/clusterrole.go b/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1/clusterrole.go index 1ab3f130291..e10e6fe062e 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1/clusterrole.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1/clusterrole.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apirbacv1 "k8s.io/api/rbac/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersrbacv1 "k8s.io/client-go/listers/rbac/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/rbac/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ClusterRoleClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1/clusterrolebinding.go b/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1/clusterrolebinding.go index ee3ebf5efd0..9102f892f74 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1/clusterrolebinding.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1/clusterrolebinding.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apirbacv1 "k8s.io/api/rbac/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersrbacv1 "k8s.io/client-go/listers/rbac/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/rbac/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ClusterRoleBindingClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1/role.go b/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1/role.go index 26d88ddca12..9526c16f336 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1/role.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1/role.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apirbacv1 "k8s.io/api/rbac/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersrbacv1 "k8s.io/client-go/listers/rbac/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/rbac/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // RoleClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1/rolebinding.go b/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1/rolebinding.go index 6d882ba86d3..361e3d0c855 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1/rolebinding.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1/rolebinding.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apirbacv1 "k8s.io/api/rbac/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersrbacv1 "k8s.io/client-go/listers/rbac/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/rbac/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // RoleBindingClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1alpha1/clusterrole.go b/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1alpha1/clusterrole.go index 842b0cf3a04..1d23dfd7fdc 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1alpha1/clusterrole.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1alpha1/clusterrole.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apirbacv1alpha1 "k8s.io/api/rbac/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersrbacv1alpha1 "k8s.io/client-go/listers/rbac/v1alpha1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1alpha1 "github.com/kcp-dev/client-go/listers/rbac/v1alpha1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ClusterRoleClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1alpha1/clusterrolebinding.go b/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1alpha1/clusterrolebinding.go index d49ec663028..24c6054a2d7 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1alpha1/clusterrolebinding.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1alpha1/clusterrolebinding.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apirbacv1alpha1 "k8s.io/api/rbac/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersrbacv1alpha1 "k8s.io/client-go/listers/rbac/v1alpha1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1alpha1 "github.com/kcp-dev/client-go/listers/rbac/v1alpha1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ClusterRoleBindingClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1alpha1/role.go b/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1alpha1/role.go index 49b89d2ee3a..aa72a01e373 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1alpha1/role.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1alpha1/role.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apirbacv1alpha1 "k8s.io/api/rbac/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersrbacv1alpha1 "k8s.io/client-go/listers/rbac/v1alpha1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1alpha1 "github.com/kcp-dev/client-go/listers/rbac/v1alpha1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // RoleClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1alpha1/rolebinding.go b/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1alpha1/rolebinding.go index ce9154d8bf0..0d29a891593 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1alpha1/rolebinding.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1alpha1/rolebinding.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apirbacv1alpha1 "k8s.io/api/rbac/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersrbacv1alpha1 "k8s.io/client-go/listers/rbac/v1alpha1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1alpha1 "github.com/kcp-dev/client-go/listers/rbac/v1alpha1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // RoleBindingClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1beta1/clusterrole.go b/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1beta1/clusterrole.go index c4b7b07c250..df8d1a00c87 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1beta1/clusterrole.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1beta1/clusterrole.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apirbacv1beta1 "k8s.io/api/rbac/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersrbacv1beta1 "k8s.io/client-go/listers/rbac/v1beta1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta1 "github.com/kcp-dev/client-go/listers/rbac/v1beta1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ClusterRoleClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1beta1/clusterrolebinding.go b/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1beta1/clusterrolebinding.go index 660cfbcd92a..a332d778d1b 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1beta1/clusterrolebinding.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1beta1/clusterrolebinding.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apirbacv1beta1 "k8s.io/api/rbac/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersrbacv1beta1 "k8s.io/client-go/listers/rbac/v1beta1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta1 "github.com/kcp-dev/client-go/listers/rbac/v1beta1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ClusterRoleBindingClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1beta1/role.go b/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1beta1/role.go index c237e83210f..895cf4f0b11 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1beta1/role.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1beta1/role.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apirbacv1beta1 "k8s.io/api/rbac/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersrbacv1beta1 "k8s.io/client-go/listers/rbac/v1beta1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta1 "github.com/kcp-dev/client-go/listers/rbac/v1beta1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // RoleClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1beta1/rolebinding.go b/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1beta1/rolebinding.go index 09b4208a5de..58aa19b25bb 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1beta1/rolebinding.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/rbac/v1beta1/rolebinding.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apirbacv1beta1 "k8s.io/api/rbac/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersrbacv1beta1 "k8s.io/client-go/listers/rbac/v1beta1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta1 "github.com/kcp-dev/client-go/listers/rbac/v1beta1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // RoleBindingClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/resource/v1alpha3/deviceclass.go b/staging/src/github.com/kcp-dev/client-go/informers/resource/v1alpha3/deviceclass.go index 6589da4cb75..255e5e04daf 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/resource/v1alpha3/deviceclass.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/resource/v1alpha3/deviceclass.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiresourcev1alpha3 "k8s.io/api/resource/v1alpha3" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersresourcev1alpha3 "k8s.io/client-go/listers/resource/v1alpha3" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1alpha3 "github.com/kcp-dev/client-go/listers/resource/v1alpha3" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // DeviceClassClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/resource/v1alpha3/devicetaintrule.go b/staging/src/github.com/kcp-dev/client-go/informers/resource/v1alpha3/devicetaintrule.go index 691d65f5117..282db934cf3 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/resource/v1alpha3/devicetaintrule.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/resource/v1alpha3/devicetaintrule.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiresourcev1alpha3 "k8s.io/api/resource/v1alpha3" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersresourcev1alpha3 "k8s.io/client-go/listers/resource/v1alpha3" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1alpha3 "github.com/kcp-dev/client-go/listers/resource/v1alpha3" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // DeviceTaintRuleClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/resource/v1alpha3/resourceclaim.go b/staging/src/github.com/kcp-dev/client-go/informers/resource/v1alpha3/resourceclaim.go index a8c80fc12ad..222e99c2a60 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/resource/v1alpha3/resourceclaim.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/resource/v1alpha3/resourceclaim.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiresourcev1alpha3 "k8s.io/api/resource/v1alpha3" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersresourcev1alpha3 "k8s.io/client-go/listers/resource/v1alpha3" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1alpha3 "github.com/kcp-dev/client-go/listers/resource/v1alpha3" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ResourceClaimClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/resource/v1alpha3/resourceclaimtemplate.go b/staging/src/github.com/kcp-dev/client-go/informers/resource/v1alpha3/resourceclaimtemplate.go index 0ec1ab25bb5..89133b45649 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/resource/v1alpha3/resourceclaimtemplate.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/resource/v1alpha3/resourceclaimtemplate.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiresourcev1alpha3 "k8s.io/api/resource/v1alpha3" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersresourcev1alpha3 "k8s.io/client-go/listers/resource/v1alpha3" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1alpha3 "github.com/kcp-dev/client-go/listers/resource/v1alpha3" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ResourceClaimTemplateClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/resource/v1alpha3/resourceslice.go b/staging/src/github.com/kcp-dev/client-go/informers/resource/v1alpha3/resourceslice.go index c0a55cd1bac..7997e801c9e 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/resource/v1alpha3/resourceslice.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/resource/v1alpha3/resourceslice.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiresourcev1alpha3 "k8s.io/api/resource/v1alpha3" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersresourcev1alpha3 "k8s.io/client-go/listers/resource/v1alpha3" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1alpha3 "github.com/kcp-dev/client-go/listers/resource/v1alpha3" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ResourceSliceClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/resource/v1beta1/deviceclass.go b/staging/src/github.com/kcp-dev/client-go/informers/resource/v1beta1/deviceclass.go index 9b9da3cb21a..b6d7be99f49 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/resource/v1beta1/deviceclass.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/resource/v1beta1/deviceclass.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiresourcev1beta1 "k8s.io/api/resource/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersresourcev1beta1 "k8s.io/client-go/listers/resource/v1beta1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta1 "github.com/kcp-dev/client-go/listers/resource/v1beta1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // DeviceClassClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/resource/v1beta1/resourceclaim.go b/staging/src/github.com/kcp-dev/client-go/informers/resource/v1beta1/resourceclaim.go index e634dd1bc3c..fa47be7dd67 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/resource/v1beta1/resourceclaim.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/resource/v1beta1/resourceclaim.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiresourcev1beta1 "k8s.io/api/resource/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersresourcev1beta1 "k8s.io/client-go/listers/resource/v1beta1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta1 "github.com/kcp-dev/client-go/listers/resource/v1beta1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ResourceClaimClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/resource/v1beta1/resourceclaimtemplate.go b/staging/src/github.com/kcp-dev/client-go/informers/resource/v1beta1/resourceclaimtemplate.go index 0fd03f6d44d..d0efad41bcd 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/resource/v1beta1/resourceclaimtemplate.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/resource/v1beta1/resourceclaimtemplate.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiresourcev1beta1 "k8s.io/api/resource/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersresourcev1beta1 "k8s.io/client-go/listers/resource/v1beta1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta1 "github.com/kcp-dev/client-go/listers/resource/v1beta1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ResourceClaimTemplateClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/resource/v1beta1/resourceslice.go b/staging/src/github.com/kcp-dev/client-go/informers/resource/v1beta1/resourceslice.go index 6d1b6ca8577..8f063a5cd2d 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/resource/v1beta1/resourceslice.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/resource/v1beta1/resourceslice.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiresourcev1beta1 "k8s.io/api/resource/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersresourcev1beta1 "k8s.io/client-go/listers/resource/v1beta1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta1 "github.com/kcp-dev/client-go/listers/resource/v1beta1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ResourceSliceClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/resource/v1beta2/deviceclass.go b/staging/src/github.com/kcp-dev/client-go/informers/resource/v1beta2/deviceclass.go index 0ee5661877b..0138eca87f0 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/resource/v1beta2/deviceclass.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/resource/v1beta2/deviceclass.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiresourcev1beta2 "k8s.io/api/resource/v1beta2" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersresourcev1beta2 "k8s.io/client-go/listers/resource/v1beta2" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta2 "github.com/kcp-dev/client-go/listers/resource/v1beta2" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // DeviceClassClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/resource/v1beta2/resourceclaim.go b/staging/src/github.com/kcp-dev/client-go/informers/resource/v1beta2/resourceclaim.go index fcdfba53808..9f379142e26 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/resource/v1beta2/resourceclaim.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/resource/v1beta2/resourceclaim.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiresourcev1beta2 "k8s.io/api/resource/v1beta2" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersresourcev1beta2 "k8s.io/client-go/listers/resource/v1beta2" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta2 "github.com/kcp-dev/client-go/listers/resource/v1beta2" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ResourceClaimClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/resource/v1beta2/resourceclaimtemplate.go b/staging/src/github.com/kcp-dev/client-go/informers/resource/v1beta2/resourceclaimtemplate.go index d974d8b7231..057228435f7 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/resource/v1beta2/resourceclaimtemplate.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/resource/v1beta2/resourceclaimtemplate.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiresourcev1beta2 "k8s.io/api/resource/v1beta2" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersresourcev1beta2 "k8s.io/client-go/listers/resource/v1beta2" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta2 "github.com/kcp-dev/client-go/listers/resource/v1beta2" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ResourceClaimTemplateClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/resource/v1beta2/resourceslice.go b/staging/src/github.com/kcp-dev/client-go/informers/resource/v1beta2/resourceslice.go index bb57f6cb9b6..c53a86df7c5 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/resource/v1beta2/resourceslice.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/resource/v1beta2/resourceslice.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apiresourcev1beta2 "k8s.io/api/resource/v1beta2" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersresourcev1beta2 "k8s.io/client-go/listers/resource/v1beta2" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta2 "github.com/kcp-dev/client-go/listers/resource/v1beta2" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ResourceSliceClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/scheduling/v1/priorityclass.go b/staging/src/github.com/kcp-dev/client-go/informers/scheduling/v1/priorityclass.go index 35bb0ea3796..7989d40fbd6 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/scheduling/v1/priorityclass.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/scheduling/v1/priorityclass.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apischedulingv1 "k8s.io/api/scheduling/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersschedulingv1 "k8s.io/client-go/listers/scheduling/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/scheduling/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // PriorityClassClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/scheduling/v1alpha1/priorityclass.go b/staging/src/github.com/kcp-dev/client-go/informers/scheduling/v1alpha1/priorityclass.go index 27774710ac8..a3f6356553c 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/scheduling/v1alpha1/priorityclass.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/scheduling/v1alpha1/priorityclass.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apischedulingv1alpha1 "k8s.io/api/scheduling/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersschedulingv1alpha1 "k8s.io/client-go/listers/scheduling/v1alpha1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1alpha1 "github.com/kcp-dev/client-go/listers/scheduling/v1alpha1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // PriorityClassClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/scheduling/v1beta1/priorityclass.go b/staging/src/github.com/kcp-dev/client-go/informers/scheduling/v1beta1/priorityclass.go index b5fe9362e28..0e7eb580354 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/scheduling/v1beta1/priorityclass.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/scheduling/v1beta1/priorityclass.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apischedulingv1beta1 "k8s.io/api/scheduling/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersschedulingv1beta1 "k8s.io/client-go/listers/scheduling/v1beta1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta1 "github.com/kcp-dev/client-go/listers/scheduling/v1beta1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // PriorityClassClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/storage/v1/csidriver.go b/staging/src/github.com/kcp-dev/client-go/informers/storage/v1/csidriver.go index 9381ea440bf..11b4024dbcb 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/storage/v1/csidriver.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/storage/v1/csidriver.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apistoragev1 "k8s.io/api/storage/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersstoragev1 "k8s.io/client-go/listers/storage/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/storage/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // CSIDriverClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/storage/v1/csinode.go b/staging/src/github.com/kcp-dev/client-go/informers/storage/v1/csinode.go index bd5905137f6..f5a9d092913 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/storage/v1/csinode.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/storage/v1/csinode.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apistoragev1 "k8s.io/api/storage/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersstoragev1 "k8s.io/client-go/listers/storage/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/storage/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // CSINodeClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/storage/v1/csistoragecapacity.go b/staging/src/github.com/kcp-dev/client-go/informers/storage/v1/csistoragecapacity.go index 6c5c4bc8aae..d6ff7dbdcf8 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/storage/v1/csistoragecapacity.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/storage/v1/csistoragecapacity.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apistoragev1 "k8s.io/api/storage/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersstoragev1 "k8s.io/client-go/listers/storage/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/storage/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // CSIStorageCapacityClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/storage/v1/storageclass.go b/staging/src/github.com/kcp-dev/client-go/informers/storage/v1/storageclass.go index b073a16d6ef..4f279795dea 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/storage/v1/storageclass.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/storage/v1/storageclass.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apistoragev1 "k8s.io/api/storage/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersstoragev1 "k8s.io/client-go/listers/storage/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/storage/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // StorageClassClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/storage/v1/volumeattachment.go b/staging/src/github.com/kcp-dev/client-go/informers/storage/v1/volumeattachment.go index e76d08cee18..a02b1182b14 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/storage/v1/volumeattachment.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/storage/v1/volumeattachment.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apistoragev1 "k8s.io/api/storage/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersstoragev1 "k8s.io/client-go/listers/storage/v1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1 "github.com/kcp-dev/client-go/listers/storage/v1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // VolumeAttachmentClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/storage/v1alpha1/csistoragecapacity.go b/staging/src/github.com/kcp-dev/client-go/informers/storage/v1alpha1/csistoragecapacity.go index cb5b77d0817..753fbbb7fca 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/storage/v1alpha1/csistoragecapacity.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/storage/v1alpha1/csistoragecapacity.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apistoragev1alpha1 "k8s.io/api/storage/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersstoragev1alpha1 "k8s.io/client-go/listers/storage/v1alpha1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1alpha1 "github.com/kcp-dev/client-go/listers/storage/v1alpha1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // CSIStorageCapacityClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/storage/v1alpha1/volumeattachment.go b/staging/src/github.com/kcp-dev/client-go/informers/storage/v1alpha1/volumeattachment.go index 1a2b5f0de78..99dfe8dde2d 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/storage/v1alpha1/volumeattachment.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/storage/v1alpha1/volumeattachment.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apistoragev1alpha1 "k8s.io/api/storage/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersstoragev1alpha1 "k8s.io/client-go/listers/storage/v1alpha1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1alpha1 "github.com/kcp-dev/client-go/listers/storage/v1alpha1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // VolumeAttachmentClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/storage/v1alpha1/volumeattributesclass.go b/staging/src/github.com/kcp-dev/client-go/informers/storage/v1alpha1/volumeattributesclass.go index f7aa1bf79ee..e4d3975b585 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/storage/v1alpha1/volumeattributesclass.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/storage/v1alpha1/volumeattributesclass.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apistoragev1alpha1 "k8s.io/api/storage/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersstoragev1alpha1 "k8s.io/client-go/listers/storage/v1alpha1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1alpha1 "github.com/kcp-dev/client-go/listers/storage/v1alpha1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // VolumeAttributesClassClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/storage/v1beta1/csidriver.go b/staging/src/github.com/kcp-dev/client-go/informers/storage/v1beta1/csidriver.go index 6927a75529f..26feb6fb98e 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/storage/v1beta1/csidriver.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/storage/v1beta1/csidriver.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apistoragev1beta1 "k8s.io/api/storage/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersstoragev1beta1 "k8s.io/client-go/listers/storage/v1beta1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta1 "github.com/kcp-dev/client-go/listers/storage/v1beta1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // CSIDriverClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/storage/v1beta1/csinode.go b/staging/src/github.com/kcp-dev/client-go/informers/storage/v1beta1/csinode.go index 2d633f53568..05bdab6b248 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/storage/v1beta1/csinode.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/storage/v1beta1/csinode.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apistoragev1beta1 "k8s.io/api/storage/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersstoragev1beta1 "k8s.io/client-go/listers/storage/v1beta1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta1 "github.com/kcp-dev/client-go/listers/storage/v1beta1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // CSINodeClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/storage/v1beta1/csistoragecapacity.go b/staging/src/github.com/kcp-dev/client-go/informers/storage/v1beta1/csistoragecapacity.go index 0ac0951079f..5eaf0836a4e 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/storage/v1beta1/csistoragecapacity.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/storage/v1beta1/csistoragecapacity.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apistoragev1beta1 "k8s.io/api/storage/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersstoragev1beta1 "k8s.io/client-go/listers/storage/v1beta1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta1 "github.com/kcp-dev/client-go/listers/storage/v1beta1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // CSIStorageCapacityClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/storage/v1beta1/storageclass.go b/staging/src/github.com/kcp-dev/client-go/informers/storage/v1beta1/storageclass.go index 11d325565c0..b4fed8c4dee 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/storage/v1beta1/storageclass.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/storage/v1beta1/storageclass.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apistoragev1beta1 "k8s.io/api/storage/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersstoragev1beta1 "k8s.io/client-go/listers/storage/v1beta1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta1 "github.com/kcp-dev/client-go/listers/storage/v1beta1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // StorageClassClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/storage/v1beta1/volumeattachment.go b/staging/src/github.com/kcp-dev/client-go/informers/storage/v1beta1/volumeattachment.go index 09bbc733b0c..604340f16e3 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/storage/v1beta1/volumeattachment.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/storage/v1beta1/volumeattachment.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apistoragev1beta1 "k8s.io/api/storage/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersstoragev1beta1 "k8s.io/client-go/listers/storage/v1beta1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta1 "github.com/kcp-dev/client-go/listers/storage/v1beta1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // VolumeAttachmentClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/storage/v1beta1/volumeattributesclass.go b/staging/src/github.com/kcp-dev/client-go/informers/storage/v1beta1/volumeattributesclass.go index 22f257f8bc6..705f4f50f47 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/storage/v1beta1/volumeattributesclass.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/storage/v1beta1/volumeattributesclass.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apistoragev1beta1 "k8s.io/api/storage/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersstoragev1beta1 "k8s.io/client-go/listers/storage/v1beta1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1beta1 "github.com/kcp-dev/client-go/listers/storage/v1beta1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // VolumeAttributesClassClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/informers/storagemigration/v1alpha1/storageversionmigration.go b/staging/src/github.com/kcp-dev/client-go/informers/storagemigration/v1alpha1/storageversionmigration.go index a2509dd84f1..71d9e955c40 100644 --- a/staging/src/github.com/kcp-dev/client-go/informers/storagemigration/v1alpha1/storageversionmigration.go +++ b/staging/src/github.com/kcp-dev/client-go/informers/storagemigration/v1alpha1/storageversionmigration.go @@ -22,10 +22,6 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - apistoragemigrationv1alpha1 "k8s.io/api/storagemigration/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( listersstoragemigrationv1alpha1 "k8s.io/client-go/listers/storagemigration/v1alpha1" cache "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinternalinterfaces "github.com/kcp-dev/client-go/informers/internalinterfaces" kcpkubernetes "github.com/kcp-dev/client-go/kubernetes" kcpv1alpha1 "github.com/kcp-dev/client-go/listers/storagemigration/v1alpha1" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // StorageVersionMigrationClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/clientset.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/clientset.go index ddfcb9c6e4b..64169563fcc 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/clientset.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/clientset.go @@ -22,14 +22,12 @@ import ( fmt "fmt" http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - discovery "k8s.io/client-go/discovery" client "k8s.io/client-go/kubernetes" rest "k8s.io/client-go/rest" flowcontrol "k8s.io/client-go/util/flowcontrol" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" admissionregistrationv1 "github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1" admissionregistrationv1alpha1 "github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1" admissionregistrationv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1" @@ -85,6 +83,7 @@ import ( storagev1alpha1 "github.com/kcp-dev/client-go/kubernetes/typed/storage/v1alpha1" storagev1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1" storagemigrationv1alpha1 "github.com/kcp-dev/client-go/kubernetes/typed/storagemigration/v1alpha1" + "github.com/kcp-dev/logicalcluster/v3" ) type ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/fake/clientset.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/fake/clientset.go index a6797b7b7ef..29ca1529688 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/fake/clientset.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/fake/clientset.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - "k8s.io/apimachinery/pkg/runtime" applyconfigurations "k8s.io/client-go/applyconfigurations" "k8s.io/client-go/discovery" @@ -195,6 +193,7 @@ import ( kcpfakestoragemigrationv1alpha1 "github.com/kcp-dev/client-go/kubernetes/typed/storagemigration/v1alpha1/fake" kcpfakediscovery "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/discovery/fake" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // NewSimpleClientset returns a clientset that will respond with the provided objects. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1/admissionregistration_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1/admissionregistration_client.go index 04a671daad6..38ffa54cc34 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1/admissionregistration_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1/admissionregistration_client.go @@ -21,14 +21,13 @@ package v1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiadmissionregistrationv1 "k8s.io/api/admissionregistration/v1" admissionregistrationv1 "k8s.io/client-go/kubernetes/typed/admissionregistration/v1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type AdmissionregistrationV1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1/fake/admissionregistration_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1/fake/admissionregistration_client.go index f6e70f1b5fa..91191ee8032 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1/fake/admissionregistration_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1/fake/admissionregistration_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - admissionregistrationv1 "k8s.io/client-go/kubernetes/typed/admissionregistration/v1" rest "k8s.io/client-go/rest" kcpadmissionregistrationv1 "github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpadmissionregistrationv1.AdmissionregistrationV1ClusterInterface = (*AdmissionregistrationV1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1/fake/mutatingwebhookconfiguration.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1/fake/mutatingwebhookconfiguration.go index 969153b1937..53391761f8f 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1/fake/mutatingwebhookconfiguration.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1/fake/mutatingwebhookconfiguration.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - admissionregistrationv1 "k8s.io/api/admissionregistration/v1" v1 "k8s.io/client-go/applyconfigurations/admissionregistration/v1" typedadmissionregistrationv1 "k8s.io/client-go/kubernetes/typed/admissionregistration/v1" @@ -28,6 +26,7 @@ import ( typedkcpadmissionregistrationv1 "github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // mutatingWebhookConfigurationClusterClient implements MutatingWebhookConfigurationClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1/fake/validatingadmissionpolicy.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1/fake/validatingadmissionpolicy.go index d57de39019b..66372718374 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1/fake/validatingadmissionpolicy.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1/fake/validatingadmissionpolicy.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - admissionregistrationv1 "k8s.io/api/admissionregistration/v1" v1 "k8s.io/client-go/applyconfigurations/admissionregistration/v1" typedadmissionregistrationv1 "k8s.io/client-go/kubernetes/typed/admissionregistration/v1" @@ -28,6 +26,7 @@ import ( typedkcpadmissionregistrationv1 "github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // validatingAdmissionPolicyClusterClient implements ValidatingAdmissionPolicyClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1/fake/validatingadmissionpolicybinding.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1/fake/validatingadmissionpolicybinding.go index 17093ae75bd..6b6b75c3bd9 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1/fake/validatingadmissionpolicybinding.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1/fake/validatingadmissionpolicybinding.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - admissionregistrationv1 "k8s.io/api/admissionregistration/v1" v1 "k8s.io/client-go/applyconfigurations/admissionregistration/v1" typedadmissionregistrationv1 "k8s.io/client-go/kubernetes/typed/admissionregistration/v1" @@ -28,6 +26,7 @@ import ( typedkcpadmissionregistrationv1 "github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // validatingAdmissionPolicyBindingClusterClient implements ValidatingAdmissionPolicyBindingClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1/fake/validatingwebhookconfiguration.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1/fake/validatingwebhookconfiguration.go index ac30be3ca1d..36196b11173 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1/fake/validatingwebhookconfiguration.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1/fake/validatingwebhookconfiguration.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - admissionregistrationv1 "k8s.io/api/admissionregistration/v1" v1 "k8s.io/client-go/applyconfigurations/admissionregistration/v1" typedadmissionregistrationv1 "k8s.io/client-go/kubernetes/typed/admissionregistration/v1" @@ -28,6 +26,7 @@ import ( typedkcpadmissionregistrationv1 "github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // validatingWebhookConfigurationClusterClient implements ValidatingWebhookConfigurationClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1/mutatingwebhookconfiguration.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1/mutatingwebhookconfiguration.go index 44bbc575b81..79301570d00 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1/mutatingwebhookconfiguration.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1/mutatingwebhookconfiguration.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiadmissionregistrationv1 "k8s.io/api/admissionregistration/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" admissionregistrationv1 "k8s.io/client-go/kubernetes/typed/admissionregistration/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // MutatingWebhookConfigurationsClusterGetter has a method to return a MutatingWebhookConfigurationClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1/validatingadmissionpolicy.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1/validatingadmissionpolicy.go index 01bdaa9aea3..bc5557e617c 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1/validatingadmissionpolicy.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1/validatingadmissionpolicy.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiadmissionregistrationv1 "k8s.io/api/admissionregistration/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" admissionregistrationv1 "k8s.io/client-go/kubernetes/typed/admissionregistration/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ValidatingAdmissionPoliciesClusterGetter has a method to return a ValidatingAdmissionPolicyClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1/validatingadmissionpolicybinding.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1/validatingadmissionpolicybinding.go index a7938facec7..bf32d9cb1ed 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1/validatingadmissionpolicybinding.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1/validatingadmissionpolicybinding.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiadmissionregistrationv1 "k8s.io/api/admissionregistration/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" admissionregistrationv1 "k8s.io/client-go/kubernetes/typed/admissionregistration/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ValidatingAdmissionPolicyBindingsClusterGetter has a method to return a ValidatingAdmissionPolicyBindingClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1/validatingwebhookconfiguration.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1/validatingwebhookconfiguration.go index 7d6cfa75580..f3f1e5de43c 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1/validatingwebhookconfiguration.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1/validatingwebhookconfiguration.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiadmissionregistrationv1 "k8s.io/api/admissionregistration/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" admissionregistrationv1 "k8s.io/client-go/kubernetes/typed/admissionregistration/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ValidatingWebhookConfigurationsClusterGetter has a method to return a ValidatingWebhookConfigurationClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1/admissionregistration_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1/admissionregistration_client.go index 63bb4fe284e..36d73b495df 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1/admissionregistration_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1/admissionregistration_client.go @@ -21,14 +21,13 @@ package v1alpha1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiadmissionregistrationv1alpha1 "k8s.io/api/admissionregistration/v1alpha1" admissionregistrationv1alpha1 "k8s.io/client-go/kubernetes/typed/admissionregistration/v1alpha1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type AdmissionregistrationV1alpha1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1/fake/admissionregistration_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1/fake/admissionregistration_client.go index c3e70d7bbb8..86b24aa5d9a 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1/fake/admissionregistration_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1/fake/admissionregistration_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - admissionregistrationv1alpha1 "k8s.io/client-go/kubernetes/typed/admissionregistration/v1alpha1" rest "k8s.io/client-go/rest" kcpadmissionregistrationv1alpha1 "github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpadmissionregistrationv1alpha1.AdmissionregistrationV1alpha1ClusterInterface = (*AdmissionregistrationV1alpha1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1/fake/mutatingadmissionpolicy.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1/fake/mutatingadmissionpolicy.go index bee49420d1a..7959ad4701d 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1/fake/mutatingadmissionpolicy.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1/fake/mutatingadmissionpolicy.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - admissionregistrationv1alpha1 "k8s.io/api/admissionregistration/v1alpha1" v1alpha1 "k8s.io/client-go/applyconfigurations/admissionregistration/v1alpha1" typedadmissionregistrationv1alpha1 "k8s.io/client-go/kubernetes/typed/admissionregistration/v1alpha1" @@ -28,6 +26,7 @@ import ( typedkcpadmissionregistrationv1alpha1 "github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // mutatingAdmissionPolicyClusterClient implements MutatingAdmissionPolicyClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1/fake/mutatingadmissionpolicybinding.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1/fake/mutatingadmissionpolicybinding.go index e8dcd9fdc4e..2476c32a958 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1/fake/mutatingadmissionpolicybinding.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1/fake/mutatingadmissionpolicybinding.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - admissionregistrationv1alpha1 "k8s.io/api/admissionregistration/v1alpha1" v1alpha1 "k8s.io/client-go/applyconfigurations/admissionregistration/v1alpha1" typedadmissionregistrationv1alpha1 "k8s.io/client-go/kubernetes/typed/admissionregistration/v1alpha1" @@ -28,6 +26,7 @@ import ( typedkcpadmissionregistrationv1alpha1 "github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // mutatingAdmissionPolicyBindingClusterClient implements MutatingAdmissionPolicyBindingClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1/fake/validatingadmissionpolicy.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1/fake/validatingadmissionpolicy.go index 2d9bac10340..8b75b2aa8ff 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1/fake/validatingadmissionpolicy.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1/fake/validatingadmissionpolicy.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - admissionregistrationv1alpha1 "k8s.io/api/admissionregistration/v1alpha1" v1alpha1 "k8s.io/client-go/applyconfigurations/admissionregistration/v1alpha1" typedadmissionregistrationv1alpha1 "k8s.io/client-go/kubernetes/typed/admissionregistration/v1alpha1" @@ -28,6 +26,7 @@ import ( typedkcpadmissionregistrationv1alpha1 "github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // validatingAdmissionPolicyClusterClient implements ValidatingAdmissionPolicyClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1/fake/validatingadmissionpolicybinding.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1/fake/validatingadmissionpolicybinding.go index 2e2ff3fb779..c38bdeba9c0 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1/fake/validatingadmissionpolicybinding.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1/fake/validatingadmissionpolicybinding.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - admissionregistrationv1alpha1 "k8s.io/api/admissionregistration/v1alpha1" v1alpha1 "k8s.io/client-go/applyconfigurations/admissionregistration/v1alpha1" typedadmissionregistrationv1alpha1 "k8s.io/client-go/kubernetes/typed/admissionregistration/v1alpha1" @@ -28,6 +26,7 @@ import ( typedkcpadmissionregistrationv1alpha1 "github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // validatingAdmissionPolicyBindingClusterClient implements ValidatingAdmissionPolicyBindingClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1/mutatingadmissionpolicy.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1/mutatingadmissionpolicy.go index 4128254d510..4cd1d709851 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1/mutatingadmissionpolicy.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1/mutatingadmissionpolicy.go @@ -21,13 +21,13 @@ package v1alpha1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiadmissionregistrationv1alpha1 "k8s.io/api/admissionregistration/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" admissionregistrationv1alpha1 "k8s.io/client-go/kubernetes/typed/admissionregistration/v1alpha1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // MutatingAdmissionPoliciesClusterGetter has a method to return a MutatingAdmissionPolicyClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1/mutatingadmissionpolicybinding.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1/mutatingadmissionpolicybinding.go index 4eb45f3ea72..b41017d2fe1 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1/mutatingadmissionpolicybinding.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1/mutatingadmissionpolicybinding.go @@ -21,13 +21,13 @@ package v1alpha1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiadmissionregistrationv1alpha1 "k8s.io/api/admissionregistration/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" admissionregistrationv1alpha1 "k8s.io/client-go/kubernetes/typed/admissionregistration/v1alpha1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // MutatingAdmissionPolicyBindingsClusterGetter has a method to return a MutatingAdmissionPolicyBindingClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1/validatingadmissionpolicy.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1/validatingadmissionpolicy.go index 1d71dee8cc3..36d23974a57 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1/validatingadmissionpolicy.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1/validatingadmissionpolicy.go @@ -21,13 +21,13 @@ package v1alpha1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiadmissionregistrationv1alpha1 "k8s.io/api/admissionregistration/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" admissionregistrationv1alpha1 "k8s.io/client-go/kubernetes/typed/admissionregistration/v1alpha1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ValidatingAdmissionPoliciesClusterGetter has a method to return a ValidatingAdmissionPolicyClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1/validatingadmissionpolicybinding.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1/validatingadmissionpolicybinding.go index d316cd5e7b3..6981a710112 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1/validatingadmissionpolicybinding.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1alpha1/validatingadmissionpolicybinding.go @@ -21,13 +21,13 @@ package v1alpha1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiadmissionregistrationv1alpha1 "k8s.io/api/admissionregistration/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" admissionregistrationv1alpha1 "k8s.io/client-go/kubernetes/typed/admissionregistration/v1alpha1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ValidatingAdmissionPolicyBindingsClusterGetter has a method to return a ValidatingAdmissionPolicyBindingClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1/admissionregistration_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1/admissionregistration_client.go index 93c86c4024e..4acec313334 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1/admissionregistration_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1/admissionregistration_client.go @@ -21,14 +21,13 @@ package v1beta1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiadmissionregistrationv1beta1 "k8s.io/api/admissionregistration/v1beta1" admissionregistrationv1beta1 "k8s.io/client-go/kubernetes/typed/admissionregistration/v1beta1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type AdmissionregistrationV1beta1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1/fake/admissionregistration_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1/fake/admissionregistration_client.go index 4da8aa8e0b1..e8cf6ea6f00 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1/fake/admissionregistration_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1/fake/admissionregistration_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - admissionregistrationv1beta1 "k8s.io/client-go/kubernetes/typed/admissionregistration/v1beta1" rest "k8s.io/client-go/rest" kcpadmissionregistrationv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpadmissionregistrationv1beta1.AdmissionregistrationV1beta1ClusterInterface = (*AdmissionregistrationV1beta1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1/fake/mutatingwebhookconfiguration.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1/fake/mutatingwebhookconfiguration.go index 82d9c5f0980..4eb43342b55 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1/fake/mutatingwebhookconfiguration.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1/fake/mutatingwebhookconfiguration.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - admissionregistrationv1beta1 "k8s.io/api/admissionregistration/v1beta1" v1beta1 "k8s.io/client-go/applyconfigurations/admissionregistration/v1beta1" typedadmissionregistrationv1beta1 "k8s.io/client-go/kubernetes/typed/admissionregistration/v1beta1" @@ -28,6 +26,7 @@ import ( typedkcpadmissionregistrationv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // mutatingWebhookConfigurationClusterClient implements MutatingWebhookConfigurationClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1/fake/validatingadmissionpolicy.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1/fake/validatingadmissionpolicy.go index 9ae6caf728b..590116e1cda 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1/fake/validatingadmissionpolicy.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1/fake/validatingadmissionpolicy.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - admissionregistrationv1beta1 "k8s.io/api/admissionregistration/v1beta1" v1beta1 "k8s.io/client-go/applyconfigurations/admissionregistration/v1beta1" typedadmissionregistrationv1beta1 "k8s.io/client-go/kubernetes/typed/admissionregistration/v1beta1" @@ -28,6 +26,7 @@ import ( typedkcpadmissionregistrationv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // validatingAdmissionPolicyClusterClient implements ValidatingAdmissionPolicyClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1/fake/validatingadmissionpolicybinding.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1/fake/validatingadmissionpolicybinding.go index 879b281c09e..9a24df77a50 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1/fake/validatingadmissionpolicybinding.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1/fake/validatingadmissionpolicybinding.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - admissionregistrationv1beta1 "k8s.io/api/admissionregistration/v1beta1" v1beta1 "k8s.io/client-go/applyconfigurations/admissionregistration/v1beta1" typedadmissionregistrationv1beta1 "k8s.io/client-go/kubernetes/typed/admissionregistration/v1beta1" @@ -28,6 +26,7 @@ import ( typedkcpadmissionregistrationv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // validatingAdmissionPolicyBindingClusterClient implements ValidatingAdmissionPolicyBindingClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1/fake/validatingwebhookconfiguration.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1/fake/validatingwebhookconfiguration.go index ed1f8ffa63b..d824df5a705 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1/fake/validatingwebhookconfiguration.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1/fake/validatingwebhookconfiguration.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - admissionregistrationv1beta1 "k8s.io/api/admissionregistration/v1beta1" v1beta1 "k8s.io/client-go/applyconfigurations/admissionregistration/v1beta1" typedadmissionregistrationv1beta1 "k8s.io/client-go/kubernetes/typed/admissionregistration/v1beta1" @@ -28,6 +26,7 @@ import ( typedkcpadmissionregistrationv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // validatingWebhookConfigurationClusterClient implements ValidatingWebhookConfigurationClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1/mutatingwebhookconfiguration.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1/mutatingwebhookconfiguration.go index 3fd893d2854..abedb7ad563 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1/mutatingwebhookconfiguration.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1/mutatingwebhookconfiguration.go @@ -21,13 +21,13 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiadmissionregistrationv1beta1 "k8s.io/api/admissionregistration/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" admissionregistrationv1beta1 "k8s.io/client-go/kubernetes/typed/admissionregistration/v1beta1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // MutatingWebhookConfigurationsClusterGetter has a method to return a MutatingWebhookConfigurationClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1/validatingadmissionpolicy.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1/validatingadmissionpolicy.go index 51027efd303..79e75f88572 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1/validatingadmissionpolicy.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1/validatingadmissionpolicy.go @@ -21,13 +21,13 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiadmissionregistrationv1beta1 "k8s.io/api/admissionregistration/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" admissionregistrationv1beta1 "k8s.io/client-go/kubernetes/typed/admissionregistration/v1beta1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ValidatingAdmissionPoliciesClusterGetter has a method to return a ValidatingAdmissionPolicyClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1/validatingadmissionpolicybinding.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1/validatingadmissionpolicybinding.go index 14b8f210920..d71da4aed88 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1/validatingadmissionpolicybinding.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1/validatingadmissionpolicybinding.go @@ -21,13 +21,13 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiadmissionregistrationv1beta1 "k8s.io/api/admissionregistration/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" admissionregistrationv1beta1 "k8s.io/client-go/kubernetes/typed/admissionregistration/v1beta1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ValidatingAdmissionPolicyBindingsClusterGetter has a method to return a ValidatingAdmissionPolicyBindingClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1/validatingwebhookconfiguration.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1/validatingwebhookconfiguration.go index 143e86ba699..d879509080e 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1/validatingwebhookconfiguration.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/admissionregistration/v1beta1/validatingwebhookconfiguration.go @@ -21,13 +21,13 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiadmissionregistrationv1beta1 "k8s.io/api/admissionregistration/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" admissionregistrationv1beta1 "k8s.io/client-go/kubernetes/typed/admissionregistration/v1beta1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ValidatingWebhookConfigurationsClusterGetter has a method to return a ValidatingWebhookConfigurationClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apiserverinternal/v1alpha1/apiserverinternal_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apiserverinternal/v1alpha1/apiserverinternal_client.go index 6ebc99e6885..576156e0d8d 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apiserverinternal/v1alpha1/apiserverinternal_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apiserverinternal/v1alpha1/apiserverinternal_client.go @@ -21,14 +21,13 @@ package v1alpha1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiapiserverinternalv1alpha1 "k8s.io/api/apiserverinternal/v1alpha1" apiserverinternalv1alpha1 "k8s.io/client-go/kubernetes/typed/apiserverinternal/v1alpha1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type InternalV1alpha1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apiserverinternal/v1alpha1/fake/apiserverinternal_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apiserverinternal/v1alpha1/fake/apiserverinternal_client.go index d60f4760148..8af196e856a 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apiserverinternal/v1alpha1/fake/apiserverinternal_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apiserverinternal/v1alpha1/fake/apiserverinternal_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - apiserverinternalv1alpha1 "k8s.io/client-go/kubernetes/typed/apiserverinternal/v1alpha1" rest "k8s.io/client-go/rest" kcpapiserverinternalv1alpha1 "github.com/kcp-dev/client-go/kubernetes/typed/apiserverinternal/v1alpha1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpapiserverinternalv1alpha1.InternalV1alpha1ClusterInterface = (*InternalV1alpha1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apiserverinternal/v1alpha1/fake/storageversion.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apiserverinternal/v1alpha1/fake/storageversion.go index ce79c3005ee..e9ff4cdd4e1 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apiserverinternal/v1alpha1/fake/storageversion.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apiserverinternal/v1alpha1/fake/storageversion.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - apiserverinternalv1alpha1 "k8s.io/api/apiserverinternal/v1alpha1" v1alpha1 "k8s.io/client-go/applyconfigurations/apiserverinternal/v1alpha1" typedapiserverinternalv1alpha1 "k8s.io/client-go/kubernetes/typed/apiserverinternal/v1alpha1" @@ -28,6 +26,7 @@ import ( typedkcpapiserverinternalv1alpha1 "github.com/kcp-dev/client-go/kubernetes/typed/apiserverinternal/v1alpha1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // storageVersionClusterClient implements StorageVersionClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apiserverinternal/v1alpha1/storageversion.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apiserverinternal/v1alpha1/storageversion.go index 02aee0bc7e8..483f6a44d18 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apiserverinternal/v1alpha1/storageversion.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apiserverinternal/v1alpha1/storageversion.go @@ -21,13 +21,13 @@ package v1alpha1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiapiserverinternalv1alpha1 "k8s.io/api/apiserverinternal/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" apiserverinternalv1alpha1 "k8s.io/client-go/kubernetes/typed/apiserverinternal/v1alpha1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // StorageVersionsClusterGetter has a method to return a StorageVersionClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/apps_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/apps_client.go index 49b887bff3c..e7b74f083cf 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/apps_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/apps_client.go @@ -21,14 +21,13 @@ package v1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiappsv1 "k8s.io/api/apps/v1" appsv1 "k8s.io/client-go/kubernetes/typed/apps/v1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type AppsV1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/controllerrevision.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/controllerrevision.go index 7fb4a21fd37..c1293f96413 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/controllerrevision.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/controllerrevision.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - appsv1 "k8s.io/api/apps/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedappsv1 "k8s.io/client-go/kubernetes/typed/apps/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ControllerRevisionsClusterGetter has a method to return a ControllerRevisionClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/daemonset.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/daemonset.go index 6a651eb9395..d02370d97a2 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/daemonset.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/daemonset.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - appsv1 "k8s.io/api/apps/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedappsv1 "k8s.io/client-go/kubernetes/typed/apps/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // DaemonSetsClusterGetter has a method to return a DaemonSetClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/deployment.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/deployment.go index 4b299d8b225..f7c94498442 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/deployment.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/deployment.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - appsv1 "k8s.io/api/apps/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedappsv1 "k8s.io/client-go/kubernetes/typed/apps/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // DeploymentsClusterGetter has a method to return a DeploymentClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/fake/apps_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/fake/apps_client.go index 12ed1d64e70..2d42ef76af8 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/fake/apps_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/fake/apps_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - appsv1 "k8s.io/client-go/kubernetes/typed/apps/v1" rest "k8s.io/client-go/rest" kcpappsv1 "github.com/kcp-dev/client-go/kubernetes/typed/apps/v1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpappsv1.AppsV1ClusterInterface = (*AppsV1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/fake/controllerrevision.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/fake/controllerrevision.go index dc4c095a38d..90c25ed7477 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/fake/controllerrevision.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/fake/controllerrevision.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - appsv1 "k8s.io/api/apps/v1" v1 "k8s.io/client-go/applyconfigurations/apps/v1" typedappsv1 "k8s.io/client-go/kubernetes/typed/apps/v1" @@ -28,6 +26,7 @@ import ( typedkcpappsv1 "github.com/kcp-dev/client-go/kubernetes/typed/apps/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // controllerRevisionClusterClient implements ControllerRevisionClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/fake/daemonset.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/fake/daemonset.go index 715527bb434..0b423b2444c 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/fake/daemonset.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/fake/daemonset.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - appsv1 "k8s.io/api/apps/v1" v1 "k8s.io/client-go/applyconfigurations/apps/v1" typedappsv1 "k8s.io/client-go/kubernetes/typed/apps/v1" @@ -28,6 +26,7 @@ import ( typedkcpappsv1 "github.com/kcp-dev/client-go/kubernetes/typed/apps/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // daemonSetClusterClient implements DaemonSetClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/fake/deployment.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/fake/deployment.go index 71c013214f0..42ef7b98596 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/fake/deployment.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/fake/deployment.go @@ -23,8 +23,6 @@ import ( json "encoding/json" fmt "fmt" - "github.com/kcp-dev/logicalcluster/v3" - appsv1 "k8s.io/api/apps/v1" autoscalingv1 "k8s.io/api/autoscaling/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" @@ -36,6 +34,7 @@ import ( typedkcpappsv1 "github.com/kcp-dev/client-go/kubernetes/typed/apps/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // deploymentClusterClient implements DeploymentClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/fake/replicaset.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/fake/replicaset.go index 191583dcc64..06f93be4bda 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/fake/replicaset.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/fake/replicaset.go @@ -23,8 +23,6 @@ import ( json "encoding/json" fmt "fmt" - "github.com/kcp-dev/logicalcluster/v3" - appsv1 "k8s.io/api/apps/v1" autoscalingv1 "k8s.io/api/autoscaling/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" @@ -36,6 +34,7 @@ import ( typedkcpappsv1 "github.com/kcp-dev/client-go/kubernetes/typed/apps/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // replicaSetClusterClient implements ReplicaSetClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/fake/statefulset.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/fake/statefulset.go index 9a68141b9a6..86dbd9b1fd7 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/fake/statefulset.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/fake/statefulset.go @@ -23,8 +23,6 @@ import ( json "encoding/json" fmt "fmt" - "github.com/kcp-dev/logicalcluster/v3" - appsv1 "k8s.io/api/apps/v1" autoscalingv1 "k8s.io/api/autoscaling/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" @@ -36,6 +34,7 @@ import ( typedkcpappsv1 "github.com/kcp-dev/client-go/kubernetes/typed/apps/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // statefulSetClusterClient implements StatefulSetClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/replicaset.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/replicaset.go index 37a1401f04e..c5d7399f932 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/replicaset.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/replicaset.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - appsv1 "k8s.io/api/apps/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedappsv1 "k8s.io/client-go/kubernetes/typed/apps/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ReplicaSetsClusterGetter has a method to return a ReplicaSetClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/statefulset.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/statefulset.go index 9ebf5392da6..d1dece850f7 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/statefulset.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1/statefulset.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - appsv1 "k8s.io/api/apps/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedappsv1 "k8s.io/client-go/kubernetes/typed/apps/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // StatefulSetsClusterGetter has a method to return a StatefulSetClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta1/apps_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta1/apps_client.go index d438bb89f36..fe938591628 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta1/apps_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta1/apps_client.go @@ -21,14 +21,13 @@ package v1beta1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiappsv1beta1 "k8s.io/api/apps/v1beta1" appsv1beta1 "k8s.io/client-go/kubernetes/typed/apps/v1beta1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type AppsV1beta1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta1/controllerrevision.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta1/controllerrevision.go index d6e0a293338..f38b9592303 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta1/controllerrevision.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta1/controllerrevision.go @@ -21,13 +21,13 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - appsv1beta1 "k8s.io/api/apps/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedappsv1beta1 "k8s.io/client-go/kubernetes/typed/apps/v1beta1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ControllerRevisionsClusterGetter has a method to return a ControllerRevisionClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta1/deployment.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta1/deployment.go index 9bbf40ed094..9f9db60047a 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta1/deployment.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta1/deployment.go @@ -21,13 +21,13 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - appsv1beta1 "k8s.io/api/apps/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedappsv1beta1 "k8s.io/client-go/kubernetes/typed/apps/v1beta1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // DeploymentsClusterGetter has a method to return a DeploymentClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta1/fake/apps_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta1/fake/apps_client.go index f94125843a2..0fd315f4cf3 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta1/fake/apps_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta1/fake/apps_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - appsv1beta1 "k8s.io/client-go/kubernetes/typed/apps/v1beta1" rest "k8s.io/client-go/rest" kcpappsv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpappsv1beta1.AppsV1beta1ClusterInterface = (*AppsV1beta1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta1/fake/controllerrevision.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta1/fake/controllerrevision.go index 116c57b3652..35f6b62f7d1 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta1/fake/controllerrevision.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta1/fake/controllerrevision.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - appsv1beta1 "k8s.io/api/apps/v1beta1" v1beta1 "k8s.io/client-go/applyconfigurations/apps/v1beta1" typedappsv1beta1 "k8s.io/client-go/kubernetes/typed/apps/v1beta1" @@ -28,6 +26,7 @@ import ( typedkcpappsv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // controllerRevisionClusterClient implements ControllerRevisionClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta1/fake/deployment.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta1/fake/deployment.go index ca94723155a..499a20697b6 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta1/fake/deployment.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta1/fake/deployment.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - appsv1beta1 "k8s.io/api/apps/v1beta1" v1beta1 "k8s.io/client-go/applyconfigurations/apps/v1beta1" typedappsv1beta1 "k8s.io/client-go/kubernetes/typed/apps/v1beta1" @@ -28,6 +26,7 @@ import ( typedkcpappsv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // deploymentClusterClient implements DeploymentClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta1/fake/statefulset.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta1/fake/statefulset.go index b6765575751..15a995e3be4 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta1/fake/statefulset.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta1/fake/statefulset.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - appsv1beta1 "k8s.io/api/apps/v1beta1" v1beta1 "k8s.io/client-go/applyconfigurations/apps/v1beta1" typedappsv1beta1 "k8s.io/client-go/kubernetes/typed/apps/v1beta1" @@ -28,6 +26,7 @@ import ( typedkcpappsv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // statefulSetClusterClient implements StatefulSetClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta1/statefulset.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta1/statefulset.go index a0f9fa0db7d..55cd4915a4d 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta1/statefulset.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta1/statefulset.go @@ -21,13 +21,13 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - appsv1beta1 "k8s.io/api/apps/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedappsv1beta1 "k8s.io/client-go/kubernetes/typed/apps/v1beta1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // StatefulSetsClusterGetter has a method to return a StatefulSetClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/apps_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/apps_client.go index 4eceb20c060..fd1b3fb891d 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/apps_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/apps_client.go @@ -21,14 +21,13 @@ package v1beta2 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiappsv1beta2 "k8s.io/api/apps/v1beta2" appsv1beta2 "k8s.io/client-go/kubernetes/typed/apps/v1beta2" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type AppsV1beta2ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/controllerrevision.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/controllerrevision.go index 0318c699732..30a77a7205c 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/controllerrevision.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/controllerrevision.go @@ -21,13 +21,13 @@ package v1beta2 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - appsv1beta2 "k8s.io/api/apps/v1beta2" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedappsv1beta2 "k8s.io/client-go/kubernetes/typed/apps/v1beta2" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ControllerRevisionsClusterGetter has a method to return a ControllerRevisionClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/daemonset.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/daemonset.go index c852408dad6..5408911acd4 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/daemonset.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/daemonset.go @@ -21,13 +21,13 @@ package v1beta2 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - appsv1beta2 "k8s.io/api/apps/v1beta2" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedappsv1beta2 "k8s.io/client-go/kubernetes/typed/apps/v1beta2" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // DaemonSetsClusterGetter has a method to return a DaemonSetClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/deployment.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/deployment.go index 71fe07435a2..d4b239d9fd6 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/deployment.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/deployment.go @@ -21,13 +21,13 @@ package v1beta2 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - appsv1beta2 "k8s.io/api/apps/v1beta2" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedappsv1beta2 "k8s.io/client-go/kubernetes/typed/apps/v1beta2" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // DeploymentsClusterGetter has a method to return a DeploymentClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/fake/apps_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/fake/apps_client.go index d98ced8c08a..a191b997494 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/fake/apps_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/fake/apps_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - appsv1beta2 "k8s.io/client-go/kubernetes/typed/apps/v1beta2" rest "k8s.io/client-go/rest" kcpappsv1beta2 "github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpappsv1beta2.AppsV1beta2ClusterInterface = (*AppsV1beta2ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/fake/controllerrevision.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/fake/controllerrevision.go index 06c4565e4ea..abb2751d871 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/fake/controllerrevision.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/fake/controllerrevision.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - appsv1beta2 "k8s.io/api/apps/v1beta2" v1beta2 "k8s.io/client-go/applyconfigurations/apps/v1beta2" typedappsv1beta2 "k8s.io/client-go/kubernetes/typed/apps/v1beta2" @@ -28,6 +26,7 @@ import ( typedkcpappsv1beta2 "github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // controllerRevisionClusterClient implements ControllerRevisionClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/fake/daemonset.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/fake/daemonset.go index dae7584bc42..13aa313e2fb 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/fake/daemonset.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/fake/daemonset.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - appsv1beta2 "k8s.io/api/apps/v1beta2" v1beta2 "k8s.io/client-go/applyconfigurations/apps/v1beta2" typedappsv1beta2 "k8s.io/client-go/kubernetes/typed/apps/v1beta2" @@ -28,6 +26,7 @@ import ( typedkcpappsv1beta2 "github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // daemonSetClusterClient implements DaemonSetClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/fake/deployment.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/fake/deployment.go index 2397ff6f927..5abde4d8f17 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/fake/deployment.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/fake/deployment.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - appsv1beta2 "k8s.io/api/apps/v1beta2" v1beta2 "k8s.io/client-go/applyconfigurations/apps/v1beta2" typedappsv1beta2 "k8s.io/client-go/kubernetes/typed/apps/v1beta2" @@ -28,6 +26,7 @@ import ( typedkcpappsv1beta2 "github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // deploymentClusterClient implements DeploymentClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/fake/replicaset.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/fake/replicaset.go index ee1353a87d6..2134d639277 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/fake/replicaset.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/fake/replicaset.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - appsv1beta2 "k8s.io/api/apps/v1beta2" v1beta2 "k8s.io/client-go/applyconfigurations/apps/v1beta2" typedappsv1beta2 "k8s.io/client-go/kubernetes/typed/apps/v1beta2" @@ -28,6 +26,7 @@ import ( typedkcpappsv1beta2 "github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // replicaSetClusterClient implements ReplicaSetClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/fake/statefulset.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/fake/statefulset.go index 26617651180..06b421735a1 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/fake/statefulset.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/fake/statefulset.go @@ -23,8 +23,6 @@ import ( json "encoding/json" fmt "fmt" - "github.com/kcp-dev/logicalcluster/v3" - appsv1beta2 "k8s.io/api/apps/v1beta2" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" @@ -34,6 +32,7 @@ import ( typedkcpappsv1beta2 "github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // statefulSetClusterClient implements StatefulSetClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/replicaset.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/replicaset.go index 5f364542118..e32d5e1058b 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/replicaset.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/replicaset.go @@ -21,13 +21,13 @@ package v1beta2 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - appsv1beta2 "k8s.io/api/apps/v1beta2" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedappsv1beta2 "k8s.io/client-go/kubernetes/typed/apps/v1beta2" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ReplicaSetsClusterGetter has a method to return a ReplicaSetClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/statefulset.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/statefulset.go index 04ffca1da9e..3534397e083 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/statefulset.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/apps/v1beta2/statefulset.go @@ -21,13 +21,13 @@ package v1beta2 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - appsv1beta2 "k8s.io/api/apps/v1beta2" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedappsv1beta2 "k8s.io/client-go/kubernetes/typed/apps/v1beta2" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // StatefulSetsClusterGetter has a method to return a StatefulSetClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1/authentication_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1/authentication_client.go index 31287d3ad9e..5b134e9d3f4 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1/authentication_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1/authentication_client.go @@ -21,14 +21,13 @@ package v1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiauthenticationv1 "k8s.io/api/authentication/v1" authenticationv1 "k8s.io/client-go/kubernetes/typed/authentication/v1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type AuthenticationV1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1/fake/authentication_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1/fake/authentication_client.go index 5752afddeed..a312d13233e 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1/fake/authentication_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1/fake/authentication_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - authenticationv1 "k8s.io/client-go/kubernetes/typed/authentication/v1" rest "k8s.io/client-go/rest" kcpauthenticationv1 "github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpauthenticationv1.AuthenticationV1ClusterInterface = (*AuthenticationV1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1/fake/selfsubjectreview.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1/fake/selfsubjectreview.go index 078283ba413..9db98f7a13c 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1/fake/selfsubjectreview.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1/fake/selfsubjectreview.go @@ -19,14 +19,13 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - authenticationv1 "k8s.io/api/authentication/v1" typedauthenticationv1 "k8s.io/client-go/kubernetes/typed/authentication/v1" typedkcpauthenticationv1 "github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // selfSubjectReviewClusterClient implements SelfSubjectReviewClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1/fake/tokenreview.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1/fake/tokenreview.go index 36e7111dc3c..e8f8d41d8ca 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1/fake/tokenreview.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1/fake/tokenreview.go @@ -19,14 +19,13 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - authenticationv1 "k8s.io/api/authentication/v1" typedauthenticationv1 "k8s.io/client-go/kubernetes/typed/authentication/v1" typedkcpauthenticationv1 "github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // tokenReviewClusterClient implements TokenReviewClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1/selfsubjectreview.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1/selfsubjectreview.go index bfd04b7b340..0db2c05860a 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1/selfsubjectreview.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1/selfsubjectreview.go @@ -19,10 +19,10 @@ limitations under the License. package v1 import ( + authenticationv1 "k8s.io/client-go/kubernetes/typed/authentication/v1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" "github.com/kcp-dev/logicalcluster/v3" - - authenticationv1 "k8s.io/client-go/kubernetes/typed/authentication/v1" ) // SelfSubjectReviewsClusterGetter has a method to return a SelfSubjectReviewClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1/tokenreview.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1/tokenreview.go index c55a60de684..74796d2a6ec 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1/tokenreview.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1/tokenreview.go @@ -19,10 +19,10 @@ limitations under the License. package v1 import ( + authenticationv1 "k8s.io/client-go/kubernetes/typed/authentication/v1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" "github.com/kcp-dev/logicalcluster/v3" - - authenticationv1 "k8s.io/client-go/kubernetes/typed/authentication/v1" ) // TokenReviewsClusterGetter has a method to return a TokenReviewClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1alpha1/authentication_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1alpha1/authentication_client.go index c439f64d008..d21ed271252 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1alpha1/authentication_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1alpha1/authentication_client.go @@ -21,14 +21,13 @@ package v1alpha1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiauthenticationv1alpha1 "k8s.io/api/authentication/v1alpha1" authenticationv1alpha1 "k8s.io/client-go/kubernetes/typed/authentication/v1alpha1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type AuthenticationV1alpha1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1alpha1/fake/authentication_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1alpha1/fake/authentication_client.go index 0f03e11c206..2550f68ca4e 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1alpha1/fake/authentication_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1alpha1/fake/authentication_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - authenticationv1alpha1 "k8s.io/client-go/kubernetes/typed/authentication/v1alpha1" rest "k8s.io/client-go/rest" kcpauthenticationv1alpha1 "github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1alpha1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpauthenticationv1alpha1.AuthenticationV1alpha1ClusterInterface = (*AuthenticationV1alpha1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1alpha1/fake/selfsubjectreview.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1alpha1/fake/selfsubjectreview.go index 333aa64b54c..fb3db4899a5 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1alpha1/fake/selfsubjectreview.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1alpha1/fake/selfsubjectreview.go @@ -19,14 +19,13 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - authenticationv1alpha1 "k8s.io/api/authentication/v1alpha1" typedauthenticationv1alpha1 "k8s.io/client-go/kubernetes/typed/authentication/v1alpha1" typedkcpauthenticationv1alpha1 "github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1alpha1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // selfSubjectReviewClusterClient implements SelfSubjectReviewClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1alpha1/selfsubjectreview.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1alpha1/selfsubjectreview.go index 70fd71113fb..ca8da098736 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1alpha1/selfsubjectreview.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1alpha1/selfsubjectreview.go @@ -19,10 +19,10 @@ limitations under the License. package v1alpha1 import ( + authenticationv1alpha1 "k8s.io/client-go/kubernetes/typed/authentication/v1alpha1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" "github.com/kcp-dev/logicalcluster/v3" - - authenticationv1alpha1 "k8s.io/client-go/kubernetes/typed/authentication/v1alpha1" ) // SelfSubjectReviewsClusterGetter has a method to return a SelfSubjectReviewClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1beta1/authentication_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1beta1/authentication_client.go index 513af36d8a3..41d5f6b983c 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1beta1/authentication_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1beta1/authentication_client.go @@ -21,14 +21,13 @@ package v1beta1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiauthenticationv1beta1 "k8s.io/api/authentication/v1beta1" authenticationv1beta1 "k8s.io/client-go/kubernetes/typed/authentication/v1beta1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type AuthenticationV1beta1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1beta1/fake/authentication_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1beta1/fake/authentication_client.go index 278bafc652b..2bdc2567310 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1beta1/fake/authentication_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1beta1/fake/authentication_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - authenticationv1beta1 "k8s.io/client-go/kubernetes/typed/authentication/v1beta1" rest "k8s.io/client-go/rest" kcpauthenticationv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1beta1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpauthenticationv1beta1.AuthenticationV1beta1ClusterInterface = (*AuthenticationV1beta1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1beta1/fake/selfsubjectreview.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1beta1/fake/selfsubjectreview.go index 66d970297fc..5a5d61b222e 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1beta1/fake/selfsubjectreview.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1beta1/fake/selfsubjectreview.go @@ -19,14 +19,13 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - authenticationv1beta1 "k8s.io/api/authentication/v1beta1" typedauthenticationv1beta1 "k8s.io/client-go/kubernetes/typed/authentication/v1beta1" typedkcpauthenticationv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // selfSubjectReviewClusterClient implements SelfSubjectReviewClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1beta1/fake/tokenreview.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1beta1/fake/tokenreview.go index 5d8f2672453..dcadf80b77a 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1beta1/fake/tokenreview.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1beta1/fake/tokenreview.go @@ -19,14 +19,13 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - authenticationv1beta1 "k8s.io/api/authentication/v1beta1" typedauthenticationv1beta1 "k8s.io/client-go/kubernetes/typed/authentication/v1beta1" typedkcpauthenticationv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // tokenReviewClusterClient implements TokenReviewClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1beta1/selfsubjectreview.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1beta1/selfsubjectreview.go index 12e2560eaac..ad9b261acf5 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1beta1/selfsubjectreview.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1beta1/selfsubjectreview.go @@ -19,10 +19,10 @@ limitations under the License. package v1beta1 import ( + authenticationv1beta1 "k8s.io/client-go/kubernetes/typed/authentication/v1beta1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" "github.com/kcp-dev/logicalcluster/v3" - - authenticationv1beta1 "k8s.io/client-go/kubernetes/typed/authentication/v1beta1" ) // SelfSubjectReviewsClusterGetter has a method to return a SelfSubjectReviewClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1beta1/tokenreview.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1beta1/tokenreview.go index 952a95ca421..94920cc20ba 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1beta1/tokenreview.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authentication/v1beta1/tokenreview.go @@ -19,10 +19,10 @@ limitations under the License. package v1beta1 import ( + authenticationv1beta1 "k8s.io/client-go/kubernetes/typed/authentication/v1beta1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" "github.com/kcp-dev/logicalcluster/v3" - - authenticationv1beta1 "k8s.io/client-go/kubernetes/typed/authentication/v1beta1" ) // TokenReviewsClusterGetter has a method to return a TokenReviewClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1/authorization_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1/authorization_client.go index b655cb98361..db1bc60b92d 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1/authorization_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1/authorization_client.go @@ -21,14 +21,13 @@ package v1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiauthorizationv1 "k8s.io/api/authorization/v1" authorizationv1 "k8s.io/client-go/kubernetes/typed/authorization/v1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type AuthorizationV1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1/fake/authorization_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1/fake/authorization_client.go index d6c84d5353d..b8b0babff31 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1/fake/authorization_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1/fake/authorization_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - authorizationv1 "k8s.io/client-go/kubernetes/typed/authorization/v1" rest "k8s.io/client-go/rest" kcpauthorizationv1 "github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpauthorizationv1.AuthorizationV1ClusterInterface = (*AuthorizationV1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1/fake/localsubjectaccessreview.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1/fake/localsubjectaccessreview.go index f13db754af4..4bf6aff6834 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1/fake/localsubjectaccessreview.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1/fake/localsubjectaccessreview.go @@ -19,14 +19,13 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - authorizationv1 "k8s.io/api/authorization/v1" typedauthorizationv1 "k8s.io/client-go/kubernetes/typed/authorization/v1" typedkcpauthorizationv1 "github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // localSubjectAccessReviewClusterClient implements LocalSubjectAccessReviewClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1/fake/selfsubjectaccessreview.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1/fake/selfsubjectaccessreview.go index c37e34d599f..25f72908f77 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1/fake/selfsubjectaccessreview.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1/fake/selfsubjectaccessreview.go @@ -19,14 +19,13 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - authorizationv1 "k8s.io/api/authorization/v1" typedauthorizationv1 "k8s.io/client-go/kubernetes/typed/authorization/v1" typedkcpauthorizationv1 "github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // selfSubjectAccessReviewClusterClient implements SelfSubjectAccessReviewClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1/fake/selfsubjectrulesreview.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1/fake/selfsubjectrulesreview.go index eb838ade92c..156c291d2f1 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1/fake/selfsubjectrulesreview.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1/fake/selfsubjectrulesreview.go @@ -19,14 +19,13 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - authorizationv1 "k8s.io/api/authorization/v1" typedauthorizationv1 "k8s.io/client-go/kubernetes/typed/authorization/v1" typedkcpauthorizationv1 "github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // selfSubjectRulesReviewClusterClient implements SelfSubjectRulesReviewClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1/fake/subjectaccessreview.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1/fake/subjectaccessreview.go index 81e33d1c74a..cb81b7cfe64 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1/fake/subjectaccessreview.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1/fake/subjectaccessreview.go @@ -19,14 +19,13 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - authorizationv1 "k8s.io/api/authorization/v1" typedauthorizationv1 "k8s.io/client-go/kubernetes/typed/authorization/v1" typedkcpauthorizationv1 "github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // subjectAccessReviewClusterClient implements SubjectAccessReviewClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1/localsubjectaccessreview.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1/localsubjectaccessreview.go index 5ba8b970b27..0fc33a44de7 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1/localsubjectaccessreview.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1/localsubjectaccessreview.go @@ -19,10 +19,10 @@ limitations under the License. package v1 import ( + authorizationv1 "k8s.io/client-go/kubernetes/typed/authorization/v1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" "github.com/kcp-dev/logicalcluster/v3" - - authorizationv1 "k8s.io/client-go/kubernetes/typed/authorization/v1" ) // LocalSubjectAccessReviewsClusterGetter has a method to return a LocalSubjectAccessReviewClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1/selfsubjectaccessreview.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1/selfsubjectaccessreview.go index f13e610f453..8657316b714 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1/selfsubjectaccessreview.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1/selfsubjectaccessreview.go @@ -19,10 +19,10 @@ limitations under the License. package v1 import ( + authorizationv1 "k8s.io/client-go/kubernetes/typed/authorization/v1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" "github.com/kcp-dev/logicalcluster/v3" - - authorizationv1 "k8s.io/client-go/kubernetes/typed/authorization/v1" ) // SelfSubjectAccessReviewsClusterGetter has a method to return a SelfSubjectAccessReviewClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1/selfsubjectrulesreview.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1/selfsubjectrulesreview.go index 5c4157ca5ff..7a0443150d7 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1/selfsubjectrulesreview.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1/selfsubjectrulesreview.go @@ -19,10 +19,10 @@ limitations under the License. package v1 import ( + authorizationv1 "k8s.io/client-go/kubernetes/typed/authorization/v1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" "github.com/kcp-dev/logicalcluster/v3" - - authorizationv1 "k8s.io/client-go/kubernetes/typed/authorization/v1" ) // SelfSubjectRulesReviewsClusterGetter has a method to return a SelfSubjectRulesReviewClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1/subjectaccessreview.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1/subjectaccessreview.go index 338acf72028..1e8b6d350df 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1/subjectaccessreview.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1/subjectaccessreview.go @@ -19,10 +19,10 @@ limitations under the License. package v1 import ( + authorizationv1 "k8s.io/client-go/kubernetes/typed/authorization/v1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" "github.com/kcp-dev/logicalcluster/v3" - - authorizationv1 "k8s.io/client-go/kubernetes/typed/authorization/v1" ) // SubjectAccessReviewsClusterGetter has a method to return a SubjectAccessReviewClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1/authorization_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1/authorization_client.go index 340b623489e..8ad33fd76f5 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1/authorization_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1/authorization_client.go @@ -21,14 +21,13 @@ package v1beta1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiauthorizationv1beta1 "k8s.io/api/authorization/v1beta1" authorizationv1beta1 "k8s.io/client-go/kubernetes/typed/authorization/v1beta1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type AuthorizationV1beta1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1/fake/authorization_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1/fake/authorization_client.go index bdc8c6378ae..e59cfde1c72 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1/fake/authorization_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1/fake/authorization_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - authorizationv1beta1 "k8s.io/client-go/kubernetes/typed/authorization/v1beta1" rest "k8s.io/client-go/rest" kcpauthorizationv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpauthorizationv1beta1.AuthorizationV1beta1ClusterInterface = (*AuthorizationV1beta1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1/fake/localsubjectaccessreview.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1/fake/localsubjectaccessreview.go index 3b0b7da827b..a7dea3871d6 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1/fake/localsubjectaccessreview.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1/fake/localsubjectaccessreview.go @@ -19,14 +19,13 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - authorizationv1beta1 "k8s.io/api/authorization/v1beta1" typedauthorizationv1beta1 "k8s.io/client-go/kubernetes/typed/authorization/v1beta1" typedkcpauthorizationv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // localSubjectAccessReviewClusterClient implements LocalSubjectAccessReviewClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1/fake/selfsubjectaccessreview.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1/fake/selfsubjectaccessreview.go index 266b8273af8..4cb0da75940 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1/fake/selfsubjectaccessreview.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1/fake/selfsubjectaccessreview.go @@ -19,14 +19,13 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - authorizationv1beta1 "k8s.io/api/authorization/v1beta1" typedauthorizationv1beta1 "k8s.io/client-go/kubernetes/typed/authorization/v1beta1" typedkcpauthorizationv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // selfSubjectAccessReviewClusterClient implements SelfSubjectAccessReviewClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1/fake/selfsubjectrulesreview.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1/fake/selfsubjectrulesreview.go index f6c43dbbaa8..88d809d01e5 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1/fake/selfsubjectrulesreview.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1/fake/selfsubjectrulesreview.go @@ -19,14 +19,13 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - authorizationv1beta1 "k8s.io/api/authorization/v1beta1" typedauthorizationv1beta1 "k8s.io/client-go/kubernetes/typed/authorization/v1beta1" typedkcpauthorizationv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // selfSubjectRulesReviewClusterClient implements SelfSubjectRulesReviewClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1/fake/subjectaccessreview.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1/fake/subjectaccessreview.go index a74f3d02ab1..b9c2b0818af 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1/fake/subjectaccessreview.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1/fake/subjectaccessreview.go @@ -19,14 +19,13 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - authorizationv1beta1 "k8s.io/api/authorization/v1beta1" typedauthorizationv1beta1 "k8s.io/client-go/kubernetes/typed/authorization/v1beta1" typedkcpauthorizationv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // subjectAccessReviewClusterClient implements SubjectAccessReviewClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1/localsubjectaccessreview.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1/localsubjectaccessreview.go index f2de8fa5cd8..4aaf1bd4821 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1/localsubjectaccessreview.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1/localsubjectaccessreview.go @@ -19,10 +19,10 @@ limitations under the License. package v1beta1 import ( + authorizationv1beta1 "k8s.io/client-go/kubernetes/typed/authorization/v1beta1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" "github.com/kcp-dev/logicalcluster/v3" - - authorizationv1beta1 "k8s.io/client-go/kubernetes/typed/authorization/v1beta1" ) // LocalSubjectAccessReviewsClusterGetter has a method to return a LocalSubjectAccessReviewClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1/selfsubjectaccessreview.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1/selfsubjectaccessreview.go index 8a6b91a5e9f..37473418148 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1/selfsubjectaccessreview.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1/selfsubjectaccessreview.go @@ -19,10 +19,10 @@ limitations under the License. package v1beta1 import ( + authorizationv1beta1 "k8s.io/client-go/kubernetes/typed/authorization/v1beta1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" "github.com/kcp-dev/logicalcluster/v3" - - authorizationv1beta1 "k8s.io/client-go/kubernetes/typed/authorization/v1beta1" ) // SelfSubjectAccessReviewsClusterGetter has a method to return a SelfSubjectAccessReviewClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1/selfsubjectrulesreview.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1/selfsubjectrulesreview.go index f50b0e41537..b73ccff7d0a 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1/selfsubjectrulesreview.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1/selfsubjectrulesreview.go @@ -19,10 +19,10 @@ limitations under the License. package v1beta1 import ( + authorizationv1beta1 "k8s.io/client-go/kubernetes/typed/authorization/v1beta1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" "github.com/kcp-dev/logicalcluster/v3" - - authorizationv1beta1 "k8s.io/client-go/kubernetes/typed/authorization/v1beta1" ) // SelfSubjectRulesReviewsClusterGetter has a method to return a SelfSubjectRulesReviewClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1/subjectaccessreview.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1/subjectaccessreview.go index f64c06aca09..d8773512d0f 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1/subjectaccessreview.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/authorization/v1beta1/subjectaccessreview.go @@ -19,10 +19,10 @@ limitations under the License. package v1beta1 import ( + authorizationv1beta1 "k8s.io/client-go/kubernetes/typed/authorization/v1beta1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" "github.com/kcp-dev/logicalcluster/v3" - - authorizationv1beta1 "k8s.io/client-go/kubernetes/typed/authorization/v1beta1" ) // SubjectAccessReviewsClusterGetter has a method to return a SubjectAccessReviewClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v1/autoscaling_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v1/autoscaling_client.go index d4713f5d3b0..54cf2dbc5a7 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v1/autoscaling_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v1/autoscaling_client.go @@ -21,14 +21,13 @@ package v1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiautoscalingv1 "k8s.io/api/autoscaling/v1" autoscalingv1 "k8s.io/client-go/kubernetes/typed/autoscaling/v1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type AutoscalingV1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v1/fake/autoscaling_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v1/fake/autoscaling_client.go index d3bb1fc3d4b..f6fa3957015 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v1/fake/autoscaling_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v1/fake/autoscaling_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - autoscalingv1 "k8s.io/client-go/kubernetes/typed/autoscaling/v1" rest "k8s.io/client-go/rest" kcpautoscalingv1 "github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpautoscalingv1.AutoscalingV1ClusterInterface = (*AutoscalingV1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v1/fake/horizontalpodautoscaler.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v1/fake/horizontalpodautoscaler.go index 03a88b29bf9..a4f94dcdef8 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v1/fake/horizontalpodautoscaler.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v1/fake/horizontalpodautoscaler.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - autoscalingv1 "k8s.io/api/autoscaling/v1" v1 "k8s.io/client-go/applyconfigurations/autoscaling/v1" typedautoscalingv1 "k8s.io/client-go/kubernetes/typed/autoscaling/v1" @@ -28,6 +26,7 @@ import ( typedkcpautoscalingv1 "github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // horizontalPodAutoscalerClusterClient implements HorizontalPodAutoscalerClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v1/horizontalpodautoscaler.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v1/horizontalpodautoscaler.go index 94e531b99a1..71d98613dfa 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v1/horizontalpodautoscaler.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v1/horizontalpodautoscaler.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - autoscalingv1 "k8s.io/api/autoscaling/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedautoscalingv1 "k8s.io/client-go/kubernetes/typed/autoscaling/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // HorizontalPodAutoscalersClusterGetter has a method to return a HorizontalPodAutoscalerClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2/autoscaling_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2/autoscaling_client.go index e20897d3834..e8fec7b975a 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2/autoscaling_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2/autoscaling_client.go @@ -21,14 +21,13 @@ package v2 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiautoscalingv2 "k8s.io/api/autoscaling/v2" autoscalingv2 "k8s.io/client-go/kubernetes/typed/autoscaling/v2" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type AutoscalingV2ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2/fake/autoscaling_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2/fake/autoscaling_client.go index 8c43d576faf..7d5f24c6053 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2/fake/autoscaling_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2/fake/autoscaling_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - autoscalingv2 "k8s.io/client-go/kubernetes/typed/autoscaling/v2" rest "k8s.io/client-go/rest" kcpautoscalingv2 "github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpautoscalingv2.AutoscalingV2ClusterInterface = (*AutoscalingV2ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2/fake/horizontalpodautoscaler.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2/fake/horizontalpodautoscaler.go index ef5df5c5b8f..4eea5b71d63 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2/fake/horizontalpodautoscaler.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2/fake/horizontalpodautoscaler.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - autoscalingv2 "k8s.io/api/autoscaling/v2" v2 "k8s.io/client-go/applyconfigurations/autoscaling/v2" typedautoscalingv2 "k8s.io/client-go/kubernetes/typed/autoscaling/v2" @@ -28,6 +26,7 @@ import ( typedkcpautoscalingv2 "github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // horizontalPodAutoscalerClusterClient implements HorizontalPodAutoscalerClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2/horizontalpodautoscaler.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2/horizontalpodautoscaler.go index 3c0cbea53b5..60577100223 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2/horizontalpodautoscaler.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2/horizontalpodautoscaler.go @@ -21,13 +21,13 @@ package v2 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - autoscalingv2 "k8s.io/api/autoscaling/v2" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedautoscalingv2 "k8s.io/client-go/kubernetes/typed/autoscaling/v2" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // HorizontalPodAutoscalersClusterGetter has a method to return a HorizontalPodAutoscalerClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2beta1/autoscaling_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2beta1/autoscaling_client.go index 5c67fdeb32a..f0598b1f996 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2beta1/autoscaling_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2beta1/autoscaling_client.go @@ -21,14 +21,13 @@ package v2beta1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiautoscalingv2beta1 "k8s.io/api/autoscaling/v2beta1" autoscalingv2beta1 "k8s.io/client-go/kubernetes/typed/autoscaling/v2beta1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type AutoscalingV2beta1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2beta1/fake/autoscaling_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2beta1/fake/autoscaling_client.go index 94341c473c6..482f886f2ee 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2beta1/fake/autoscaling_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2beta1/fake/autoscaling_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - autoscalingv2beta1 "k8s.io/client-go/kubernetes/typed/autoscaling/v2beta1" rest "k8s.io/client-go/rest" kcpautoscalingv2beta1 "github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2beta1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpautoscalingv2beta1.AutoscalingV2beta1ClusterInterface = (*AutoscalingV2beta1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2beta1/fake/horizontalpodautoscaler.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2beta1/fake/horizontalpodautoscaler.go index f650d387397..6f02f4eac75 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2beta1/fake/horizontalpodautoscaler.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2beta1/fake/horizontalpodautoscaler.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - autoscalingv2beta1 "k8s.io/api/autoscaling/v2beta1" v2beta1 "k8s.io/client-go/applyconfigurations/autoscaling/v2beta1" typedautoscalingv2beta1 "k8s.io/client-go/kubernetes/typed/autoscaling/v2beta1" @@ -28,6 +26,7 @@ import ( typedkcpautoscalingv2beta1 "github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // horizontalPodAutoscalerClusterClient implements HorizontalPodAutoscalerClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2beta1/horizontalpodautoscaler.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2beta1/horizontalpodautoscaler.go index fc5816469f2..bc7fa93a189 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2beta1/horizontalpodautoscaler.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2beta1/horizontalpodautoscaler.go @@ -21,13 +21,13 @@ package v2beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - autoscalingv2beta1 "k8s.io/api/autoscaling/v2beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedautoscalingv2beta1 "k8s.io/client-go/kubernetes/typed/autoscaling/v2beta1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // HorizontalPodAutoscalersClusterGetter has a method to return a HorizontalPodAutoscalerClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2beta2/autoscaling_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2beta2/autoscaling_client.go index 593d80cb618..17d7f81115c 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2beta2/autoscaling_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2beta2/autoscaling_client.go @@ -21,14 +21,13 @@ package v2beta2 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiautoscalingv2beta2 "k8s.io/api/autoscaling/v2beta2" autoscalingv2beta2 "k8s.io/client-go/kubernetes/typed/autoscaling/v2beta2" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type AutoscalingV2beta2ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2beta2/fake/autoscaling_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2beta2/fake/autoscaling_client.go index b4aa7d7861a..b34dacb8235 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2beta2/fake/autoscaling_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2beta2/fake/autoscaling_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - autoscalingv2beta2 "k8s.io/client-go/kubernetes/typed/autoscaling/v2beta2" rest "k8s.io/client-go/rest" kcpautoscalingv2beta2 "github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2beta2" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpautoscalingv2beta2.AutoscalingV2beta2ClusterInterface = (*AutoscalingV2beta2ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2beta2/fake/horizontalpodautoscaler.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2beta2/fake/horizontalpodautoscaler.go index 9e969dc9ba7..881badb2997 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2beta2/fake/horizontalpodautoscaler.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2beta2/fake/horizontalpodautoscaler.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - autoscalingv2beta2 "k8s.io/api/autoscaling/v2beta2" v2beta2 "k8s.io/client-go/applyconfigurations/autoscaling/v2beta2" typedautoscalingv2beta2 "k8s.io/client-go/kubernetes/typed/autoscaling/v2beta2" @@ -28,6 +26,7 @@ import ( typedkcpautoscalingv2beta2 "github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2beta2" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // horizontalPodAutoscalerClusterClient implements HorizontalPodAutoscalerClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2beta2/horizontalpodautoscaler.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2beta2/horizontalpodautoscaler.go index 011aaf469a7..07e9550f3c1 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2beta2/horizontalpodautoscaler.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/autoscaling/v2beta2/horizontalpodautoscaler.go @@ -21,13 +21,13 @@ package v2beta2 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - autoscalingv2beta2 "k8s.io/api/autoscaling/v2beta2" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedautoscalingv2beta2 "k8s.io/client-go/kubernetes/typed/autoscaling/v2beta2" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // HorizontalPodAutoscalersClusterGetter has a method to return a HorizontalPodAutoscalerClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/batch/v1/batch_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/batch/v1/batch_client.go index e312ff6bddc..684895e36be 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/batch/v1/batch_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/batch/v1/batch_client.go @@ -21,14 +21,13 @@ package v1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apibatchv1 "k8s.io/api/batch/v1" batchv1 "k8s.io/client-go/kubernetes/typed/batch/v1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type BatchV1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/batch/v1/cronjob.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/batch/v1/cronjob.go index 4b8f7fcf0ef..5768defd442 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/batch/v1/cronjob.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/batch/v1/cronjob.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - batchv1 "k8s.io/api/batch/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedbatchv1 "k8s.io/client-go/kubernetes/typed/batch/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // CronJobsClusterGetter has a method to return a CronJobClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/batch/v1/fake/batch_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/batch/v1/fake/batch_client.go index 7e3bdcac7e8..6ba1f0a968c 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/batch/v1/fake/batch_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/batch/v1/fake/batch_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - batchv1 "k8s.io/client-go/kubernetes/typed/batch/v1" rest "k8s.io/client-go/rest" kcpbatchv1 "github.com/kcp-dev/client-go/kubernetes/typed/batch/v1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpbatchv1.BatchV1ClusterInterface = (*BatchV1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/batch/v1/fake/cronjob.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/batch/v1/fake/cronjob.go index 17b43e75735..dbf80708741 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/batch/v1/fake/cronjob.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/batch/v1/fake/cronjob.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - batchv1 "k8s.io/api/batch/v1" v1 "k8s.io/client-go/applyconfigurations/batch/v1" typedbatchv1 "k8s.io/client-go/kubernetes/typed/batch/v1" @@ -28,6 +26,7 @@ import ( typedkcpbatchv1 "github.com/kcp-dev/client-go/kubernetes/typed/batch/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // cronJobClusterClient implements CronJobClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/batch/v1/fake/job.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/batch/v1/fake/job.go index bab39a0d70c..d3e18ab6318 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/batch/v1/fake/job.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/batch/v1/fake/job.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - batchv1 "k8s.io/api/batch/v1" v1 "k8s.io/client-go/applyconfigurations/batch/v1" typedbatchv1 "k8s.io/client-go/kubernetes/typed/batch/v1" @@ -28,6 +26,7 @@ import ( typedkcpbatchv1 "github.com/kcp-dev/client-go/kubernetes/typed/batch/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // jobClusterClient implements JobClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/batch/v1/job.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/batch/v1/job.go index da50d061793..16af1d9a7e8 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/batch/v1/job.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/batch/v1/job.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - batchv1 "k8s.io/api/batch/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedbatchv1 "k8s.io/client-go/kubernetes/typed/batch/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // JobsClusterGetter has a method to return a JobClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/batch/v1beta1/batch_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/batch/v1beta1/batch_client.go index 44925fa17ee..926df8af250 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/batch/v1beta1/batch_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/batch/v1beta1/batch_client.go @@ -21,14 +21,13 @@ package v1beta1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apibatchv1beta1 "k8s.io/api/batch/v1beta1" batchv1beta1 "k8s.io/client-go/kubernetes/typed/batch/v1beta1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type BatchV1beta1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/batch/v1beta1/cronjob.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/batch/v1beta1/cronjob.go index 4513cb666e7..f271ca9ee36 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/batch/v1beta1/cronjob.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/batch/v1beta1/cronjob.go @@ -21,13 +21,13 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - batchv1beta1 "k8s.io/api/batch/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedbatchv1beta1 "k8s.io/client-go/kubernetes/typed/batch/v1beta1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // CronJobsClusterGetter has a method to return a CronJobClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/batch/v1beta1/fake/batch_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/batch/v1beta1/fake/batch_client.go index c1a374659db..e668f53e03d 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/batch/v1beta1/fake/batch_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/batch/v1beta1/fake/batch_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - batchv1beta1 "k8s.io/client-go/kubernetes/typed/batch/v1beta1" rest "k8s.io/client-go/rest" kcpbatchv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/batch/v1beta1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpbatchv1beta1.BatchV1beta1ClusterInterface = (*BatchV1beta1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/batch/v1beta1/fake/cronjob.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/batch/v1beta1/fake/cronjob.go index 225838a3244..68cb8fef0d7 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/batch/v1beta1/fake/cronjob.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/batch/v1beta1/fake/cronjob.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - batchv1beta1 "k8s.io/api/batch/v1beta1" v1beta1 "k8s.io/client-go/applyconfigurations/batch/v1beta1" typedbatchv1beta1 "k8s.io/client-go/kubernetes/typed/batch/v1beta1" @@ -28,6 +26,7 @@ import ( typedkcpbatchv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/batch/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // cronJobClusterClient implements CronJobClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1/certificates_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1/certificates_client.go index 9c04b0303a5..e79db5fd2bf 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1/certificates_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1/certificates_client.go @@ -21,14 +21,13 @@ package v1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apicertificatesv1 "k8s.io/api/certificates/v1" certificatesv1 "k8s.io/client-go/kubernetes/typed/certificates/v1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type CertificatesV1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1/certificatesigningrequest.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1/certificatesigningrequest.go index 5fdd4643899..c3e8e6a3b33 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1/certificatesigningrequest.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1/certificatesigningrequest.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apicertificatesv1 "k8s.io/api/certificates/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" certificatesv1 "k8s.io/client-go/kubernetes/typed/certificates/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // CertificateSigningRequestsClusterGetter has a method to return a CertificateSigningRequestClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1/fake/certificates_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1/fake/certificates_client.go index 57a8cff9d98..f0d55adce19 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1/fake/certificates_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1/fake/certificates_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - certificatesv1 "k8s.io/client-go/kubernetes/typed/certificates/v1" rest "k8s.io/client-go/rest" kcpcertificatesv1 "github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpcertificatesv1.CertificatesV1ClusterInterface = (*CertificatesV1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1/fake/certificatesigningrequest.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1/fake/certificatesigningrequest.go index f48c2947ea0..800270da2e3 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1/fake/certificatesigningrequest.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1/fake/certificatesigningrequest.go @@ -21,8 +21,6 @@ package fake import ( context "context" - "github.com/kcp-dev/logicalcluster/v3" - certificatesv1 "k8s.io/api/certificates/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" v1 "k8s.io/client-go/applyconfigurations/certificates/v1" @@ -31,6 +29,7 @@ import ( typedkcpcertificatesv1 "github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // certificateSigningRequestClusterClient implements CertificateSigningRequestClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1alpha1/certificates_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1alpha1/certificates_client.go index 7c497b2e06c..7aa4ad64ebf 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1alpha1/certificates_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1alpha1/certificates_client.go @@ -21,14 +21,13 @@ package v1alpha1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apicertificatesv1alpha1 "k8s.io/api/certificates/v1alpha1" certificatesv1alpha1 "k8s.io/client-go/kubernetes/typed/certificates/v1alpha1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type CertificatesV1alpha1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1alpha1/clustertrustbundle.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1alpha1/clustertrustbundle.go index e723b4711d2..c5ad8e1753a 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1alpha1/clustertrustbundle.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1alpha1/clustertrustbundle.go @@ -21,13 +21,13 @@ package v1alpha1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apicertificatesv1alpha1 "k8s.io/api/certificates/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" certificatesv1alpha1 "k8s.io/client-go/kubernetes/typed/certificates/v1alpha1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTrustBundlesClusterGetter has a method to return a ClusterTrustBundleClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1alpha1/fake/certificates_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1alpha1/fake/certificates_client.go index caaa946bb7b..d9c2e0561fa 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1alpha1/fake/certificates_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1alpha1/fake/certificates_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - certificatesv1alpha1 "k8s.io/client-go/kubernetes/typed/certificates/v1alpha1" rest "k8s.io/client-go/rest" kcpcertificatesv1alpha1 "github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1alpha1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpcertificatesv1alpha1.CertificatesV1alpha1ClusterInterface = (*CertificatesV1alpha1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1alpha1/fake/clustertrustbundle.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1alpha1/fake/clustertrustbundle.go index cc6a7cff39d..5928f9447fd 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1alpha1/fake/clustertrustbundle.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1alpha1/fake/clustertrustbundle.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - certificatesv1alpha1 "k8s.io/api/certificates/v1alpha1" v1alpha1 "k8s.io/client-go/applyconfigurations/certificates/v1alpha1" typedcertificatesv1alpha1 "k8s.io/client-go/kubernetes/typed/certificates/v1alpha1" @@ -28,6 +26,7 @@ import ( typedkcpcertificatesv1alpha1 "github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1alpha1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // clusterTrustBundleClusterClient implements ClusterTrustBundleClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1beta1/certificates_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1beta1/certificates_client.go index 6b6fca88d48..03f24d08887 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1beta1/certificates_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1beta1/certificates_client.go @@ -21,14 +21,13 @@ package v1beta1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apicertificatesv1beta1 "k8s.io/api/certificates/v1beta1" certificatesv1beta1 "k8s.io/client-go/kubernetes/typed/certificates/v1beta1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type CertificatesV1beta1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1beta1/certificatesigningrequest.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1beta1/certificatesigningrequest.go index a1194995025..e57fc8b82bb 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1beta1/certificatesigningrequest.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1beta1/certificatesigningrequest.go @@ -21,13 +21,13 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apicertificatesv1beta1 "k8s.io/api/certificates/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" certificatesv1beta1 "k8s.io/client-go/kubernetes/typed/certificates/v1beta1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // CertificateSigningRequestsClusterGetter has a method to return a CertificateSigningRequestClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1beta1/clustertrustbundle.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1beta1/clustertrustbundle.go index 2937a6f91ca..12d3fb4d740 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1beta1/clustertrustbundle.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1beta1/clustertrustbundle.go @@ -21,13 +21,13 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apicertificatesv1beta1 "k8s.io/api/certificates/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" certificatesv1beta1 "k8s.io/client-go/kubernetes/typed/certificates/v1beta1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTrustBundlesClusterGetter has a method to return a ClusterTrustBundleClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1beta1/fake/certificates_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1beta1/fake/certificates_client.go index 51ba63897b8..1d604a818f2 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1beta1/fake/certificates_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1beta1/fake/certificates_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - certificatesv1beta1 "k8s.io/client-go/kubernetes/typed/certificates/v1beta1" rest "k8s.io/client-go/rest" kcpcertificatesv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1beta1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpcertificatesv1beta1.CertificatesV1beta1ClusterInterface = (*CertificatesV1beta1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1beta1/fake/certificatesigningrequest.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1beta1/fake/certificatesigningrequest.go index c58380f6f77..1384067cef2 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1beta1/fake/certificatesigningrequest.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1beta1/fake/certificatesigningrequest.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - certificatesv1beta1 "k8s.io/api/certificates/v1beta1" v1beta1 "k8s.io/client-go/applyconfigurations/certificates/v1beta1" typedcertificatesv1beta1 "k8s.io/client-go/kubernetes/typed/certificates/v1beta1" @@ -28,6 +26,7 @@ import ( typedkcpcertificatesv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // certificateSigningRequestClusterClient implements CertificateSigningRequestClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1beta1/fake/clustertrustbundle.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1beta1/fake/clustertrustbundle.go index 9a4ed1c29e7..2882767a4d9 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1beta1/fake/clustertrustbundle.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1beta1/fake/clustertrustbundle.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - certificatesv1beta1 "k8s.io/api/certificates/v1beta1" v1beta1 "k8s.io/client-go/applyconfigurations/certificates/v1beta1" typedcertificatesv1beta1 "k8s.io/client-go/kubernetes/typed/certificates/v1beta1" @@ -28,6 +26,7 @@ import ( typedkcpcertificatesv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/certificates/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // clusterTrustBundleClusterClient implements ClusterTrustBundleClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1/coordination_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1/coordination_client.go index ff3bb9d622c..309f3fc295d 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1/coordination_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1/coordination_client.go @@ -21,14 +21,13 @@ package v1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apicoordinationv1 "k8s.io/api/coordination/v1" coordinationv1 "k8s.io/client-go/kubernetes/typed/coordination/v1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type CoordinationV1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1/fake/coordination_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1/fake/coordination_client.go index 866ae359de4..aecd0aad132 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1/fake/coordination_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1/fake/coordination_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - coordinationv1 "k8s.io/client-go/kubernetes/typed/coordination/v1" rest "k8s.io/client-go/rest" kcpcoordinationv1 "github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpcoordinationv1.CoordinationV1ClusterInterface = (*CoordinationV1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1/fake/lease.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1/fake/lease.go index 7b3768fe577..c3e1c7b0c11 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1/fake/lease.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1/fake/lease.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - coordinationv1 "k8s.io/api/coordination/v1" v1 "k8s.io/client-go/applyconfigurations/coordination/v1" typedcoordinationv1 "k8s.io/client-go/kubernetes/typed/coordination/v1" @@ -28,6 +26,7 @@ import ( typedkcpcoordinationv1 "github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // leaseClusterClient implements LeaseClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1/lease.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1/lease.go index b67ce9b4b15..7af55cdaf96 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1/lease.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1/lease.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - coordinationv1 "k8s.io/api/coordination/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedcoordinationv1 "k8s.io/client-go/kubernetes/typed/coordination/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // LeasesClusterGetter has a method to return a LeaseClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1alpha2/coordination_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1alpha2/coordination_client.go index 2dbc07dc275..020962423bd 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1alpha2/coordination_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1alpha2/coordination_client.go @@ -21,14 +21,13 @@ package v1alpha2 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apicoordinationv1alpha2 "k8s.io/api/coordination/v1alpha2" coordinationv1alpha2 "k8s.io/client-go/kubernetes/typed/coordination/v1alpha2" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type CoordinationV1alpha2ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1alpha2/fake/coordination_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1alpha2/fake/coordination_client.go index f4d99f69261..e5a02712b02 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1alpha2/fake/coordination_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1alpha2/fake/coordination_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - coordinationv1alpha2 "k8s.io/client-go/kubernetes/typed/coordination/v1alpha2" rest "k8s.io/client-go/rest" kcpcoordinationv1alpha2 "github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1alpha2" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpcoordinationv1alpha2.CoordinationV1alpha2ClusterInterface = (*CoordinationV1alpha2ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1alpha2/fake/leasecandidate.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1alpha2/fake/leasecandidate.go index da1a0ef0650..5816a6876c5 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1alpha2/fake/leasecandidate.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1alpha2/fake/leasecandidate.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - coordinationv1alpha2 "k8s.io/api/coordination/v1alpha2" v1alpha2 "k8s.io/client-go/applyconfigurations/coordination/v1alpha2" typedcoordinationv1alpha2 "k8s.io/client-go/kubernetes/typed/coordination/v1alpha2" @@ -28,6 +26,7 @@ import ( typedkcpcoordinationv1alpha2 "github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1alpha2" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // leaseCandidateClusterClient implements LeaseCandidateClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1alpha2/leasecandidate.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1alpha2/leasecandidate.go index e1f50c7bae1..b095589e90d 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1alpha2/leasecandidate.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1alpha2/leasecandidate.go @@ -21,13 +21,13 @@ package v1alpha2 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - coordinationv1alpha2 "k8s.io/api/coordination/v1alpha2" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedcoordinationv1alpha2 "k8s.io/client-go/kubernetes/typed/coordination/v1alpha2" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // LeaseCandidatesClusterGetter has a method to return a LeaseCandidateClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1beta1/coordination_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1beta1/coordination_client.go index 6e0b3e2d66d..83683fd9cc6 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1beta1/coordination_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1beta1/coordination_client.go @@ -21,14 +21,13 @@ package v1beta1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apicoordinationv1beta1 "k8s.io/api/coordination/v1beta1" coordinationv1beta1 "k8s.io/client-go/kubernetes/typed/coordination/v1beta1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type CoordinationV1beta1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1beta1/fake/coordination_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1beta1/fake/coordination_client.go index 6e693f27b1f..6f3074b5474 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1beta1/fake/coordination_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1beta1/fake/coordination_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - coordinationv1beta1 "k8s.io/client-go/kubernetes/typed/coordination/v1beta1" rest "k8s.io/client-go/rest" kcpcoordinationv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1beta1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpcoordinationv1beta1.CoordinationV1beta1ClusterInterface = (*CoordinationV1beta1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1beta1/fake/lease.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1beta1/fake/lease.go index dbbc5dd4ad8..58bcc839750 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1beta1/fake/lease.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1beta1/fake/lease.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - coordinationv1beta1 "k8s.io/api/coordination/v1beta1" v1beta1 "k8s.io/client-go/applyconfigurations/coordination/v1beta1" typedcoordinationv1beta1 "k8s.io/client-go/kubernetes/typed/coordination/v1beta1" @@ -28,6 +26,7 @@ import ( typedkcpcoordinationv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // leaseClusterClient implements LeaseClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1beta1/fake/leasecandidate.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1beta1/fake/leasecandidate.go index af2714424be..428d18a8061 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1beta1/fake/leasecandidate.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1beta1/fake/leasecandidate.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - coordinationv1beta1 "k8s.io/api/coordination/v1beta1" v1beta1 "k8s.io/client-go/applyconfigurations/coordination/v1beta1" typedcoordinationv1beta1 "k8s.io/client-go/kubernetes/typed/coordination/v1beta1" @@ -28,6 +26,7 @@ import ( typedkcpcoordinationv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // leaseCandidateClusterClient implements LeaseCandidateClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1beta1/lease.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1beta1/lease.go index 4ff7f8ed609..dc2346c4c20 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1beta1/lease.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1beta1/lease.go @@ -21,13 +21,13 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - coordinationv1beta1 "k8s.io/api/coordination/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedcoordinationv1beta1 "k8s.io/client-go/kubernetes/typed/coordination/v1beta1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // LeasesClusterGetter has a method to return a LeaseClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1beta1/leasecandidate.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1beta1/leasecandidate.go index fe768861e8a..57dba5b3428 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1beta1/leasecandidate.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/coordination/v1beta1/leasecandidate.go @@ -21,13 +21,13 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - coordinationv1beta1 "k8s.io/api/coordination/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedcoordinationv1beta1 "k8s.io/client-go/kubernetes/typed/coordination/v1beta1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // LeaseCandidatesClusterGetter has a method to return a LeaseCandidateClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/componentstatus.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/componentstatus.go index 2d28e88b9b0..83326213786 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/componentstatus.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/componentstatus.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apicorev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" corev1 "k8s.io/client-go/kubernetes/typed/core/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ComponentStatusesClusterGetter has a method to return a ComponentStatusClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/configmap.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/configmap.go index a9f0b4d767f..1a72a64034f 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/configmap.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/configmap.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedcorev1 "k8s.io/client-go/kubernetes/typed/core/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ConfigMapsClusterGetter has a method to return a ConfigMapClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/core_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/core_client.go index c4c5ce0030e..fbf8ab4d5fb 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/core_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/core_client.go @@ -21,14 +21,13 @@ package v1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apicorev1 "k8s.io/api/core/v1" corev1 "k8s.io/client-go/kubernetes/typed/core/v1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type CoreV1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/endpoints.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/endpoints.go index e98968eed59..96e8aa14e98 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/endpoints.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/endpoints.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedcorev1 "k8s.io/client-go/kubernetes/typed/core/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // EndpointsClusterGetter has a method to return a EndpointsClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/event.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/event.go index 2c497a079cb..fed700c9e12 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/event.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/event.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedcorev1 "k8s.io/client-go/kubernetes/typed/core/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // EventsClusterGetter has a method to return a EventClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/componentstatus.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/componentstatus.go index d6dedf76cbd..1301316f151 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/componentstatus.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/componentstatus.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - corev1 "k8s.io/api/core/v1" v1 "k8s.io/client-go/applyconfigurations/core/v1" typedcorev1 "k8s.io/client-go/kubernetes/typed/core/v1" @@ -28,6 +26,7 @@ import ( typedkcpcorev1 "github.com/kcp-dev/client-go/kubernetes/typed/core/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // componentStatusClusterClient implements ComponentStatusClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/configmap.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/configmap.go index 81fbfddca4c..e0bdc80bb89 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/configmap.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/configmap.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - corev1 "k8s.io/api/core/v1" v1 "k8s.io/client-go/applyconfigurations/core/v1" typedcorev1 "k8s.io/client-go/kubernetes/typed/core/v1" @@ -28,6 +26,7 @@ import ( typedkcpcorev1 "github.com/kcp-dev/client-go/kubernetes/typed/core/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // configMapClusterClient implements ConfigMapClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/core_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/core_client.go index d5ba317b269..a0026c747f3 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/core_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/core_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - corev1 "k8s.io/client-go/kubernetes/typed/core/v1" rest "k8s.io/client-go/rest" kcpcorev1 "github.com/kcp-dev/client-go/kubernetes/typed/core/v1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpcorev1.CoreV1ClusterInterface = (*CoreV1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/endpoints.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/endpoints.go index 8b6041b1722..71f1fcbc99c 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/endpoints.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/endpoints.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - corev1 "k8s.io/api/core/v1" v1 "k8s.io/client-go/applyconfigurations/core/v1" typedcorev1 "k8s.io/client-go/kubernetes/typed/core/v1" @@ -28,6 +26,7 @@ import ( typedkcpcorev1 "github.com/kcp-dev/client-go/kubernetes/typed/core/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // endpointsClusterClient implements EndpointsClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/event.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/event.go index 43cfcf8f4c5..e61aea0c405 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/event.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/event.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - corev1 "k8s.io/api/core/v1" v1 "k8s.io/client-go/applyconfigurations/core/v1" typedcorev1 "k8s.io/client-go/kubernetes/typed/core/v1" @@ -28,6 +26,7 @@ import ( typedkcpcorev1 "github.com/kcp-dev/client-go/kubernetes/typed/core/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // eventClusterClient implements EventClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/limitrange.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/limitrange.go index a8cd9154e7e..c6132e7b07c 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/limitrange.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/limitrange.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - corev1 "k8s.io/api/core/v1" v1 "k8s.io/client-go/applyconfigurations/core/v1" typedcorev1 "k8s.io/client-go/kubernetes/typed/core/v1" @@ -28,6 +26,7 @@ import ( typedkcpcorev1 "github.com/kcp-dev/client-go/kubernetes/typed/core/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // limitRangeClusterClient implements LimitRangeClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/namespace.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/namespace.go index e249b59a7c0..b8b327d6e66 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/namespace.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/namespace.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - corev1 "k8s.io/api/core/v1" v1 "k8s.io/client-go/applyconfigurations/core/v1" typedcorev1 "k8s.io/client-go/kubernetes/typed/core/v1" @@ -28,6 +26,7 @@ import ( typedkcpcorev1 "github.com/kcp-dev/client-go/kubernetes/typed/core/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // namespaceClusterClient implements NamespaceClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/node.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/node.go index cedf1775af6..c221b51b474 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/node.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/node.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - corev1 "k8s.io/api/core/v1" v1 "k8s.io/client-go/applyconfigurations/core/v1" typedcorev1 "k8s.io/client-go/kubernetes/typed/core/v1" @@ -28,6 +26,7 @@ import ( typedkcpcorev1 "github.com/kcp-dev/client-go/kubernetes/typed/core/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // nodeClusterClient implements NodeClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/persistentvolume.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/persistentvolume.go index 2d72adb9c7f..f0e7cf498c3 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/persistentvolume.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/persistentvolume.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - corev1 "k8s.io/api/core/v1" v1 "k8s.io/client-go/applyconfigurations/core/v1" typedcorev1 "k8s.io/client-go/kubernetes/typed/core/v1" @@ -28,6 +26,7 @@ import ( typedkcpcorev1 "github.com/kcp-dev/client-go/kubernetes/typed/core/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // persistentVolumeClusterClient implements PersistentVolumeClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/persistentvolumeclaim.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/persistentvolumeclaim.go index 14ac69bc4b1..4a3a957b718 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/persistentvolumeclaim.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/persistentvolumeclaim.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - corev1 "k8s.io/api/core/v1" v1 "k8s.io/client-go/applyconfigurations/core/v1" typedcorev1 "k8s.io/client-go/kubernetes/typed/core/v1" @@ -28,6 +26,7 @@ import ( typedkcpcorev1 "github.com/kcp-dev/client-go/kubernetes/typed/core/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // persistentVolumeClaimClusterClient implements PersistentVolumeClaimClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/pod.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/pod.go index 71c2dee699c..f3a3f7f6517 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/pod.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/pod.go @@ -21,8 +21,6 @@ package fake import ( context "context" - "github.com/kcp-dev/logicalcluster/v3" - corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" v1 "k8s.io/client-go/applyconfigurations/core/v1" @@ -31,6 +29,7 @@ import ( typedkcpcorev1 "github.com/kcp-dev/client-go/kubernetes/typed/core/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // podClusterClient implements PodClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/podtemplate.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/podtemplate.go index 91971656e9e..720f1c30a00 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/podtemplate.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/podtemplate.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - corev1 "k8s.io/api/core/v1" v1 "k8s.io/client-go/applyconfigurations/core/v1" typedcorev1 "k8s.io/client-go/kubernetes/typed/core/v1" @@ -28,6 +26,7 @@ import ( typedkcpcorev1 "github.com/kcp-dev/client-go/kubernetes/typed/core/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // podTemplateClusterClient implements PodTemplateClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/replicationcontroller.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/replicationcontroller.go index 82405ebcd19..22caa97a741 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/replicationcontroller.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/replicationcontroller.go @@ -21,8 +21,6 @@ package fake import ( context "context" - "github.com/kcp-dev/logicalcluster/v3" - autoscalingv1 "k8s.io/api/autoscaling/v1" corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" @@ -32,6 +30,7 @@ import ( typedkcpcorev1 "github.com/kcp-dev/client-go/kubernetes/typed/core/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // replicationControllerClusterClient implements ReplicationControllerClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/resourcequota.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/resourcequota.go index 5c5095fa914..889f89780e6 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/resourcequota.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/resourcequota.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - corev1 "k8s.io/api/core/v1" v1 "k8s.io/client-go/applyconfigurations/core/v1" typedcorev1 "k8s.io/client-go/kubernetes/typed/core/v1" @@ -28,6 +26,7 @@ import ( typedkcpcorev1 "github.com/kcp-dev/client-go/kubernetes/typed/core/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // resourceQuotaClusterClient implements ResourceQuotaClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/secret.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/secret.go index a602590b8a9..6b772feb0dd 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/secret.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/secret.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - corev1 "k8s.io/api/core/v1" v1 "k8s.io/client-go/applyconfigurations/core/v1" typedcorev1 "k8s.io/client-go/kubernetes/typed/core/v1" @@ -28,6 +26,7 @@ import ( typedkcpcorev1 "github.com/kcp-dev/client-go/kubernetes/typed/core/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // secretClusterClient implements SecretClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/service.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/service.go index 2d3d8f6aa3c..4b61b638011 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/service.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/service.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - corev1 "k8s.io/api/core/v1" v1 "k8s.io/client-go/applyconfigurations/core/v1" typedcorev1 "k8s.io/client-go/kubernetes/typed/core/v1" @@ -28,6 +26,7 @@ import ( typedkcpcorev1 "github.com/kcp-dev/client-go/kubernetes/typed/core/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // serviceClusterClient implements ServiceClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/serviceaccount.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/serviceaccount.go index 59b4786058e..92b4fb77e07 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/serviceaccount.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/fake/serviceaccount.go @@ -21,8 +21,6 @@ package fake import ( context "context" - "github.com/kcp-dev/logicalcluster/v3" - authenticationv1 "k8s.io/api/authentication/v1" corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" @@ -32,6 +30,7 @@ import ( typedkcpcorev1 "github.com/kcp-dev/client-go/kubernetes/typed/core/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // serviceAccountClusterClient implements ServiceAccountClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/limitrange.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/limitrange.go index 6dc4f893cf0..5a51f311d53 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/limitrange.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/limitrange.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedcorev1 "k8s.io/client-go/kubernetes/typed/core/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // LimitRangesClusterGetter has a method to return a LimitRangeClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/namespace.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/namespace.go index 7c8d37ddc02..53bc82f46b4 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/namespace.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/namespace.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apicorev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" corev1 "k8s.io/client-go/kubernetes/typed/core/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // NamespacesClusterGetter has a method to return a NamespaceClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/node.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/node.go index fc2a9f37f79..63e75ddaa54 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/node.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/node.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apicorev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" corev1 "k8s.io/client-go/kubernetes/typed/core/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // NodesClusterGetter has a method to return a NodeClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/persistentvolume.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/persistentvolume.go index dfb24e10435..afc1391b626 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/persistentvolume.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/persistentvolume.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apicorev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" corev1 "k8s.io/client-go/kubernetes/typed/core/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // PersistentVolumesClusterGetter has a method to return a PersistentVolumeClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/persistentvolumeclaim.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/persistentvolumeclaim.go index 3cd21cc1cec..0001347452e 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/persistentvolumeclaim.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/persistentvolumeclaim.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedcorev1 "k8s.io/client-go/kubernetes/typed/core/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // PersistentVolumeClaimsClusterGetter has a method to return a PersistentVolumeClaimClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/pod.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/pod.go index 05fc7855dfc..69ab14a8655 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/pod.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/pod.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedcorev1 "k8s.io/client-go/kubernetes/typed/core/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // PodsClusterGetter has a method to return a PodClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/podtemplate.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/podtemplate.go index 792b263d4d2..7f6e2791efb 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/podtemplate.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/podtemplate.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedcorev1 "k8s.io/client-go/kubernetes/typed/core/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // PodTemplatesClusterGetter has a method to return a PodTemplateClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/replicationcontroller.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/replicationcontroller.go index bd34eaf1993..4e70ac94422 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/replicationcontroller.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/replicationcontroller.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedcorev1 "k8s.io/client-go/kubernetes/typed/core/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ReplicationControllersClusterGetter has a method to return a ReplicationControllerClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/resourcequota.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/resourcequota.go index 4f6faeaf364..6d4685628ad 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/resourcequota.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/resourcequota.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedcorev1 "k8s.io/client-go/kubernetes/typed/core/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ResourceQuotasClusterGetter has a method to return a ResourceQuotaClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/secret.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/secret.go index de482719f11..01300d33f68 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/secret.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/secret.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedcorev1 "k8s.io/client-go/kubernetes/typed/core/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // SecretsClusterGetter has a method to return a SecretClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/service.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/service.go index a4a1ccabc2e..a430fd9dcb3 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/service.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/service.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedcorev1 "k8s.io/client-go/kubernetes/typed/core/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ServicesClusterGetter has a method to return a ServiceClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/serviceaccount.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/serviceaccount.go index 1c936914ad2..ffdfef9ddfb 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/serviceaccount.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/core/v1/serviceaccount.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedcorev1 "k8s.io/client-go/kubernetes/typed/core/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ServiceAccountsClusterGetter has a method to return a ServiceAccountClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/discovery/v1/discovery_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/discovery/v1/discovery_client.go index 4d0fa8e73fa..031536f37cb 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/discovery/v1/discovery_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/discovery/v1/discovery_client.go @@ -21,14 +21,13 @@ package v1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apidiscoveryv1 "k8s.io/api/discovery/v1" discoveryv1 "k8s.io/client-go/kubernetes/typed/discovery/v1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type DiscoveryV1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/discovery/v1/endpointslice.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/discovery/v1/endpointslice.go index 8347ff48e90..083ecb9bc61 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/discovery/v1/endpointslice.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/discovery/v1/endpointslice.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - discoveryv1 "k8s.io/api/discovery/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typeddiscoveryv1 "k8s.io/client-go/kubernetes/typed/discovery/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // EndpointSlicesClusterGetter has a method to return a EndpointSliceClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/discovery/v1/fake/discovery_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/discovery/v1/fake/discovery_client.go index d8990e61dd8..3ba87aefd72 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/discovery/v1/fake/discovery_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/discovery/v1/fake/discovery_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - discoveryv1 "k8s.io/client-go/kubernetes/typed/discovery/v1" rest "k8s.io/client-go/rest" kcpdiscoveryv1 "github.com/kcp-dev/client-go/kubernetes/typed/discovery/v1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpdiscoveryv1.DiscoveryV1ClusterInterface = (*DiscoveryV1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/discovery/v1/fake/endpointslice.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/discovery/v1/fake/endpointslice.go index b110095cc61..888c2dd0879 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/discovery/v1/fake/endpointslice.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/discovery/v1/fake/endpointslice.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - discoveryv1 "k8s.io/api/discovery/v1" v1 "k8s.io/client-go/applyconfigurations/discovery/v1" typeddiscoveryv1 "k8s.io/client-go/kubernetes/typed/discovery/v1" @@ -28,6 +26,7 @@ import ( typedkcpdiscoveryv1 "github.com/kcp-dev/client-go/kubernetes/typed/discovery/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // endpointSliceClusterClient implements EndpointSliceClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/discovery/v1beta1/discovery_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/discovery/v1beta1/discovery_client.go index f6cbc56a9b6..8da03d6aaed 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/discovery/v1beta1/discovery_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/discovery/v1beta1/discovery_client.go @@ -21,14 +21,13 @@ package v1beta1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apidiscoveryv1beta1 "k8s.io/api/discovery/v1beta1" discoveryv1beta1 "k8s.io/client-go/kubernetes/typed/discovery/v1beta1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type DiscoveryV1beta1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/discovery/v1beta1/endpointslice.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/discovery/v1beta1/endpointslice.go index 6c45f70f982..1b97a1d0322 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/discovery/v1beta1/endpointslice.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/discovery/v1beta1/endpointslice.go @@ -21,13 +21,13 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - discoveryv1beta1 "k8s.io/api/discovery/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typeddiscoveryv1beta1 "k8s.io/client-go/kubernetes/typed/discovery/v1beta1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // EndpointSlicesClusterGetter has a method to return a EndpointSliceClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/discovery/v1beta1/fake/discovery_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/discovery/v1beta1/fake/discovery_client.go index 170948d9790..39458cd62c2 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/discovery/v1beta1/fake/discovery_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/discovery/v1beta1/fake/discovery_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - discoveryv1beta1 "k8s.io/client-go/kubernetes/typed/discovery/v1beta1" rest "k8s.io/client-go/rest" kcpdiscoveryv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/discovery/v1beta1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpdiscoveryv1beta1.DiscoveryV1beta1ClusterInterface = (*DiscoveryV1beta1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/discovery/v1beta1/fake/endpointslice.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/discovery/v1beta1/fake/endpointslice.go index 68bf2f34333..a0babfe1f5f 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/discovery/v1beta1/fake/endpointslice.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/discovery/v1beta1/fake/endpointslice.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - discoveryv1beta1 "k8s.io/api/discovery/v1beta1" v1beta1 "k8s.io/client-go/applyconfigurations/discovery/v1beta1" typeddiscoveryv1beta1 "k8s.io/client-go/kubernetes/typed/discovery/v1beta1" @@ -28,6 +26,7 @@ import ( typedkcpdiscoveryv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/discovery/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // endpointSliceClusterClient implements EndpointSliceClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/events/v1/event.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/events/v1/event.go index c4c28df0845..dbb678a1d3e 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/events/v1/event.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/events/v1/event.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - eventsv1 "k8s.io/api/events/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedeventsv1 "k8s.io/client-go/kubernetes/typed/events/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // EventsClusterGetter has a method to return a EventClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/events/v1/events_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/events/v1/events_client.go index 24ba54e036f..b16abbf865e 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/events/v1/events_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/events/v1/events_client.go @@ -21,14 +21,13 @@ package v1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apieventsv1 "k8s.io/api/events/v1" eventsv1 "k8s.io/client-go/kubernetes/typed/events/v1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type EventsV1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/events/v1/fake/event.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/events/v1/fake/event.go index c3ae2922c72..3ce4c11d057 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/events/v1/fake/event.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/events/v1/fake/event.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - eventsv1 "k8s.io/api/events/v1" v1 "k8s.io/client-go/applyconfigurations/events/v1" typedeventsv1 "k8s.io/client-go/kubernetes/typed/events/v1" @@ -28,6 +26,7 @@ import ( typedkcpeventsv1 "github.com/kcp-dev/client-go/kubernetes/typed/events/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // eventClusterClient implements EventClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/events/v1/fake/events_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/events/v1/fake/events_client.go index 864f0fa3a95..287a2dc5fbc 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/events/v1/fake/events_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/events/v1/fake/events_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - eventsv1 "k8s.io/client-go/kubernetes/typed/events/v1" rest "k8s.io/client-go/rest" kcpeventsv1 "github.com/kcp-dev/client-go/kubernetes/typed/events/v1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpeventsv1.EventsV1ClusterInterface = (*EventsV1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/events/v1beta1/event.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/events/v1beta1/event.go index 78cd0738e3f..7299691fadb 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/events/v1beta1/event.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/events/v1beta1/event.go @@ -21,13 +21,13 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - eventsv1beta1 "k8s.io/api/events/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedeventsv1beta1 "k8s.io/client-go/kubernetes/typed/events/v1beta1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // EventsClusterGetter has a method to return a EventClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/events/v1beta1/events_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/events/v1beta1/events_client.go index 78f2b8576d2..917c252c2fc 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/events/v1beta1/events_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/events/v1beta1/events_client.go @@ -21,14 +21,13 @@ package v1beta1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apieventsv1beta1 "k8s.io/api/events/v1beta1" eventsv1beta1 "k8s.io/client-go/kubernetes/typed/events/v1beta1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type EventsV1beta1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/events/v1beta1/fake/event.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/events/v1beta1/fake/event.go index f8b0518c4f9..f2487403a3b 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/events/v1beta1/fake/event.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/events/v1beta1/fake/event.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - eventsv1beta1 "k8s.io/api/events/v1beta1" v1beta1 "k8s.io/client-go/applyconfigurations/events/v1beta1" typedeventsv1beta1 "k8s.io/client-go/kubernetes/typed/events/v1beta1" @@ -28,6 +26,7 @@ import ( typedkcpeventsv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/events/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // eventClusterClient implements EventClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/events/v1beta1/fake/events_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/events/v1beta1/fake/events_client.go index 644f3e85ba7..17e92fad39c 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/events/v1beta1/fake/events_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/events/v1beta1/fake/events_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - eventsv1beta1 "k8s.io/client-go/kubernetes/typed/events/v1beta1" rest "k8s.io/client-go/rest" kcpeventsv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/events/v1beta1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpeventsv1beta1.EventsV1beta1ClusterInterface = (*EventsV1beta1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/daemonset.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/daemonset.go index 03998181932..9b3864a7034 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/daemonset.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/daemonset.go @@ -21,13 +21,13 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - extensionsv1beta1 "k8s.io/api/extensions/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedextensionsv1beta1 "k8s.io/client-go/kubernetes/typed/extensions/v1beta1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // DaemonSetsClusterGetter has a method to return a DaemonSetClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/deployment.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/deployment.go index 03ef88cb433..e63e9857aa7 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/deployment.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/deployment.go @@ -21,13 +21,13 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - extensionsv1beta1 "k8s.io/api/extensions/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedextensionsv1beta1 "k8s.io/client-go/kubernetes/typed/extensions/v1beta1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // DeploymentsClusterGetter has a method to return a DeploymentClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/extensions_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/extensions_client.go index 50d402fef42..265b8078740 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/extensions_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/extensions_client.go @@ -21,14 +21,13 @@ package v1beta1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiextensionsv1beta1 "k8s.io/api/extensions/v1beta1" extensionsv1beta1 "k8s.io/client-go/kubernetes/typed/extensions/v1beta1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type ExtensionsV1beta1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/fake/daemonset.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/fake/daemonset.go index e911bda076d..275523fde64 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/fake/daemonset.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/fake/daemonset.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - extensionsv1beta1 "k8s.io/api/extensions/v1beta1" v1beta1 "k8s.io/client-go/applyconfigurations/extensions/v1beta1" typedextensionsv1beta1 "k8s.io/client-go/kubernetes/typed/extensions/v1beta1" @@ -28,6 +26,7 @@ import ( typedkcpextensionsv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // daemonSetClusterClient implements DaemonSetClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/fake/deployment.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/fake/deployment.go index 163eb8a6530..53b8c28804f 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/fake/deployment.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/fake/deployment.go @@ -23,8 +23,6 @@ import ( json "encoding/json" fmt "fmt" - "github.com/kcp-dev/logicalcluster/v3" - extensionsv1beta1 "k8s.io/api/extensions/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" @@ -34,6 +32,7 @@ import ( typedkcpextensionsv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // deploymentClusterClient implements DeploymentClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/fake/extensions_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/fake/extensions_client.go index f0d1ec51a12..1671f04ab2c 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/fake/extensions_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/fake/extensions_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - extensionsv1beta1 "k8s.io/client-go/kubernetes/typed/extensions/v1beta1" rest "k8s.io/client-go/rest" kcpextensionsv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpextensionsv1beta1.ExtensionsV1beta1ClusterInterface = (*ExtensionsV1beta1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/fake/ingress.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/fake/ingress.go index 7ebb4a550ee..74038fb1c03 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/fake/ingress.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/fake/ingress.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - extensionsv1beta1 "k8s.io/api/extensions/v1beta1" v1beta1 "k8s.io/client-go/applyconfigurations/extensions/v1beta1" typedextensionsv1beta1 "k8s.io/client-go/kubernetes/typed/extensions/v1beta1" @@ -28,6 +26,7 @@ import ( typedkcpextensionsv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // ingressClusterClient implements IngressClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/fake/networkpolicy.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/fake/networkpolicy.go index 6c32cccd8cb..20c8bf18405 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/fake/networkpolicy.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/fake/networkpolicy.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - extensionsv1beta1 "k8s.io/api/extensions/v1beta1" v1beta1 "k8s.io/client-go/applyconfigurations/extensions/v1beta1" typedextensionsv1beta1 "k8s.io/client-go/kubernetes/typed/extensions/v1beta1" @@ -28,6 +26,7 @@ import ( typedkcpextensionsv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // networkPolicyClusterClient implements NetworkPolicyClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/fake/replicaset.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/fake/replicaset.go index ab61c5a7c6a..b1d62df7ad5 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/fake/replicaset.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/fake/replicaset.go @@ -23,8 +23,6 @@ import ( json "encoding/json" fmt "fmt" - "github.com/kcp-dev/logicalcluster/v3" - extensionsv1beta1 "k8s.io/api/extensions/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" @@ -34,6 +32,7 @@ import ( typedkcpextensionsv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // replicaSetClusterClient implements ReplicaSetClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/ingress.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/ingress.go index e82b6b04c38..ef82d353318 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/ingress.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/ingress.go @@ -21,13 +21,13 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - extensionsv1beta1 "k8s.io/api/extensions/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedextensionsv1beta1 "k8s.io/client-go/kubernetes/typed/extensions/v1beta1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // IngressesClusterGetter has a method to return a IngressClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/networkpolicy.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/networkpolicy.go index 23985088ec7..b2f53d5a487 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/networkpolicy.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/networkpolicy.go @@ -21,13 +21,13 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - extensionsv1beta1 "k8s.io/api/extensions/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedextensionsv1beta1 "k8s.io/client-go/kubernetes/typed/extensions/v1beta1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // NetworkPoliciesClusterGetter has a method to return a NetworkPolicyClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/replicaset.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/replicaset.go index 66e52106f6d..68537ce87c8 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/replicaset.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/extensions/v1beta1/replicaset.go @@ -21,13 +21,13 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - extensionsv1beta1 "k8s.io/api/extensions/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedextensionsv1beta1 "k8s.io/client-go/kubernetes/typed/extensions/v1beta1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ReplicaSetsClusterGetter has a method to return a ReplicaSetClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1/fake/flowcontrol_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1/fake/flowcontrol_client.go index 21ba80a5dde..3ea69fdc8b8 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1/fake/flowcontrol_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1/fake/flowcontrol_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - flowcontrolv1 "k8s.io/client-go/kubernetes/typed/flowcontrol/v1" rest "k8s.io/client-go/rest" kcpflowcontrolv1 "github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpflowcontrolv1.FlowcontrolV1ClusterInterface = (*FlowcontrolV1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1/fake/flowschema.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1/fake/flowschema.go index 5aaa449e257..bcdc343dec1 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1/fake/flowschema.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1/fake/flowschema.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - flowcontrolv1 "k8s.io/api/flowcontrol/v1" v1 "k8s.io/client-go/applyconfigurations/flowcontrol/v1" typedflowcontrolv1 "k8s.io/client-go/kubernetes/typed/flowcontrol/v1" @@ -28,6 +26,7 @@ import ( typedkcpflowcontrolv1 "github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // flowSchemaClusterClient implements FlowSchemaClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1/fake/prioritylevelconfiguration.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1/fake/prioritylevelconfiguration.go index ee7d2125043..41fe2a568cf 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1/fake/prioritylevelconfiguration.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1/fake/prioritylevelconfiguration.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - flowcontrolv1 "k8s.io/api/flowcontrol/v1" v1 "k8s.io/client-go/applyconfigurations/flowcontrol/v1" typedflowcontrolv1 "k8s.io/client-go/kubernetes/typed/flowcontrol/v1" @@ -28,6 +26,7 @@ import ( typedkcpflowcontrolv1 "github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // priorityLevelConfigurationClusterClient implements PriorityLevelConfigurationClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1/flowcontrol_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1/flowcontrol_client.go index 8295271f8ad..bdce2390ea1 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1/flowcontrol_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1/flowcontrol_client.go @@ -21,14 +21,13 @@ package v1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiflowcontrolv1 "k8s.io/api/flowcontrol/v1" flowcontrolv1 "k8s.io/client-go/kubernetes/typed/flowcontrol/v1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type FlowcontrolV1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1/flowschema.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1/flowschema.go index f54adcc394f..f6408de7465 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1/flowschema.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1/flowschema.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiflowcontrolv1 "k8s.io/api/flowcontrol/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" flowcontrolv1 "k8s.io/client-go/kubernetes/typed/flowcontrol/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // FlowSchemasClusterGetter has a method to return a FlowSchemaClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1/prioritylevelconfiguration.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1/prioritylevelconfiguration.go index 6af6da5e81a..9d880b935f8 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1/prioritylevelconfiguration.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1/prioritylevelconfiguration.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiflowcontrolv1 "k8s.io/api/flowcontrol/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" flowcontrolv1 "k8s.io/client-go/kubernetes/typed/flowcontrol/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // PriorityLevelConfigurationsClusterGetter has a method to return a PriorityLevelConfigurationClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta1/fake/flowcontrol_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta1/fake/flowcontrol_client.go index d8e375be7ea..aff6a2953eb 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta1/fake/flowcontrol_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta1/fake/flowcontrol_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - flowcontrolv1beta1 "k8s.io/client-go/kubernetes/typed/flowcontrol/v1beta1" rest "k8s.io/client-go/rest" kcpflowcontrolv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpflowcontrolv1beta1.FlowcontrolV1beta1ClusterInterface = (*FlowcontrolV1beta1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta1/fake/flowschema.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta1/fake/flowschema.go index 9fa916a14b3..83707a0cbcb 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta1/fake/flowschema.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta1/fake/flowschema.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - flowcontrolv1beta1 "k8s.io/api/flowcontrol/v1beta1" v1beta1 "k8s.io/client-go/applyconfigurations/flowcontrol/v1beta1" typedflowcontrolv1beta1 "k8s.io/client-go/kubernetes/typed/flowcontrol/v1beta1" @@ -28,6 +26,7 @@ import ( typedkcpflowcontrolv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // flowSchemaClusterClient implements FlowSchemaClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta1/fake/prioritylevelconfiguration.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta1/fake/prioritylevelconfiguration.go index 61abe18957c..b8ef224178d 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta1/fake/prioritylevelconfiguration.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta1/fake/prioritylevelconfiguration.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - flowcontrolv1beta1 "k8s.io/api/flowcontrol/v1beta1" v1beta1 "k8s.io/client-go/applyconfigurations/flowcontrol/v1beta1" typedflowcontrolv1beta1 "k8s.io/client-go/kubernetes/typed/flowcontrol/v1beta1" @@ -28,6 +26,7 @@ import ( typedkcpflowcontrolv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // priorityLevelConfigurationClusterClient implements PriorityLevelConfigurationClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta1/flowcontrol_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta1/flowcontrol_client.go index bd475f1243c..6cf0ddc59f9 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta1/flowcontrol_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta1/flowcontrol_client.go @@ -21,14 +21,13 @@ package v1beta1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiflowcontrolv1beta1 "k8s.io/api/flowcontrol/v1beta1" flowcontrolv1beta1 "k8s.io/client-go/kubernetes/typed/flowcontrol/v1beta1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type FlowcontrolV1beta1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta1/flowschema.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta1/flowschema.go index 98aa374c218..08d95fcc908 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta1/flowschema.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta1/flowschema.go @@ -21,13 +21,13 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiflowcontrolv1beta1 "k8s.io/api/flowcontrol/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" flowcontrolv1beta1 "k8s.io/client-go/kubernetes/typed/flowcontrol/v1beta1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // FlowSchemasClusterGetter has a method to return a FlowSchemaClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta1/prioritylevelconfiguration.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta1/prioritylevelconfiguration.go index cecd17c9b82..77c14d14dce 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta1/prioritylevelconfiguration.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta1/prioritylevelconfiguration.go @@ -21,13 +21,13 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiflowcontrolv1beta1 "k8s.io/api/flowcontrol/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" flowcontrolv1beta1 "k8s.io/client-go/kubernetes/typed/flowcontrol/v1beta1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // PriorityLevelConfigurationsClusterGetter has a method to return a PriorityLevelConfigurationClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta2/fake/flowcontrol_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta2/fake/flowcontrol_client.go index f03d1ca8bff..baec70c8c85 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta2/fake/flowcontrol_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta2/fake/flowcontrol_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - flowcontrolv1beta2 "k8s.io/client-go/kubernetes/typed/flowcontrol/v1beta2" rest "k8s.io/client-go/rest" kcpflowcontrolv1beta2 "github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta2" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpflowcontrolv1beta2.FlowcontrolV1beta2ClusterInterface = (*FlowcontrolV1beta2ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta2/fake/flowschema.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta2/fake/flowschema.go index 1e510e3fdfc..cf559b7212c 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta2/fake/flowschema.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta2/fake/flowschema.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - flowcontrolv1beta2 "k8s.io/api/flowcontrol/v1beta2" v1beta2 "k8s.io/client-go/applyconfigurations/flowcontrol/v1beta2" typedflowcontrolv1beta2 "k8s.io/client-go/kubernetes/typed/flowcontrol/v1beta2" @@ -28,6 +26,7 @@ import ( typedkcpflowcontrolv1beta2 "github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta2" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // flowSchemaClusterClient implements FlowSchemaClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta2/fake/prioritylevelconfiguration.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta2/fake/prioritylevelconfiguration.go index c61a503f4bd..1b9bd6f5285 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta2/fake/prioritylevelconfiguration.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta2/fake/prioritylevelconfiguration.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - flowcontrolv1beta2 "k8s.io/api/flowcontrol/v1beta2" v1beta2 "k8s.io/client-go/applyconfigurations/flowcontrol/v1beta2" typedflowcontrolv1beta2 "k8s.io/client-go/kubernetes/typed/flowcontrol/v1beta2" @@ -28,6 +26,7 @@ import ( typedkcpflowcontrolv1beta2 "github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta2" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // priorityLevelConfigurationClusterClient implements PriorityLevelConfigurationClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta2/flowcontrol_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta2/flowcontrol_client.go index 36f380479fb..fc6a7047971 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta2/flowcontrol_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta2/flowcontrol_client.go @@ -21,14 +21,13 @@ package v1beta2 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiflowcontrolv1beta2 "k8s.io/api/flowcontrol/v1beta2" flowcontrolv1beta2 "k8s.io/client-go/kubernetes/typed/flowcontrol/v1beta2" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type FlowcontrolV1beta2ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta2/flowschema.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta2/flowschema.go index e1cb050fbb2..73db9a34b2b 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta2/flowschema.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta2/flowschema.go @@ -21,13 +21,13 @@ package v1beta2 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiflowcontrolv1beta2 "k8s.io/api/flowcontrol/v1beta2" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" flowcontrolv1beta2 "k8s.io/client-go/kubernetes/typed/flowcontrol/v1beta2" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // FlowSchemasClusterGetter has a method to return a FlowSchemaClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta2/prioritylevelconfiguration.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta2/prioritylevelconfiguration.go index a04691b8c13..8f769a3dd20 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta2/prioritylevelconfiguration.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta2/prioritylevelconfiguration.go @@ -21,13 +21,13 @@ package v1beta2 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiflowcontrolv1beta2 "k8s.io/api/flowcontrol/v1beta2" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" flowcontrolv1beta2 "k8s.io/client-go/kubernetes/typed/flowcontrol/v1beta2" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // PriorityLevelConfigurationsClusterGetter has a method to return a PriorityLevelConfigurationClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta3/fake/flowcontrol_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta3/fake/flowcontrol_client.go index 61ac03fced7..920a787bd89 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta3/fake/flowcontrol_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta3/fake/flowcontrol_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - flowcontrolv1beta3 "k8s.io/client-go/kubernetes/typed/flowcontrol/v1beta3" rest "k8s.io/client-go/rest" kcpflowcontrolv1beta3 "github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta3" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpflowcontrolv1beta3.FlowcontrolV1beta3ClusterInterface = (*FlowcontrolV1beta3ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta3/fake/flowschema.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta3/fake/flowschema.go index 4451111cc95..4ab6e61d310 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta3/fake/flowschema.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta3/fake/flowschema.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - flowcontrolv1beta3 "k8s.io/api/flowcontrol/v1beta3" v1beta3 "k8s.io/client-go/applyconfigurations/flowcontrol/v1beta3" typedflowcontrolv1beta3 "k8s.io/client-go/kubernetes/typed/flowcontrol/v1beta3" @@ -28,6 +26,7 @@ import ( typedkcpflowcontrolv1beta3 "github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta3" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // flowSchemaClusterClient implements FlowSchemaClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta3/fake/prioritylevelconfiguration.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta3/fake/prioritylevelconfiguration.go index 1266a172c38..c01edaa5b33 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta3/fake/prioritylevelconfiguration.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta3/fake/prioritylevelconfiguration.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - flowcontrolv1beta3 "k8s.io/api/flowcontrol/v1beta3" v1beta3 "k8s.io/client-go/applyconfigurations/flowcontrol/v1beta3" typedflowcontrolv1beta3 "k8s.io/client-go/kubernetes/typed/flowcontrol/v1beta3" @@ -28,6 +26,7 @@ import ( typedkcpflowcontrolv1beta3 "github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta3" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // priorityLevelConfigurationClusterClient implements PriorityLevelConfigurationClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta3/flowcontrol_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta3/flowcontrol_client.go index eb9f7ad3262..6ae3d82f951 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta3/flowcontrol_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta3/flowcontrol_client.go @@ -21,14 +21,13 @@ package v1beta3 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiflowcontrolv1beta3 "k8s.io/api/flowcontrol/v1beta3" flowcontrolv1beta3 "k8s.io/client-go/kubernetes/typed/flowcontrol/v1beta3" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type FlowcontrolV1beta3ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta3/flowschema.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta3/flowschema.go index 7fc1963d969..77a9477a52e 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta3/flowschema.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta3/flowschema.go @@ -21,13 +21,13 @@ package v1beta3 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiflowcontrolv1beta3 "k8s.io/api/flowcontrol/v1beta3" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" flowcontrolv1beta3 "k8s.io/client-go/kubernetes/typed/flowcontrol/v1beta3" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // FlowSchemasClusterGetter has a method to return a FlowSchemaClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta3/prioritylevelconfiguration.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta3/prioritylevelconfiguration.go index 2e83ca7ef41..dc99e4b6f8d 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta3/prioritylevelconfiguration.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/flowcontrol/v1beta3/prioritylevelconfiguration.go @@ -21,13 +21,13 @@ package v1beta3 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiflowcontrolv1beta3 "k8s.io/api/flowcontrol/v1beta3" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" flowcontrolv1beta3 "k8s.io/client-go/kubernetes/typed/flowcontrol/v1beta3" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // PriorityLevelConfigurationsClusterGetter has a method to return a PriorityLevelConfigurationClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/fake/ingress.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/fake/ingress.go index 37f8a8f1593..11b0cdb4d8c 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/fake/ingress.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/fake/ingress.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - networkingv1 "k8s.io/api/networking/v1" v1 "k8s.io/client-go/applyconfigurations/networking/v1" typednetworkingv1 "k8s.io/client-go/kubernetes/typed/networking/v1" @@ -28,6 +26,7 @@ import ( typedkcpnetworkingv1 "github.com/kcp-dev/client-go/kubernetes/typed/networking/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // ingressClusterClient implements IngressClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/fake/ingressclass.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/fake/ingressclass.go index 7808bc5beca..dddd3bdd426 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/fake/ingressclass.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/fake/ingressclass.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - networkingv1 "k8s.io/api/networking/v1" v1 "k8s.io/client-go/applyconfigurations/networking/v1" typednetworkingv1 "k8s.io/client-go/kubernetes/typed/networking/v1" @@ -28,6 +26,7 @@ import ( typedkcpnetworkingv1 "github.com/kcp-dev/client-go/kubernetes/typed/networking/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // ingressClassClusterClient implements IngressClassClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/fake/ipaddress.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/fake/ipaddress.go index 4a2ddeb46f5..0ec6904aadd 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/fake/ipaddress.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/fake/ipaddress.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - networkingv1 "k8s.io/api/networking/v1" v1 "k8s.io/client-go/applyconfigurations/networking/v1" typednetworkingv1 "k8s.io/client-go/kubernetes/typed/networking/v1" @@ -28,6 +26,7 @@ import ( typedkcpnetworkingv1 "github.com/kcp-dev/client-go/kubernetes/typed/networking/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // iPAddressClusterClient implements IPAddressClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/fake/networking_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/fake/networking_client.go index 2d6731a6b9f..98f104cb5ab 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/fake/networking_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/fake/networking_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - networkingv1 "k8s.io/client-go/kubernetes/typed/networking/v1" rest "k8s.io/client-go/rest" kcpnetworkingv1 "github.com/kcp-dev/client-go/kubernetes/typed/networking/v1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpnetworkingv1.NetworkingV1ClusterInterface = (*NetworkingV1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/fake/networkpolicy.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/fake/networkpolicy.go index 8699edad746..062133c2d76 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/fake/networkpolicy.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/fake/networkpolicy.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - networkingv1 "k8s.io/api/networking/v1" v1 "k8s.io/client-go/applyconfigurations/networking/v1" typednetworkingv1 "k8s.io/client-go/kubernetes/typed/networking/v1" @@ -28,6 +26,7 @@ import ( typedkcpnetworkingv1 "github.com/kcp-dev/client-go/kubernetes/typed/networking/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // networkPolicyClusterClient implements NetworkPolicyClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/fake/servicecidr.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/fake/servicecidr.go index d12eba47129..1f2baac1a80 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/fake/servicecidr.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/fake/servicecidr.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - networkingv1 "k8s.io/api/networking/v1" v1 "k8s.io/client-go/applyconfigurations/networking/v1" typednetworkingv1 "k8s.io/client-go/kubernetes/typed/networking/v1" @@ -28,6 +26,7 @@ import ( typedkcpnetworkingv1 "github.com/kcp-dev/client-go/kubernetes/typed/networking/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // serviceCIDRClusterClient implements ServiceCIDRClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/ingress.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/ingress.go index 895d9b67595..209fc36b2d8 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/ingress.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/ingress.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - networkingv1 "k8s.io/api/networking/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typednetworkingv1 "k8s.io/client-go/kubernetes/typed/networking/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // IngressesClusterGetter has a method to return a IngressClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/ingressclass.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/ingressclass.go index dd6728d87b8..8c3683965d4 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/ingressclass.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/ingressclass.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apinetworkingv1 "k8s.io/api/networking/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" networkingv1 "k8s.io/client-go/kubernetes/typed/networking/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // IngressClassesClusterGetter has a method to return a IngressClassClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/ipaddress.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/ipaddress.go index 55df287a7b3..d7522030dc4 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/ipaddress.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/ipaddress.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apinetworkingv1 "k8s.io/api/networking/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" networkingv1 "k8s.io/client-go/kubernetes/typed/networking/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // IPAddressesClusterGetter has a method to return a IPAddressClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/networking_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/networking_client.go index 9ae06aa3c85..cb0e2d76180 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/networking_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/networking_client.go @@ -21,14 +21,13 @@ package v1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apinetworkingv1 "k8s.io/api/networking/v1" networkingv1 "k8s.io/client-go/kubernetes/typed/networking/v1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type NetworkingV1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/networkpolicy.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/networkpolicy.go index 42fbb7a7d46..71c403f276f 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/networkpolicy.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/networkpolicy.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - networkingv1 "k8s.io/api/networking/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typednetworkingv1 "k8s.io/client-go/kubernetes/typed/networking/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // NetworkPoliciesClusterGetter has a method to return a NetworkPolicyClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/servicecidr.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/servicecidr.go index 2a7ee67c197..d1da394dc9d 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/servicecidr.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1/servicecidr.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apinetworkingv1 "k8s.io/api/networking/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" networkingv1 "k8s.io/client-go/kubernetes/typed/networking/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ServiceCIDRsClusterGetter has a method to return a ServiceCIDRClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1alpha1/fake/ipaddress.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1alpha1/fake/ipaddress.go index 18f3fac8a84..38e66e98b76 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1alpha1/fake/ipaddress.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1alpha1/fake/ipaddress.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - networkingv1alpha1 "k8s.io/api/networking/v1alpha1" v1alpha1 "k8s.io/client-go/applyconfigurations/networking/v1alpha1" typednetworkingv1alpha1 "k8s.io/client-go/kubernetes/typed/networking/v1alpha1" @@ -28,6 +26,7 @@ import ( typedkcpnetworkingv1alpha1 "github.com/kcp-dev/client-go/kubernetes/typed/networking/v1alpha1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // iPAddressClusterClient implements IPAddressClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1alpha1/fake/networking_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1alpha1/fake/networking_client.go index b7de2028a3c..49f290404e9 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1alpha1/fake/networking_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1alpha1/fake/networking_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - networkingv1alpha1 "k8s.io/client-go/kubernetes/typed/networking/v1alpha1" rest "k8s.io/client-go/rest" kcpnetworkingv1alpha1 "github.com/kcp-dev/client-go/kubernetes/typed/networking/v1alpha1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpnetworkingv1alpha1.NetworkingV1alpha1ClusterInterface = (*NetworkingV1alpha1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1alpha1/fake/servicecidr.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1alpha1/fake/servicecidr.go index 96d4a6e0817..43c1f0abb86 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1alpha1/fake/servicecidr.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1alpha1/fake/servicecidr.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - networkingv1alpha1 "k8s.io/api/networking/v1alpha1" v1alpha1 "k8s.io/client-go/applyconfigurations/networking/v1alpha1" typednetworkingv1alpha1 "k8s.io/client-go/kubernetes/typed/networking/v1alpha1" @@ -28,6 +26,7 @@ import ( typedkcpnetworkingv1alpha1 "github.com/kcp-dev/client-go/kubernetes/typed/networking/v1alpha1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // serviceCIDRClusterClient implements ServiceCIDRClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1alpha1/ipaddress.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1alpha1/ipaddress.go index 9dbf9723cf9..9fb81983899 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1alpha1/ipaddress.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1alpha1/ipaddress.go @@ -21,13 +21,13 @@ package v1alpha1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apinetworkingv1alpha1 "k8s.io/api/networking/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" networkingv1alpha1 "k8s.io/client-go/kubernetes/typed/networking/v1alpha1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // IPAddressesClusterGetter has a method to return a IPAddressClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1alpha1/networking_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1alpha1/networking_client.go index f21b8e2a0d7..f33aec75a41 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1alpha1/networking_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1alpha1/networking_client.go @@ -21,14 +21,13 @@ package v1alpha1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apinetworkingv1alpha1 "k8s.io/api/networking/v1alpha1" networkingv1alpha1 "k8s.io/client-go/kubernetes/typed/networking/v1alpha1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type NetworkingV1alpha1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1alpha1/servicecidr.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1alpha1/servicecidr.go index 100dd6ff8ef..80ad0abf532 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1alpha1/servicecidr.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1alpha1/servicecidr.go @@ -21,13 +21,13 @@ package v1alpha1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apinetworkingv1alpha1 "k8s.io/api/networking/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" networkingv1alpha1 "k8s.io/client-go/kubernetes/typed/networking/v1alpha1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ServiceCIDRsClusterGetter has a method to return a ServiceCIDRClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1/fake/ingress.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1/fake/ingress.go index 19249905112..eafea60c9ed 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1/fake/ingress.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1/fake/ingress.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - networkingv1beta1 "k8s.io/api/networking/v1beta1" v1beta1 "k8s.io/client-go/applyconfigurations/networking/v1beta1" typednetworkingv1beta1 "k8s.io/client-go/kubernetes/typed/networking/v1beta1" @@ -28,6 +26,7 @@ import ( typedkcpnetworkingv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // ingressClusterClient implements IngressClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1/fake/ingressclass.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1/fake/ingressclass.go index f13f08739dc..7f8dc6403d4 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1/fake/ingressclass.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1/fake/ingressclass.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - networkingv1beta1 "k8s.io/api/networking/v1beta1" v1beta1 "k8s.io/client-go/applyconfigurations/networking/v1beta1" typednetworkingv1beta1 "k8s.io/client-go/kubernetes/typed/networking/v1beta1" @@ -28,6 +26,7 @@ import ( typedkcpnetworkingv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // ingressClassClusterClient implements IngressClassClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1/fake/ipaddress.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1/fake/ipaddress.go index 2b0bddbe3c3..42d78648d1c 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1/fake/ipaddress.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1/fake/ipaddress.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - networkingv1beta1 "k8s.io/api/networking/v1beta1" v1beta1 "k8s.io/client-go/applyconfigurations/networking/v1beta1" typednetworkingv1beta1 "k8s.io/client-go/kubernetes/typed/networking/v1beta1" @@ -28,6 +26,7 @@ import ( typedkcpnetworkingv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // iPAddressClusterClient implements IPAddressClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1/fake/networking_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1/fake/networking_client.go index 20c53d1dff8..567acce1446 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1/fake/networking_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1/fake/networking_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - networkingv1beta1 "k8s.io/client-go/kubernetes/typed/networking/v1beta1" rest "k8s.io/client-go/rest" kcpnetworkingv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpnetworkingv1beta1.NetworkingV1beta1ClusterInterface = (*NetworkingV1beta1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1/fake/servicecidr.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1/fake/servicecidr.go index 319dab987b7..17c7cf711fc 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1/fake/servicecidr.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1/fake/servicecidr.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - networkingv1beta1 "k8s.io/api/networking/v1beta1" v1beta1 "k8s.io/client-go/applyconfigurations/networking/v1beta1" typednetworkingv1beta1 "k8s.io/client-go/kubernetes/typed/networking/v1beta1" @@ -28,6 +26,7 @@ import ( typedkcpnetworkingv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // serviceCIDRClusterClient implements ServiceCIDRClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1/ingress.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1/ingress.go index 0bea85ab0bb..e13d02bbe3b 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1/ingress.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1/ingress.go @@ -21,13 +21,13 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - networkingv1beta1 "k8s.io/api/networking/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typednetworkingv1beta1 "k8s.io/client-go/kubernetes/typed/networking/v1beta1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // IngressesClusterGetter has a method to return a IngressClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1/ingressclass.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1/ingressclass.go index b46ea854d5e..08b34984d5d 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1/ingressclass.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1/ingressclass.go @@ -21,13 +21,13 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apinetworkingv1beta1 "k8s.io/api/networking/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" networkingv1beta1 "k8s.io/client-go/kubernetes/typed/networking/v1beta1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // IngressClassesClusterGetter has a method to return a IngressClassClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1/ipaddress.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1/ipaddress.go index 1ec83303713..e9c219ebcec 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1/ipaddress.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1/ipaddress.go @@ -21,13 +21,13 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apinetworkingv1beta1 "k8s.io/api/networking/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" networkingv1beta1 "k8s.io/client-go/kubernetes/typed/networking/v1beta1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // IPAddressesClusterGetter has a method to return a IPAddressClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1/networking_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1/networking_client.go index 2064c9b061e..a700ebde711 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1/networking_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1/networking_client.go @@ -21,14 +21,13 @@ package v1beta1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apinetworkingv1beta1 "k8s.io/api/networking/v1beta1" networkingv1beta1 "k8s.io/client-go/kubernetes/typed/networking/v1beta1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type NetworkingV1beta1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1/servicecidr.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1/servicecidr.go index 7519898df49..7a3b16a7d64 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1/servicecidr.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/networking/v1beta1/servicecidr.go @@ -21,13 +21,13 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apinetworkingv1beta1 "k8s.io/api/networking/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" networkingv1beta1 "k8s.io/client-go/kubernetes/typed/networking/v1beta1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ServiceCIDRsClusterGetter has a method to return a ServiceCIDRClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1/fake/node_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1/fake/node_client.go index 950b40c926c..cc34aabcdde 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1/fake/node_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1/fake/node_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - nodev1 "k8s.io/client-go/kubernetes/typed/node/v1" rest "k8s.io/client-go/rest" kcpnodev1 "github.com/kcp-dev/client-go/kubernetes/typed/node/v1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpnodev1.NodeV1ClusterInterface = (*NodeV1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1/fake/runtimeclass.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1/fake/runtimeclass.go index 4f552e6ff93..bb47d8a8ead 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1/fake/runtimeclass.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1/fake/runtimeclass.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - nodev1 "k8s.io/api/node/v1" v1 "k8s.io/client-go/applyconfigurations/node/v1" typednodev1 "k8s.io/client-go/kubernetes/typed/node/v1" @@ -28,6 +26,7 @@ import ( typedkcpnodev1 "github.com/kcp-dev/client-go/kubernetes/typed/node/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // runtimeClassClusterClient implements RuntimeClassClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1/node_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1/node_client.go index 581434a0c7c..d7f8ebe132b 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1/node_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1/node_client.go @@ -21,14 +21,13 @@ package v1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apinodev1 "k8s.io/api/node/v1" nodev1 "k8s.io/client-go/kubernetes/typed/node/v1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type NodeV1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1/runtimeclass.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1/runtimeclass.go index 3eacc84954e..44a8ff9e2a3 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1/runtimeclass.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1/runtimeclass.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apinodev1 "k8s.io/api/node/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" nodev1 "k8s.io/client-go/kubernetes/typed/node/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // RuntimeClassesClusterGetter has a method to return a RuntimeClassClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1alpha1/fake/node_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1alpha1/fake/node_client.go index 57b6ed1c3c4..07277f3849d 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1alpha1/fake/node_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1alpha1/fake/node_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - nodev1alpha1 "k8s.io/client-go/kubernetes/typed/node/v1alpha1" rest "k8s.io/client-go/rest" kcpnodev1alpha1 "github.com/kcp-dev/client-go/kubernetes/typed/node/v1alpha1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpnodev1alpha1.NodeV1alpha1ClusterInterface = (*NodeV1alpha1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1alpha1/fake/runtimeclass.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1alpha1/fake/runtimeclass.go index 7d22736183a..ab2e2ffce9f 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1alpha1/fake/runtimeclass.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1alpha1/fake/runtimeclass.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - nodev1alpha1 "k8s.io/api/node/v1alpha1" v1alpha1 "k8s.io/client-go/applyconfigurations/node/v1alpha1" typednodev1alpha1 "k8s.io/client-go/kubernetes/typed/node/v1alpha1" @@ -28,6 +26,7 @@ import ( typedkcpnodev1alpha1 "github.com/kcp-dev/client-go/kubernetes/typed/node/v1alpha1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // runtimeClassClusterClient implements RuntimeClassClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1alpha1/node_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1alpha1/node_client.go index 643447c752c..4578e634d98 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1alpha1/node_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1alpha1/node_client.go @@ -21,14 +21,13 @@ package v1alpha1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apinodev1alpha1 "k8s.io/api/node/v1alpha1" nodev1alpha1 "k8s.io/client-go/kubernetes/typed/node/v1alpha1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type NodeV1alpha1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1alpha1/runtimeclass.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1alpha1/runtimeclass.go index c06e1d27d01..80008af2eca 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1alpha1/runtimeclass.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1alpha1/runtimeclass.go @@ -21,13 +21,13 @@ package v1alpha1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apinodev1alpha1 "k8s.io/api/node/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" nodev1alpha1 "k8s.io/client-go/kubernetes/typed/node/v1alpha1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // RuntimeClassesClusterGetter has a method to return a RuntimeClassClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1beta1/fake/node_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1beta1/fake/node_client.go index 07a35456fa3..ec6eeab4637 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1beta1/fake/node_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1beta1/fake/node_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - nodev1beta1 "k8s.io/client-go/kubernetes/typed/node/v1beta1" rest "k8s.io/client-go/rest" kcpnodev1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/node/v1beta1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpnodev1beta1.NodeV1beta1ClusterInterface = (*NodeV1beta1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1beta1/fake/runtimeclass.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1beta1/fake/runtimeclass.go index f642b26846b..050ccd9511b 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1beta1/fake/runtimeclass.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1beta1/fake/runtimeclass.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - nodev1beta1 "k8s.io/api/node/v1beta1" v1beta1 "k8s.io/client-go/applyconfigurations/node/v1beta1" typednodev1beta1 "k8s.io/client-go/kubernetes/typed/node/v1beta1" @@ -28,6 +26,7 @@ import ( typedkcpnodev1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/node/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // runtimeClassClusterClient implements RuntimeClassClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1beta1/node_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1beta1/node_client.go index 90df45e012f..2c9cab2812b 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1beta1/node_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1beta1/node_client.go @@ -21,14 +21,13 @@ package v1beta1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apinodev1beta1 "k8s.io/api/node/v1beta1" nodev1beta1 "k8s.io/client-go/kubernetes/typed/node/v1beta1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type NodeV1beta1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1beta1/runtimeclass.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1beta1/runtimeclass.go index 1c1a1221cd8..15a279454c3 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1beta1/runtimeclass.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/node/v1beta1/runtimeclass.go @@ -21,13 +21,13 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apinodev1beta1 "k8s.io/api/node/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" nodev1beta1 "k8s.io/client-go/kubernetes/typed/node/v1beta1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // RuntimeClassesClusterGetter has a method to return a RuntimeClassClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1/eviction.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1/eviction.go index afe87ff23f6..0123eaf2546 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1/eviction.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1/eviction.go @@ -19,10 +19,10 @@ limitations under the License. package v1 import ( + policyv1 "k8s.io/client-go/kubernetes/typed/policy/v1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" "github.com/kcp-dev/logicalcluster/v3" - - policyv1 "k8s.io/client-go/kubernetes/typed/policy/v1" ) // EvictionsClusterGetter has a method to return a EvictionClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1/fake/eviction.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1/fake/eviction.go index cdb85134d81..637cfdaba9a 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1/fake/eviction.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1/fake/eviction.go @@ -19,14 +19,13 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - policyv1 "k8s.io/api/policy/v1" typedpolicyv1 "k8s.io/client-go/kubernetes/typed/policy/v1" typedkcppolicyv1 "github.com/kcp-dev/client-go/kubernetes/typed/policy/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // evictionClusterClient implements EvictionClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1/fake/poddisruptionbudget.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1/fake/poddisruptionbudget.go index 98361d57eb5..ce988936aa3 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1/fake/poddisruptionbudget.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1/fake/poddisruptionbudget.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - policyv1 "k8s.io/api/policy/v1" v1 "k8s.io/client-go/applyconfigurations/policy/v1" typedpolicyv1 "k8s.io/client-go/kubernetes/typed/policy/v1" @@ -28,6 +26,7 @@ import ( typedkcppolicyv1 "github.com/kcp-dev/client-go/kubernetes/typed/policy/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // podDisruptionBudgetClusterClient implements PodDisruptionBudgetClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1/fake/policy_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1/fake/policy_client.go index be75b40ca72..9f91275a3a7 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1/fake/policy_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1/fake/policy_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - policyv1 "k8s.io/client-go/kubernetes/typed/policy/v1" rest "k8s.io/client-go/rest" kcppolicyv1 "github.com/kcp-dev/client-go/kubernetes/typed/policy/v1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcppolicyv1.PolicyV1ClusterInterface = (*PolicyV1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1/poddisruptionbudget.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1/poddisruptionbudget.go index d9cde3c93a7..c442f0389b2 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1/poddisruptionbudget.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1/poddisruptionbudget.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - policyv1 "k8s.io/api/policy/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedpolicyv1 "k8s.io/client-go/kubernetes/typed/policy/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // PodDisruptionBudgetsClusterGetter has a method to return a PodDisruptionBudgetClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1/policy_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1/policy_client.go index 5813bab4527..1b5a3d035e5 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1/policy_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1/policy_client.go @@ -21,14 +21,13 @@ package v1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apipolicyv1 "k8s.io/api/policy/v1" policyv1 "k8s.io/client-go/kubernetes/typed/policy/v1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type PolicyV1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1beta1/eviction.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1beta1/eviction.go index c70656d0ba8..f184e965b46 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1beta1/eviction.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1beta1/eviction.go @@ -19,10 +19,10 @@ limitations under the License. package v1beta1 import ( + policyv1beta1 "k8s.io/client-go/kubernetes/typed/policy/v1beta1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" "github.com/kcp-dev/logicalcluster/v3" - - policyv1beta1 "k8s.io/client-go/kubernetes/typed/policy/v1beta1" ) // EvictionsClusterGetter has a method to return a EvictionClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1beta1/fake/eviction.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1beta1/fake/eviction.go index 5ececa758ea..de6d34800d2 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1beta1/fake/eviction.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1beta1/fake/eviction.go @@ -19,14 +19,13 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - policyv1beta1 "k8s.io/api/policy/v1beta1" typedpolicyv1beta1 "k8s.io/client-go/kubernetes/typed/policy/v1beta1" typedkcppolicyv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/policy/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // evictionClusterClient implements EvictionClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1beta1/fake/poddisruptionbudget.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1beta1/fake/poddisruptionbudget.go index c9763dc2aa8..7a8e7a7f899 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1beta1/fake/poddisruptionbudget.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1beta1/fake/poddisruptionbudget.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - policyv1beta1 "k8s.io/api/policy/v1beta1" v1beta1 "k8s.io/client-go/applyconfigurations/policy/v1beta1" typedpolicyv1beta1 "k8s.io/client-go/kubernetes/typed/policy/v1beta1" @@ -28,6 +26,7 @@ import ( typedkcppolicyv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/policy/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // podDisruptionBudgetClusterClient implements PodDisruptionBudgetClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1beta1/fake/policy_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1beta1/fake/policy_client.go index 275b7d0f74c..f729352f4fa 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1beta1/fake/policy_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1beta1/fake/policy_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - policyv1beta1 "k8s.io/client-go/kubernetes/typed/policy/v1beta1" rest "k8s.io/client-go/rest" kcppolicyv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/policy/v1beta1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcppolicyv1beta1.PolicyV1beta1ClusterInterface = (*PolicyV1beta1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1beta1/poddisruptionbudget.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1beta1/poddisruptionbudget.go index 4ea51d783c4..411a36a6d23 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1beta1/poddisruptionbudget.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1beta1/poddisruptionbudget.go @@ -21,13 +21,13 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - policyv1beta1 "k8s.io/api/policy/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedpolicyv1beta1 "k8s.io/client-go/kubernetes/typed/policy/v1beta1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // PodDisruptionBudgetsClusterGetter has a method to return a PodDisruptionBudgetClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1beta1/policy_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1beta1/policy_client.go index 349a3a17ff0..82695cee2fc 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1beta1/policy_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/policy/v1beta1/policy_client.go @@ -21,14 +21,13 @@ package v1beta1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apipolicyv1beta1 "k8s.io/api/policy/v1beta1" policyv1beta1 "k8s.io/client-go/kubernetes/typed/policy/v1beta1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type PolicyV1beta1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1/clusterrole.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1/clusterrole.go index d3eeb402fa4..e33cef2789d 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1/clusterrole.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1/clusterrole.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apirbacv1 "k8s.io/api/rbac/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" rbacv1 "k8s.io/client-go/kubernetes/typed/rbac/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterRolesClusterGetter has a method to return a ClusterRoleClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1/clusterrolebinding.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1/clusterrolebinding.go index a255d893a2a..3cceb5d2182 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1/clusterrolebinding.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1/clusterrolebinding.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apirbacv1 "k8s.io/api/rbac/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" rbacv1 "k8s.io/client-go/kubernetes/typed/rbac/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterRoleBindingsClusterGetter has a method to return a ClusterRoleBindingClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1/fake/clusterrole.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1/fake/clusterrole.go index 3b36d3732df..3e98289d408 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1/fake/clusterrole.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1/fake/clusterrole.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - rbacv1 "k8s.io/api/rbac/v1" v1 "k8s.io/client-go/applyconfigurations/rbac/v1" typedrbacv1 "k8s.io/client-go/kubernetes/typed/rbac/v1" @@ -28,6 +26,7 @@ import ( typedkcprbacv1 "github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // clusterRoleClusterClient implements ClusterRoleClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1/fake/clusterrolebinding.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1/fake/clusterrolebinding.go index d43fd7f334a..dc08c5d5532 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1/fake/clusterrolebinding.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1/fake/clusterrolebinding.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - rbacv1 "k8s.io/api/rbac/v1" v1 "k8s.io/client-go/applyconfigurations/rbac/v1" typedrbacv1 "k8s.io/client-go/kubernetes/typed/rbac/v1" @@ -28,6 +26,7 @@ import ( typedkcprbacv1 "github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // clusterRoleBindingClusterClient implements ClusterRoleBindingClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1/fake/rbac_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1/fake/rbac_client.go index 47743160f3e..819a1829883 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1/fake/rbac_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1/fake/rbac_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - rbacv1 "k8s.io/client-go/kubernetes/typed/rbac/v1" rest "k8s.io/client-go/rest" kcprbacv1 "github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcprbacv1.RbacV1ClusterInterface = (*RbacV1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1/fake/role.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1/fake/role.go index 11471dc0664..bb585c17c24 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1/fake/role.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1/fake/role.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - rbacv1 "k8s.io/api/rbac/v1" v1 "k8s.io/client-go/applyconfigurations/rbac/v1" typedrbacv1 "k8s.io/client-go/kubernetes/typed/rbac/v1" @@ -28,6 +26,7 @@ import ( typedkcprbacv1 "github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // roleClusterClient implements RoleClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1/fake/rolebinding.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1/fake/rolebinding.go index bba12c15371..1c1cc00e386 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1/fake/rolebinding.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1/fake/rolebinding.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - rbacv1 "k8s.io/api/rbac/v1" v1 "k8s.io/client-go/applyconfigurations/rbac/v1" typedrbacv1 "k8s.io/client-go/kubernetes/typed/rbac/v1" @@ -28,6 +26,7 @@ import ( typedkcprbacv1 "github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // roleBindingClusterClient implements RoleBindingClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1/rbac_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1/rbac_client.go index 3efa001b849..96dec5256c4 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1/rbac_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1/rbac_client.go @@ -21,14 +21,13 @@ package v1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apirbacv1 "k8s.io/api/rbac/v1" rbacv1 "k8s.io/client-go/kubernetes/typed/rbac/v1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type RbacV1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1/role.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1/role.go index 6b960c2e55b..7658900b279 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1/role.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1/role.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - rbacv1 "k8s.io/api/rbac/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedrbacv1 "k8s.io/client-go/kubernetes/typed/rbac/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // RolesClusterGetter has a method to return a RoleClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1/rolebinding.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1/rolebinding.go index fe1c8c146b4..8af3eca4aa4 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1/rolebinding.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1/rolebinding.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - rbacv1 "k8s.io/api/rbac/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedrbacv1 "k8s.io/client-go/kubernetes/typed/rbac/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // RoleBindingsClusterGetter has a method to return a RoleBindingClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1/clusterrole.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1/clusterrole.go index ceb5e271820..61a4106a8c8 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1/clusterrole.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1/clusterrole.go @@ -21,13 +21,13 @@ package v1alpha1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apirbacv1alpha1 "k8s.io/api/rbac/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" rbacv1alpha1 "k8s.io/client-go/kubernetes/typed/rbac/v1alpha1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterRolesClusterGetter has a method to return a ClusterRoleClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1/clusterrolebinding.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1/clusterrolebinding.go index d5a18bdc2ac..cdea18ca7a7 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1/clusterrolebinding.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1/clusterrolebinding.go @@ -21,13 +21,13 @@ package v1alpha1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apirbacv1alpha1 "k8s.io/api/rbac/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" rbacv1alpha1 "k8s.io/client-go/kubernetes/typed/rbac/v1alpha1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterRoleBindingsClusterGetter has a method to return a ClusterRoleBindingClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1/fake/clusterrole.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1/fake/clusterrole.go index 2cca2f2f0e5..33e5a1c7b95 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1/fake/clusterrole.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1/fake/clusterrole.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - rbacv1alpha1 "k8s.io/api/rbac/v1alpha1" v1alpha1 "k8s.io/client-go/applyconfigurations/rbac/v1alpha1" typedrbacv1alpha1 "k8s.io/client-go/kubernetes/typed/rbac/v1alpha1" @@ -28,6 +26,7 @@ import ( typedkcprbacv1alpha1 "github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // clusterRoleClusterClient implements ClusterRoleClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1/fake/clusterrolebinding.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1/fake/clusterrolebinding.go index 99c12c1ff81..7808dd7cad4 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1/fake/clusterrolebinding.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1/fake/clusterrolebinding.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - rbacv1alpha1 "k8s.io/api/rbac/v1alpha1" v1alpha1 "k8s.io/client-go/applyconfigurations/rbac/v1alpha1" typedrbacv1alpha1 "k8s.io/client-go/kubernetes/typed/rbac/v1alpha1" @@ -28,6 +26,7 @@ import ( typedkcprbacv1alpha1 "github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // clusterRoleBindingClusterClient implements ClusterRoleBindingClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1/fake/rbac_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1/fake/rbac_client.go index 8b3e7025b5c..afcf0ce5166 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1/fake/rbac_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1/fake/rbac_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - rbacv1alpha1 "k8s.io/client-go/kubernetes/typed/rbac/v1alpha1" rest "k8s.io/client-go/rest" kcprbacv1alpha1 "github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcprbacv1alpha1.RbacV1alpha1ClusterInterface = (*RbacV1alpha1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1/fake/role.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1/fake/role.go index 251e3304bfd..2e38c0c21e8 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1/fake/role.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1/fake/role.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - rbacv1alpha1 "k8s.io/api/rbac/v1alpha1" v1alpha1 "k8s.io/client-go/applyconfigurations/rbac/v1alpha1" typedrbacv1alpha1 "k8s.io/client-go/kubernetes/typed/rbac/v1alpha1" @@ -28,6 +26,7 @@ import ( typedkcprbacv1alpha1 "github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // roleClusterClient implements RoleClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1/fake/rolebinding.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1/fake/rolebinding.go index 3c60c85e79c..3fe8527cdf5 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1/fake/rolebinding.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1/fake/rolebinding.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - rbacv1alpha1 "k8s.io/api/rbac/v1alpha1" v1alpha1 "k8s.io/client-go/applyconfigurations/rbac/v1alpha1" typedrbacv1alpha1 "k8s.io/client-go/kubernetes/typed/rbac/v1alpha1" @@ -28,6 +26,7 @@ import ( typedkcprbacv1alpha1 "github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // roleBindingClusterClient implements RoleBindingClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1/rbac_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1/rbac_client.go index e40d9350ca6..bad5295ac54 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1/rbac_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1/rbac_client.go @@ -21,14 +21,13 @@ package v1alpha1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apirbacv1alpha1 "k8s.io/api/rbac/v1alpha1" rbacv1alpha1 "k8s.io/client-go/kubernetes/typed/rbac/v1alpha1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type RbacV1alpha1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1/role.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1/role.go index 1fd1dab06f8..8ea98908645 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1/role.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1/role.go @@ -21,13 +21,13 @@ package v1alpha1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - rbacv1alpha1 "k8s.io/api/rbac/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedrbacv1alpha1 "k8s.io/client-go/kubernetes/typed/rbac/v1alpha1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // RolesClusterGetter has a method to return a RoleClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1/rolebinding.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1/rolebinding.go index 5ebf17cfbf7..3fd129e1352 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1/rolebinding.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1alpha1/rolebinding.go @@ -21,13 +21,13 @@ package v1alpha1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - rbacv1alpha1 "k8s.io/api/rbac/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedrbacv1alpha1 "k8s.io/client-go/kubernetes/typed/rbac/v1alpha1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // RoleBindingsClusterGetter has a method to return a RoleBindingClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1/clusterrole.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1/clusterrole.go index e4cc9f236ac..92f6a60b02b 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1/clusterrole.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1/clusterrole.go @@ -21,13 +21,13 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apirbacv1beta1 "k8s.io/api/rbac/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" rbacv1beta1 "k8s.io/client-go/kubernetes/typed/rbac/v1beta1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterRolesClusterGetter has a method to return a ClusterRoleClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1/clusterrolebinding.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1/clusterrolebinding.go index 877024ac4b5..a9088705937 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1/clusterrolebinding.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1/clusterrolebinding.go @@ -21,13 +21,13 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apirbacv1beta1 "k8s.io/api/rbac/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" rbacv1beta1 "k8s.io/client-go/kubernetes/typed/rbac/v1beta1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterRoleBindingsClusterGetter has a method to return a ClusterRoleBindingClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1/fake/clusterrole.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1/fake/clusterrole.go index 58cfefc8982..af7e5daa887 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1/fake/clusterrole.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1/fake/clusterrole.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - rbacv1beta1 "k8s.io/api/rbac/v1beta1" v1beta1 "k8s.io/client-go/applyconfigurations/rbac/v1beta1" typedrbacv1beta1 "k8s.io/client-go/kubernetes/typed/rbac/v1beta1" @@ -28,6 +26,7 @@ import ( typedkcprbacv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // clusterRoleClusterClient implements ClusterRoleClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1/fake/clusterrolebinding.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1/fake/clusterrolebinding.go index e5f43f7ab98..91db08e168f 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1/fake/clusterrolebinding.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1/fake/clusterrolebinding.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - rbacv1beta1 "k8s.io/api/rbac/v1beta1" v1beta1 "k8s.io/client-go/applyconfigurations/rbac/v1beta1" typedrbacv1beta1 "k8s.io/client-go/kubernetes/typed/rbac/v1beta1" @@ -28,6 +26,7 @@ import ( typedkcprbacv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // clusterRoleBindingClusterClient implements ClusterRoleBindingClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1/fake/rbac_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1/fake/rbac_client.go index d480039f892..ffc4f22f1f9 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1/fake/rbac_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1/fake/rbac_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - rbacv1beta1 "k8s.io/client-go/kubernetes/typed/rbac/v1beta1" rest "k8s.io/client-go/rest" kcprbacv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcprbacv1beta1.RbacV1beta1ClusterInterface = (*RbacV1beta1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1/fake/role.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1/fake/role.go index f0ad67c837a..f7a31f007fc 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1/fake/role.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1/fake/role.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - rbacv1beta1 "k8s.io/api/rbac/v1beta1" v1beta1 "k8s.io/client-go/applyconfigurations/rbac/v1beta1" typedrbacv1beta1 "k8s.io/client-go/kubernetes/typed/rbac/v1beta1" @@ -28,6 +26,7 @@ import ( typedkcprbacv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // roleClusterClient implements RoleClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1/fake/rolebinding.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1/fake/rolebinding.go index e93432637c4..46aabd616cb 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1/fake/rolebinding.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1/fake/rolebinding.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - rbacv1beta1 "k8s.io/api/rbac/v1beta1" v1beta1 "k8s.io/client-go/applyconfigurations/rbac/v1beta1" typedrbacv1beta1 "k8s.io/client-go/kubernetes/typed/rbac/v1beta1" @@ -28,6 +26,7 @@ import ( typedkcprbacv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // roleBindingClusterClient implements RoleBindingClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1/rbac_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1/rbac_client.go index e0fa1d41631..258d6fe0bbe 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1/rbac_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1/rbac_client.go @@ -21,14 +21,13 @@ package v1beta1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apirbacv1beta1 "k8s.io/api/rbac/v1beta1" rbacv1beta1 "k8s.io/client-go/kubernetes/typed/rbac/v1beta1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type RbacV1beta1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1/role.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1/role.go index 9137ebc1e23..642a2472760 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1/role.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1/role.go @@ -21,13 +21,13 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - rbacv1beta1 "k8s.io/api/rbac/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedrbacv1beta1 "k8s.io/client-go/kubernetes/typed/rbac/v1beta1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // RolesClusterGetter has a method to return a RoleClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1/rolebinding.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1/rolebinding.go index 5fa01d6932c..8d3e3085fe3 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1/rolebinding.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/rbac/v1beta1/rolebinding.go @@ -21,13 +21,13 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - rbacv1beta1 "k8s.io/api/rbac/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedrbacv1beta1 "k8s.io/client-go/kubernetes/typed/rbac/v1beta1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // RoleBindingsClusterGetter has a method to return a RoleBindingClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/deviceclass.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/deviceclass.go index f00de888ac3..339e379cfb5 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/deviceclass.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/deviceclass.go @@ -21,13 +21,13 @@ package v1alpha3 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiresourcev1alpha3 "k8s.io/api/resource/v1alpha3" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" resourcev1alpha3 "k8s.io/client-go/kubernetes/typed/resource/v1alpha3" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // DeviceClassesClusterGetter has a method to return a DeviceClassClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/devicetaintrule.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/devicetaintrule.go index 3e3c41d0f34..f5b18638a18 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/devicetaintrule.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/devicetaintrule.go @@ -21,13 +21,13 @@ package v1alpha3 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiresourcev1alpha3 "k8s.io/api/resource/v1alpha3" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" resourcev1alpha3 "k8s.io/client-go/kubernetes/typed/resource/v1alpha3" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // DeviceTaintRulesClusterGetter has a method to return a DeviceTaintRuleClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/fake/deviceclass.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/fake/deviceclass.go index 8d52d9bbae4..ab0c771cfee 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/fake/deviceclass.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/fake/deviceclass.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - resourcev1alpha3 "k8s.io/api/resource/v1alpha3" v1alpha3 "k8s.io/client-go/applyconfigurations/resource/v1alpha3" typedresourcev1alpha3 "k8s.io/client-go/kubernetes/typed/resource/v1alpha3" @@ -28,6 +26,7 @@ import ( typedkcpresourcev1alpha3 "github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // deviceClassClusterClient implements DeviceClassClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/fake/devicetaintrule.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/fake/devicetaintrule.go index e0ffd7223a7..05ef9c7f14b 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/fake/devicetaintrule.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/fake/devicetaintrule.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - resourcev1alpha3 "k8s.io/api/resource/v1alpha3" v1alpha3 "k8s.io/client-go/applyconfigurations/resource/v1alpha3" typedresourcev1alpha3 "k8s.io/client-go/kubernetes/typed/resource/v1alpha3" @@ -28,6 +26,7 @@ import ( typedkcpresourcev1alpha3 "github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // deviceTaintRuleClusterClient implements DeviceTaintRuleClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/fake/resource_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/fake/resource_client.go index f1cbb7717ce..bef95d07622 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/fake/resource_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/fake/resource_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - resourcev1alpha3 "k8s.io/client-go/kubernetes/typed/resource/v1alpha3" rest "k8s.io/client-go/rest" kcpresourcev1alpha3 "github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpresourcev1alpha3.ResourceV1alpha3ClusterInterface = (*ResourceV1alpha3ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/fake/resourceclaim.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/fake/resourceclaim.go index 4ef079d9804..5f6895e1ebe 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/fake/resourceclaim.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/fake/resourceclaim.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - resourcev1alpha3 "k8s.io/api/resource/v1alpha3" v1alpha3 "k8s.io/client-go/applyconfigurations/resource/v1alpha3" typedresourcev1alpha3 "k8s.io/client-go/kubernetes/typed/resource/v1alpha3" @@ -28,6 +26,7 @@ import ( typedkcpresourcev1alpha3 "github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // resourceClaimClusterClient implements ResourceClaimClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/fake/resourceclaimtemplate.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/fake/resourceclaimtemplate.go index aebfa6b4f0b..ecfc3673293 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/fake/resourceclaimtemplate.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/fake/resourceclaimtemplate.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - resourcev1alpha3 "k8s.io/api/resource/v1alpha3" v1alpha3 "k8s.io/client-go/applyconfigurations/resource/v1alpha3" typedresourcev1alpha3 "k8s.io/client-go/kubernetes/typed/resource/v1alpha3" @@ -28,6 +26,7 @@ import ( typedkcpresourcev1alpha3 "github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // resourceClaimTemplateClusterClient implements ResourceClaimTemplateClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/fake/resourceslice.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/fake/resourceslice.go index 7f69657a7d8..b89fc3f4a79 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/fake/resourceslice.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/fake/resourceslice.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - resourcev1alpha3 "k8s.io/api/resource/v1alpha3" v1alpha3 "k8s.io/client-go/applyconfigurations/resource/v1alpha3" typedresourcev1alpha3 "k8s.io/client-go/kubernetes/typed/resource/v1alpha3" @@ -28,6 +26,7 @@ import ( typedkcpresourcev1alpha3 "github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // resourceSliceClusterClient implements ResourceSliceClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/resource_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/resource_client.go index 013b1b1530e..57af3a5ffff 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/resource_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/resource_client.go @@ -21,14 +21,13 @@ package v1alpha3 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiresourcev1alpha3 "k8s.io/api/resource/v1alpha3" resourcev1alpha3 "k8s.io/client-go/kubernetes/typed/resource/v1alpha3" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type ResourceV1alpha3ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/resourceclaim.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/resourceclaim.go index 22ca0b99016..3be00cf53e4 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/resourceclaim.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/resourceclaim.go @@ -21,13 +21,13 @@ package v1alpha3 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - resourcev1alpha3 "k8s.io/api/resource/v1alpha3" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedresourcev1alpha3 "k8s.io/client-go/kubernetes/typed/resource/v1alpha3" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ResourceClaimsClusterGetter has a method to return a ResourceClaimClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/resourceclaimtemplate.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/resourceclaimtemplate.go index e9becb5bf56..307dea8f30b 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/resourceclaimtemplate.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/resourceclaimtemplate.go @@ -21,13 +21,13 @@ package v1alpha3 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - resourcev1alpha3 "k8s.io/api/resource/v1alpha3" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedresourcev1alpha3 "k8s.io/client-go/kubernetes/typed/resource/v1alpha3" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ResourceClaimTemplatesClusterGetter has a method to return a ResourceClaimTemplateClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/resourceslice.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/resourceslice.go index d9e43254e76..7d9cb6e2893 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/resourceslice.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1alpha3/resourceslice.go @@ -21,13 +21,13 @@ package v1alpha3 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiresourcev1alpha3 "k8s.io/api/resource/v1alpha3" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" resourcev1alpha3 "k8s.io/client-go/kubernetes/typed/resource/v1alpha3" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ResourceSlicesClusterGetter has a method to return a ResourceSliceClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1/deviceclass.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1/deviceclass.go index e22c14fc6e9..a3dd85509c4 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1/deviceclass.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1/deviceclass.go @@ -21,13 +21,13 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiresourcev1beta1 "k8s.io/api/resource/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" resourcev1beta1 "k8s.io/client-go/kubernetes/typed/resource/v1beta1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // DeviceClassesClusterGetter has a method to return a DeviceClassClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1/fake/deviceclass.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1/fake/deviceclass.go index 68fac50bb71..042785d2eb7 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1/fake/deviceclass.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1/fake/deviceclass.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - resourcev1beta1 "k8s.io/api/resource/v1beta1" v1beta1 "k8s.io/client-go/applyconfigurations/resource/v1beta1" typedresourcev1beta1 "k8s.io/client-go/kubernetes/typed/resource/v1beta1" @@ -28,6 +26,7 @@ import ( typedkcpresourcev1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // deviceClassClusterClient implements DeviceClassClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1/fake/resource_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1/fake/resource_client.go index 1f18a0fc199..f3bb2c823b3 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1/fake/resource_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1/fake/resource_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - resourcev1beta1 "k8s.io/client-go/kubernetes/typed/resource/v1beta1" rest "k8s.io/client-go/rest" kcpresourcev1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpresourcev1beta1.ResourceV1beta1ClusterInterface = (*ResourceV1beta1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1/fake/resourceclaim.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1/fake/resourceclaim.go index 4d62996a1c7..a7971779d77 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1/fake/resourceclaim.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1/fake/resourceclaim.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - resourcev1beta1 "k8s.io/api/resource/v1beta1" v1beta1 "k8s.io/client-go/applyconfigurations/resource/v1beta1" typedresourcev1beta1 "k8s.io/client-go/kubernetes/typed/resource/v1beta1" @@ -28,6 +26,7 @@ import ( typedkcpresourcev1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // resourceClaimClusterClient implements ResourceClaimClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1/fake/resourceclaimtemplate.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1/fake/resourceclaimtemplate.go index 92e03b4efcd..48696d8c173 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1/fake/resourceclaimtemplate.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1/fake/resourceclaimtemplate.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - resourcev1beta1 "k8s.io/api/resource/v1beta1" v1beta1 "k8s.io/client-go/applyconfigurations/resource/v1beta1" typedresourcev1beta1 "k8s.io/client-go/kubernetes/typed/resource/v1beta1" @@ -28,6 +26,7 @@ import ( typedkcpresourcev1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // resourceClaimTemplateClusterClient implements ResourceClaimTemplateClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1/fake/resourceslice.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1/fake/resourceslice.go index fb224b628b6..e2cef39fb6d 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1/fake/resourceslice.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1/fake/resourceslice.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - resourcev1beta1 "k8s.io/api/resource/v1beta1" v1beta1 "k8s.io/client-go/applyconfigurations/resource/v1beta1" typedresourcev1beta1 "k8s.io/client-go/kubernetes/typed/resource/v1beta1" @@ -28,6 +26,7 @@ import ( typedkcpresourcev1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // resourceSliceClusterClient implements ResourceSliceClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1/resource_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1/resource_client.go index f159710d7d8..122a18ce829 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1/resource_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1/resource_client.go @@ -21,14 +21,13 @@ package v1beta1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiresourcev1beta1 "k8s.io/api/resource/v1beta1" resourcev1beta1 "k8s.io/client-go/kubernetes/typed/resource/v1beta1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type ResourceV1beta1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1/resourceclaim.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1/resourceclaim.go index 538a8b99e65..0cb8a641877 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1/resourceclaim.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1/resourceclaim.go @@ -21,13 +21,13 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - resourcev1beta1 "k8s.io/api/resource/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedresourcev1beta1 "k8s.io/client-go/kubernetes/typed/resource/v1beta1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ResourceClaimsClusterGetter has a method to return a ResourceClaimClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1/resourceclaimtemplate.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1/resourceclaimtemplate.go index 4606b4a01de..52cd1e10b14 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1/resourceclaimtemplate.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1/resourceclaimtemplate.go @@ -21,13 +21,13 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - resourcev1beta1 "k8s.io/api/resource/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedresourcev1beta1 "k8s.io/client-go/kubernetes/typed/resource/v1beta1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ResourceClaimTemplatesClusterGetter has a method to return a ResourceClaimTemplateClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1/resourceslice.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1/resourceslice.go index 0ecb83814d9..71d69e246ef 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1/resourceslice.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta1/resourceslice.go @@ -21,13 +21,13 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiresourcev1beta1 "k8s.io/api/resource/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" resourcev1beta1 "k8s.io/client-go/kubernetes/typed/resource/v1beta1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ResourceSlicesClusterGetter has a method to return a ResourceSliceClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2/deviceclass.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2/deviceclass.go index fb79c0b4a32..28f0fbaa434 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2/deviceclass.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2/deviceclass.go @@ -21,13 +21,13 @@ package v1beta2 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiresourcev1beta2 "k8s.io/api/resource/v1beta2" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" resourcev1beta2 "k8s.io/client-go/kubernetes/typed/resource/v1beta2" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // DeviceClassesClusterGetter has a method to return a DeviceClassClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2/fake/deviceclass.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2/fake/deviceclass.go index 72b49fca931..a15dcf88f12 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2/fake/deviceclass.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2/fake/deviceclass.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - resourcev1beta2 "k8s.io/api/resource/v1beta2" v1beta2 "k8s.io/client-go/applyconfigurations/resource/v1beta2" typedresourcev1beta2 "k8s.io/client-go/kubernetes/typed/resource/v1beta2" @@ -28,6 +26,7 @@ import ( typedkcpresourcev1beta2 "github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // deviceClassClusterClient implements DeviceClassClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2/fake/resource_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2/fake/resource_client.go index 6ef73489bf4..4d2491b4cee 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2/fake/resource_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2/fake/resource_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - resourcev1beta2 "k8s.io/client-go/kubernetes/typed/resource/v1beta2" rest "k8s.io/client-go/rest" kcpresourcev1beta2 "github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpresourcev1beta2.ResourceV1beta2ClusterInterface = (*ResourceV1beta2ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2/fake/resourceclaim.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2/fake/resourceclaim.go index 8a5a5addab2..d2fd5488c6a 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2/fake/resourceclaim.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2/fake/resourceclaim.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - resourcev1beta2 "k8s.io/api/resource/v1beta2" v1beta2 "k8s.io/client-go/applyconfigurations/resource/v1beta2" typedresourcev1beta2 "k8s.io/client-go/kubernetes/typed/resource/v1beta2" @@ -28,6 +26,7 @@ import ( typedkcpresourcev1beta2 "github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // resourceClaimClusterClient implements ResourceClaimClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2/fake/resourceclaimtemplate.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2/fake/resourceclaimtemplate.go index 9c059a6fd0c..815d5a33576 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2/fake/resourceclaimtemplate.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2/fake/resourceclaimtemplate.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - resourcev1beta2 "k8s.io/api/resource/v1beta2" v1beta2 "k8s.io/client-go/applyconfigurations/resource/v1beta2" typedresourcev1beta2 "k8s.io/client-go/kubernetes/typed/resource/v1beta2" @@ -28,6 +26,7 @@ import ( typedkcpresourcev1beta2 "github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // resourceClaimTemplateClusterClient implements ResourceClaimTemplateClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2/fake/resourceslice.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2/fake/resourceslice.go index b56c6fcaf5e..ad92a053b38 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2/fake/resourceslice.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2/fake/resourceslice.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - resourcev1beta2 "k8s.io/api/resource/v1beta2" v1beta2 "k8s.io/client-go/applyconfigurations/resource/v1beta2" typedresourcev1beta2 "k8s.io/client-go/kubernetes/typed/resource/v1beta2" @@ -28,6 +26,7 @@ import ( typedkcpresourcev1beta2 "github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // resourceSliceClusterClient implements ResourceSliceClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2/resource_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2/resource_client.go index e97ff03e9f3..867b0696233 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2/resource_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2/resource_client.go @@ -21,14 +21,13 @@ package v1beta2 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiresourcev1beta2 "k8s.io/api/resource/v1beta2" resourcev1beta2 "k8s.io/client-go/kubernetes/typed/resource/v1beta2" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type ResourceV1beta2ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2/resourceclaim.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2/resourceclaim.go index b051f8a7253..527f0794c20 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2/resourceclaim.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2/resourceclaim.go @@ -21,13 +21,13 @@ package v1beta2 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - resourcev1beta2 "k8s.io/api/resource/v1beta2" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedresourcev1beta2 "k8s.io/client-go/kubernetes/typed/resource/v1beta2" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ResourceClaimsClusterGetter has a method to return a ResourceClaimClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2/resourceclaimtemplate.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2/resourceclaimtemplate.go index 09e22dad953..391ed802a15 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2/resourceclaimtemplate.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2/resourceclaimtemplate.go @@ -21,13 +21,13 @@ package v1beta2 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - resourcev1beta2 "k8s.io/api/resource/v1beta2" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedresourcev1beta2 "k8s.io/client-go/kubernetes/typed/resource/v1beta2" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ResourceClaimTemplatesClusterGetter has a method to return a ResourceClaimTemplateClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2/resourceslice.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2/resourceslice.go index afd5013126d..6ceb4867b4a 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2/resourceslice.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/resource/v1beta2/resourceslice.go @@ -21,13 +21,13 @@ package v1beta2 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apiresourcev1beta2 "k8s.io/api/resource/v1beta2" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" resourcev1beta2 "k8s.io/client-go/kubernetes/typed/resource/v1beta2" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ResourceSlicesClusterGetter has a method to return a ResourceSliceClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1/fake/priorityclass.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1/fake/priorityclass.go index bfb0a84cd47..e20e8ae178b 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1/fake/priorityclass.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1/fake/priorityclass.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - schedulingv1 "k8s.io/api/scheduling/v1" v1 "k8s.io/client-go/applyconfigurations/scheduling/v1" typedschedulingv1 "k8s.io/client-go/kubernetes/typed/scheduling/v1" @@ -28,6 +26,7 @@ import ( typedkcpschedulingv1 "github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // priorityClassClusterClient implements PriorityClassClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1/fake/scheduling_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1/fake/scheduling_client.go index 53b69df3f3e..f49ef2a2d70 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1/fake/scheduling_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1/fake/scheduling_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - schedulingv1 "k8s.io/client-go/kubernetes/typed/scheduling/v1" rest "k8s.io/client-go/rest" kcpschedulingv1 "github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpschedulingv1.SchedulingV1ClusterInterface = (*SchedulingV1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1/priorityclass.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1/priorityclass.go index 8bad6cb5e6a..0348c3c3fad 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1/priorityclass.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1/priorityclass.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apischedulingv1 "k8s.io/api/scheduling/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" schedulingv1 "k8s.io/client-go/kubernetes/typed/scheduling/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // PriorityClassesClusterGetter has a method to return a PriorityClassClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1/scheduling_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1/scheduling_client.go index 8dd32a8d15d..abca07ba7f4 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1/scheduling_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1/scheduling_client.go @@ -21,14 +21,13 @@ package v1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apischedulingv1 "k8s.io/api/scheduling/v1" schedulingv1 "k8s.io/client-go/kubernetes/typed/scheduling/v1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type SchedulingV1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1alpha1/fake/priorityclass.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1alpha1/fake/priorityclass.go index 700b8b9a484..0292e20d4b6 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1alpha1/fake/priorityclass.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1alpha1/fake/priorityclass.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - schedulingv1alpha1 "k8s.io/api/scheduling/v1alpha1" v1alpha1 "k8s.io/client-go/applyconfigurations/scheduling/v1alpha1" typedschedulingv1alpha1 "k8s.io/client-go/kubernetes/typed/scheduling/v1alpha1" @@ -28,6 +26,7 @@ import ( typedkcpschedulingv1alpha1 "github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1alpha1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // priorityClassClusterClient implements PriorityClassClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1alpha1/fake/scheduling_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1alpha1/fake/scheduling_client.go index c9e6d41f38b..c905c911a5e 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1alpha1/fake/scheduling_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1alpha1/fake/scheduling_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - schedulingv1alpha1 "k8s.io/client-go/kubernetes/typed/scheduling/v1alpha1" rest "k8s.io/client-go/rest" kcpschedulingv1alpha1 "github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1alpha1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpschedulingv1alpha1.SchedulingV1alpha1ClusterInterface = (*SchedulingV1alpha1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1alpha1/priorityclass.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1alpha1/priorityclass.go index bfa90325f4f..c789f8f4cfa 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1alpha1/priorityclass.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1alpha1/priorityclass.go @@ -21,13 +21,13 @@ package v1alpha1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apischedulingv1alpha1 "k8s.io/api/scheduling/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" schedulingv1alpha1 "k8s.io/client-go/kubernetes/typed/scheduling/v1alpha1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // PriorityClassesClusterGetter has a method to return a PriorityClassClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1alpha1/scheduling_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1alpha1/scheduling_client.go index c6237eb14ea..f04e3b356ae 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1alpha1/scheduling_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1alpha1/scheduling_client.go @@ -21,14 +21,13 @@ package v1alpha1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apischedulingv1alpha1 "k8s.io/api/scheduling/v1alpha1" schedulingv1alpha1 "k8s.io/client-go/kubernetes/typed/scheduling/v1alpha1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type SchedulingV1alpha1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1beta1/fake/priorityclass.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1beta1/fake/priorityclass.go index 2d475b07522..e4632a674b6 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1beta1/fake/priorityclass.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1beta1/fake/priorityclass.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - schedulingv1beta1 "k8s.io/api/scheduling/v1beta1" v1beta1 "k8s.io/client-go/applyconfigurations/scheduling/v1beta1" typedschedulingv1beta1 "k8s.io/client-go/kubernetes/typed/scheduling/v1beta1" @@ -28,6 +26,7 @@ import ( typedkcpschedulingv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // priorityClassClusterClient implements PriorityClassClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1beta1/fake/scheduling_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1beta1/fake/scheduling_client.go index a50595d2dd3..d9e3af56119 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1beta1/fake/scheduling_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1beta1/fake/scheduling_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - schedulingv1beta1 "k8s.io/client-go/kubernetes/typed/scheduling/v1beta1" rest "k8s.io/client-go/rest" kcpschedulingv1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1beta1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpschedulingv1beta1.SchedulingV1beta1ClusterInterface = (*SchedulingV1beta1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1beta1/priorityclass.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1beta1/priorityclass.go index d7a13ec422e..50837356575 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1beta1/priorityclass.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1beta1/priorityclass.go @@ -21,13 +21,13 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apischedulingv1beta1 "k8s.io/api/scheduling/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" schedulingv1beta1 "k8s.io/client-go/kubernetes/typed/scheduling/v1beta1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // PriorityClassesClusterGetter has a method to return a PriorityClassClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1beta1/scheduling_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1beta1/scheduling_client.go index 8a584b049ce..cd62cccfeae 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1beta1/scheduling_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/scheduling/v1beta1/scheduling_client.go @@ -21,14 +21,13 @@ package v1beta1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apischedulingv1beta1 "k8s.io/api/scheduling/v1beta1" schedulingv1beta1 "k8s.io/client-go/kubernetes/typed/scheduling/v1beta1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type SchedulingV1beta1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/csidriver.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/csidriver.go index 512bc96fdec..400e99e72cb 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/csidriver.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/csidriver.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apistoragev1 "k8s.io/api/storage/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" storagev1 "k8s.io/client-go/kubernetes/typed/storage/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // CSIDriversClusterGetter has a method to return a CSIDriverClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/csinode.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/csinode.go index 45bcf4b1488..0640fd0a69b 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/csinode.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/csinode.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apistoragev1 "k8s.io/api/storage/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" storagev1 "k8s.io/client-go/kubernetes/typed/storage/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // CSINodesClusterGetter has a method to return a CSINodeClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/csistoragecapacity.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/csistoragecapacity.go index 205711cec8f..c866327ebc0 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/csistoragecapacity.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/csistoragecapacity.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - storagev1 "k8s.io/api/storage/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedstoragev1 "k8s.io/client-go/kubernetes/typed/storage/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // CSIStorageCapacitiesClusterGetter has a method to return a CSIStorageCapacityClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/fake/csidriver.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/fake/csidriver.go index 071f2fcfeaa..20da26458fa 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/fake/csidriver.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/fake/csidriver.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - storagev1 "k8s.io/api/storage/v1" v1 "k8s.io/client-go/applyconfigurations/storage/v1" typedstoragev1 "k8s.io/client-go/kubernetes/typed/storage/v1" @@ -28,6 +26,7 @@ import ( typedkcpstoragev1 "github.com/kcp-dev/client-go/kubernetes/typed/storage/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // cSIDriverClusterClient implements CSIDriverClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/fake/csinode.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/fake/csinode.go index 2025c2532f3..42202a9f5de 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/fake/csinode.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/fake/csinode.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - storagev1 "k8s.io/api/storage/v1" v1 "k8s.io/client-go/applyconfigurations/storage/v1" typedstoragev1 "k8s.io/client-go/kubernetes/typed/storage/v1" @@ -28,6 +26,7 @@ import ( typedkcpstoragev1 "github.com/kcp-dev/client-go/kubernetes/typed/storage/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // cSINodeClusterClient implements CSINodeClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/fake/csistoragecapacity.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/fake/csistoragecapacity.go index 57ee38e662a..9893ceae60c 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/fake/csistoragecapacity.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/fake/csistoragecapacity.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - storagev1 "k8s.io/api/storage/v1" v1 "k8s.io/client-go/applyconfigurations/storage/v1" typedstoragev1 "k8s.io/client-go/kubernetes/typed/storage/v1" @@ -28,6 +26,7 @@ import ( typedkcpstoragev1 "github.com/kcp-dev/client-go/kubernetes/typed/storage/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // cSIStorageCapacityClusterClient implements CSIStorageCapacityClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/fake/storage_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/fake/storage_client.go index 1d2d421fc5a..a73e3cb02fc 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/fake/storage_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/fake/storage_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - storagev1 "k8s.io/client-go/kubernetes/typed/storage/v1" rest "k8s.io/client-go/rest" kcpstoragev1 "github.com/kcp-dev/client-go/kubernetes/typed/storage/v1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpstoragev1.StorageV1ClusterInterface = (*StorageV1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/fake/storageclass.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/fake/storageclass.go index 8b0e56c2c50..6267597f78a 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/fake/storageclass.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/fake/storageclass.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - storagev1 "k8s.io/api/storage/v1" v1 "k8s.io/client-go/applyconfigurations/storage/v1" typedstoragev1 "k8s.io/client-go/kubernetes/typed/storage/v1" @@ -28,6 +26,7 @@ import ( typedkcpstoragev1 "github.com/kcp-dev/client-go/kubernetes/typed/storage/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // storageClassClusterClient implements StorageClassClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/fake/volumeattachment.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/fake/volumeattachment.go index 4acf11b192a..d0b717e3473 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/fake/volumeattachment.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/fake/volumeattachment.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - storagev1 "k8s.io/api/storage/v1" v1 "k8s.io/client-go/applyconfigurations/storage/v1" typedstoragev1 "k8s.io/client-go/kubernetes/typed/storage/v1" @@ -28,6 +26,7 @@ import ( typedkcpstoragev1 "github.com/kcp-dev/client-go/kubernetes/typed/storage/v1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // volumeAttachmentClusterClient implements VolumeAttachmentClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/storage_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/storage_client.go index 3ac9877eed2..26d07a0e002 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/storage_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/storage_client.go @@ -21,14 +21,13 @@ package v1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apistoragev1 "k8s.io/api/storage/v1" storagev1 "k8s.io/client-go/kubernetes/typed/storage/v1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type StorageV1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/storageclass.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/storageclass.go index 0a0c0955058..4b325d899c3 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/storageclass.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/storageclass.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apistoragev1 "k8s.io/api/storage/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" storagev1 "k8s.io/client-go/kubernetes/typed/storage/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // StorageClassesClusterGetter has a method to return a StorageClassClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/volumeattachment.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/volumeattachment.go index 6eb7d7387ad..bd079a0e48b 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/volumeattachment.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1/volumeattachment.go @@ -21,13 +21,13 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apistoragev1 "k8s.io/api/storage/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" storagev1 "k8s.io/client-go/kubernetes/typed/storage/v1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // VolumeAttachmentsClusterGetter has a method to return a VolumeAttachmentClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1alpha1/csistoragecapacity.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1alpha1/csistoragecapacity.go index 2fc843af391..1539f0b7ea6 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1alpha1/csistoragecapacity.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1alpha1/csistoragecapacity.go @@ -21,13 +21,13 @@ package v1alpha1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - storagev1alpha1 "k8s.io/api/storage/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedstoragev1alpha1 "k8s.io/client-go/kubernetes/typed/storage/v1alpha1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // CSIStorageCapacitiesClusterGetter has a method to return a CSIStorageCapacityClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1alpha1/fake/csistoragecapacity.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1alpha1/fake/csistoragecapacity.go index 514d427f783..a5aa8e0c5c9 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1alpha1/fake/csistoragecapacity.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1alpha1/fake/csistoragecapacity.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - storagev1alpha1 "k8s.io/api/storage/v1alpha1" v1alpha1 "k8s.io/client-go/applyconfigurations/storage/v1alpha1" typedstoragev1alpha1 "k8s.io/client-go/kubernetes/typed/storage/v1alpha1" @@ -28,6 +26,7 @@ import ( typedkcpstoragev1alpha1 "github.com/kcp-dev/client-go/kubernetes/typed/storage/v1alpha1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // cSIStorageCapacityClusterClient implements CSIStorageCapacityClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1alpha1/fake/storage_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1alpha1/fake/storage_client.go index d8da33c6ac1..61e6cd7d29c 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1alpha1/fake/storage_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1alpha1/fake/storage_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - storagev1alpha1 "k8s.io/client-go/kubernetes/typed/storage/v1alpha1" rest "k8s.io/client-go/rest" kcpstoragev1alpha1 "github.com/kcp-dev/client-go/kubernetes/typed/storage/v1alpha1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpstoragev1alpha1.StorageV1alpha1ClusterInterface = (*StorageV1alpha1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1alpha1/fake/volumeattachment.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1alpha1/fake/volumeattachment.go index 1b7ba89859e..64b963aca75 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1alpha1/fake/volumeattachment.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1alpha1/fake/volumeattachment.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - storagev1alpha1 "k8s.io/api/storage/v1alpha1" v1alpha1 "k8s.io/client-go/applyconfigurations/storage/v1alpha1" typedstoragev1alpha1 "k8s.io/client-go/kubernetes/typed/storage/v1alpha1" @@ -28,6 +26,7 @@ import ( typedkcpstoragev1alpha1 "github.com/kcp-dev/client-go/kubernetes/typed/storage/v1alpha1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // volumeAttachmentClusterClient implements VolumeAttachmentClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1alpha1/fake/volumeattributesclass.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1alpha1/fake/volumeattributesclass.go index 86c3a2c8881..7648cc44abd 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1alpha1/fake/volumeattributesclass.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1alpha1/fake/volumeattributesclass.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - storagev1alpha1 "k8s.io/api/storage/v1alpha1" v1alpha1 "k8s.io/client-go/applyconfigurations/storage/v1alpha1" typedstoragev1alpha1 "k8s.io/client-go/kubernetes/typed/storage/v1alpha1" @@ -28,6 +26,7 @@ import ( typedkcpstoragev1alpha1 "github.com/kcp-dev/client-go/kubernetes/typed/storage/v1alpha1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // volumeAttributesClassClusterClient implements VolumeAttributesClassClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1alpha1/storage_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1alpha1/storage_client.go index b86a268eb47..5cf0f64f8d5 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1alpha1/storage_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1alpha1/storage_client.go @@ -21,14 +21,13 @@ package v1alpha1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apistoragev1alpha1 "k8s.io/api/storage/v1alpha1" storagev1alpha1 "k8s.io/client-go/kubernetes/typed/storage/v1alpha1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type StorageV1alpha1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1alpha1/volumeattachment.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1alpha1/volumeattachment.go index 47f0a248e59..818221810b3 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1alpha1/volumeattachment.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1alpha1/volumeattachment.go @@ -21,13 +21,13 @@ package v1alpha1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apistoragev1alpha1 "k8s.io/api/storage/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" storagev1alpha1 "k8s.io/client-go/kubernetes/typed/storage/v1alpha1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // VolumeAttachmentsClusterGetter has a method to return a VolumeAttachmentClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1alpha1/volumeattributesclass.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1alpha1/volumeattributesclass.go index e5f7383d5a9..03eac0daf1c 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1alpha1/volumeattributesclass.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1alpha1/volumeattributesclass.go @@ -21,13 +21,13 @@ package v1alpha1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apistoragev1alpha1 "k8s.io/api/storage/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" storagev1alpha1 "k8s.io/client-go/kubernetes/typed/storage/v1alpha1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // VolumeAttributesClassesClusterGetter has a method to return a VolumeAttributesClassClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/csidriver.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/csidriver.go index bd864e96e61..655f9c788da 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/csidriver.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/csidriver.go @@ -21,13 +21,13 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apistoragev1beta1 "k8s.io/api/storage/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" storagev1beta1 "k8s.io/client-go/kubernetes/typed/storage/v1beta1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // CSIDriversClusterGetter has a method to return a CSIDriverClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/csinode.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/csinode.go index 5e8280804d5..f3e20073367 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/csinode.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/csinode.go @@ -21,13 +21,13 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apistoragev1beta1 "k8s.io/api/storage/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" storagev1beta1 "k8s.io/client-go/kubernetes/typed/storage/v1beta1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // CSINodesClusterGetter has a method to return a CSINodeClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/csistoragecapacity.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/csistoragecapacity.go index 95b2bdb5007..9284296fef4 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/csistoragecapacity.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/csistoragecapacity.go @@ -21,13 +21,13 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - storagev1beta1 "k8s.io/api/storage/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" typedstoragev1beta1 "k8s.io/client-go/kubernetes/typed/storage/v1beta1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // CSIStorageCapacitiesClusterGetter has a method to return a CSIStorageCapacityClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/fake/csidriver.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/fake/csidriver.go index 0f2bc2d09a2..d4b6e231643 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/fake/csidriver.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/fake/csidriver.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - storagev1beta1 "k8s.io/api/storage/v1beta1" v1beta1 "k8s.io/client-go/applyconfigurations/storage/v1beta1" typedstoragev1beta1 "k8s.io/client-go/kubernetes/typed/storage/v1beta1" @@ -28,6 +26,7 @@ import ( typedkcpstoragev1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // cSIDriverClusterClient implements CSIDriverClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/fake/csinode.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/fake/csinode.go index 0d289faec45..f0dd5e9b4a5 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/fake/csinode.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/fake/csinode.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - storagev1beta1 "k8s.io/api/storage/v1beta1" v1beta1 "k8s.io/client-go/applyconfigurations/storage/v1beta1" typedstoragev1beta1 "k8s.io/client-go/kubernetes/typed/storage/v1beta1" @@ -28,6 +26,7 @@ import ( typedkcpstoragev1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // cSINodeClusterClient implements CSINodeClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/fake/csistoragecapacity.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/fake/csistoragecapacity.go index 9bb3a59a3c1..4b8a6e30344 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/fake/csistoragecapacity.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/fake/csistoragecapacity.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - storagev1beta1 "k8s.io/api/storage/v1beta1" v1beta1 "k8s.io/client-go/applyconfigurations/storage/v1beta1" typedstoragev1beta1 "k8s.io/client-go/kubernetes/typed/storage/v1beta1" @@ -28,6 +26,7 @@ import ( typedkcpstoragev1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // cSIStorageCapacityClusterClient implements CSIStorageCapacityClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/fake/storage_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/fake/storage_client.go index 66dda405b26..8726db66035 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/fake/storage_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/fake/storage_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - storagev1beta1 "k8s.io/client-go/kubernetes/typed/storage/v1beta1" rest "k8s.io/client-go/rest" kcpstoragev1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpstoragev1beta1.StorageV1beta1ClusterInterface = (*StorageV1beta1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/fake/storageclass.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/fake/storageclass.go index a79d2c9a550..b527fbf5130 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/fake/storageclass.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/fake/storageclass.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - storagev1beta1 "k8s.io/api/storage/v1beta1" v1beta1 "k8s.io/client-go/applyconfigurations/storage/v1beta1" typedstoragev1beta1 "k8s.io/client-go/kubernetes/typed/storage/v1beta1" @@ -28,6 +26,7 @@ import ( typedkcpstoragev1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // storageClassClusterClient implements StorageClassClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/fake/volumeattachment.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/fake/volumeattachment.go index 9c8ffae969e..370baa81822 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/fake/volumeattachment.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/fake/volumeattachment.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - storagev1beta1 "k8s.io/api/storage/v1beta1" v1beta1 "k8s.io/client-go/applyconfigurations/storage/v1beta1" typedstoragev1beta1 "k8s.io/client-go/kubernetes/typed/storage/v1beta1" @@ -28,6 +26,7 @@ import ( typedkcpstoragev1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // volumeAttachmentClusterClient implements VolumeAttachmentClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/fake/volumeattributesclass.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/fake/volumeattributesclass.go index a0030417f6f..eed5c0f60dc 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/fake/volumeattributesclass.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/fake/volumeattributesclass.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - storagev1beta1 "k8s.io/api/storage/v1beta1" v1beta1 "k8s.io/client-go/applyconfigurations/storage/v1beta1" typedstoragev1beta1 "k8s.io/client-go/kubernetes/typed/storage/v1beta1" @@ -28,6 +26,7 @@ import ( typedkcpstoragev1beta1 "github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // volumeAttributesClassClusterClient implements VolumeAttributesClassClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/storage_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/storage_client.go index 5b833f1182d..80b4020518f 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/storage_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/storage_client.go @@ -21,14 +21,13 @@ package v1beta1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apistoragev1beta1 "k8s.io/api/storage/v1beta1" storagev1beta1 "k8s.io/client-go/kubernetes/typed/storage/v1beta1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type StorageV1beta1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/storageclass.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/storageclass.go index 5ac0104eff9..9b54eb4a299 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/storageclass.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/storageclass.go @@ -21,13 +21,13 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apistoragev1beta1 "k8s.io/api/storage/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" storagev1beta1 "k8s.io/client-go/kubernetes/typed/storage/v1beta1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // StorageClassesClusterGetter has a method to return a StorageClassClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/volumeattachment.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/volumeattachment.go index ed7dac54c2b..49da010753c 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/volumeattachment.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/volumeattachment.go @@ -21,13 +21,13 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apistoragev1beta1 "k8s.io/api/storage/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" storagev1beta1 "k8s.io/client-go/kubernetes/typed/storage/v1beta1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // VolumeAttachmentsClusterGetter has a method to return a VolumeAttachmentClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/volumeattributesclass.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/volumeattributesclass.go index 521ae434c8f..ecef9b4beb5 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/volumeattributesclass.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storage/v1beta1/volumeattributesclass.go @@ -21,13 +21,13 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apistoragev1beta1 "k8s.io/api/storage/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" storagev1beta1 "k8s.io/client-go/kubernetes/typed/storage/v1beta1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // VolumeAttributesClassesClusterGetter has a method to return a VolumeAttributesClassClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storagemigration/v1alpha1/fake/storagemigration_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storagemigration/v1alpha1/fake/storagemigration_client.go index 988e27fa08b..ec94f067d3d 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storagemigration/v1alpha1/fake/storagemigration_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storagemigration/v1alpha1/fake/storagemigration_client.go @@ -19,13 +19,12 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - storagemigrationv1alpha1 "k8s.io/client-go/kubernetes/typed/storagemigration/v1alpha1" rest "k8s.io/client-go/rest" kcpstoragemigrationv1alpha1 "github.com/kcp-dev/client-go/kubernetes/typed/storagemigration/v1alpha1" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpstoragemigrationv1alpha1.StoragemigrationV1alpha1ClusterInterface = (*StoragemigrationV1alpha1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storagemigration/v1alpha1/fake/storageversionmigration.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storagemigration/v1alpha1/fake/storageversionmigration.go index d9395a98e91..2e268911ceb 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storagemigration/v1alpha1/fake/storageversionmigration.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storagemigration/v1alpha1/fake/storageversionmigration.go @@ -19,8 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - storagemigrationv1alpha1 "k8s.io/api/storagemigration/v1alpha1" v1alpha1 "k8s.io/client-go/applyconfigurations/storagemigration/v1alpha1" typedstoragemigrationv1alpha1 "k8s.io/client-go/kubernetes/typed/storagemigration/v1alpha1" @@ -28,6 +26,7 @@ import ( typedkcpstoragemigrationv1alpha1 "github.com/kcp-dev/client-go/kubernetes/typed/storagemigration/v1alpha1" kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // storageVersionMigrationClusterClient implements StorageVersionMigrationClusterInterface diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storagemigration/v1alpha1/storagemigration_client.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storagemigration/v1alpha1/storagemigration_client.go index 174b02c951c..e060430fac1 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storagemigration/v1alpha1/storagemigration_client.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storagemigration/v1alpha1/storagemigration_client.go @@ -21,14 +21,13 @@ package v1alpha1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apistoragemigrationv1alpha1 "k8s.io/api/storagemigration/v1alpha1" storagemigrationv1alpha1 "k8s.io/client-go/kubernetes/typed/storagemigration/v1alpha1" rest "k8s.io/client-go/rest" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" kcpscheme "github.com/kcp-dev/client-go/kubernetes/scheme" + "github.com/kcp-dev/logicalcluster/v3" ) type StoragemigrationV1alpha1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storagemigration/v1alpha1/storageversionmigration.go b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storagemigration/v1alpha1/storageversionmigration.go index e3dac37fe1a..8f22d72ba63 100644 --- a/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storagemigration/v1alpha1/storageversionmigration.go +++ b/staging/src/github.com/kcp-dev/client-go/kubernetes/typed/storagemigration/v1alpha1/storageversionmigration.go @@ -21,13 +21,13 @@ package v1alpha1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - apistoragemigrationv1alpha1 "k8s.io/api/storagemigration/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" storagemigrationv1alpha1 "k8s.io/client-go/kubernetes/typed/storagemigration/v1alpha1" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // StorageVersionMigrationsClusterGetter has a method to return a StorageVersionMigrationClusterInterface. diff --git a/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1/mutatingwebhookconfiguration.go b/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1/mutatingwebhookconfiguration.go index b43b1328581..d8ae61dda04 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1/mutatingwebhookconfiguration.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1/mutatingwebhookconfiguration.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - admissionregistrationv1 "k8s.io/api/admissionregistration/v1" "k8s.io/apimachinery/pkg/labels" listersadmissionregistrationv1 "k8s.io/client-go/listers/admissionregistration/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // MutatingWebhookConfigurationClusterLister helps list MutatingWebhookConfigurations across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1/validatingadmissionpolicy.go b/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1/validatingadmissionpolicy.go index 7b939f27b0b..e629be54abc 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1/validatingadmissionpolicy.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1/validatingadmissionpolicy.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - admissionregistrationv1 "k8s.io/api/admissionregistration/v1" "k8s.io/apimachinery/pkg/labels" listersadmissionregistrationv1 "k8s.io/client-go/listers/admissionregistration/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ValidatingAdmissionPolicyClusterLister helps list ValidatingAdmissionPolicies across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1/validatingadmissionpolicybinding.go b/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1/validatingadmissionpolicybinding.go index a0de45eeb45..870606fc509 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1/validatingadmissionpolicybinding.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1/validatingadmissionpolicybinding.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - admissionregistrationv1 "k8s.io/api/admissionregistration/v1" "k8s.io/apimachinery/pkg/labels" listersadmissionregistrationv1 "k8s.io/client-go/listers/admissionregistration/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ValidatingAdmissionPolicyBindingClusterLister helps list ValidatingAdmissionPolicyBindings across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1/validatingwebhookconfiguration.go b/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1/validatingwebhookconfiguration.go index 63d43b1e5e2..cdd0b6ed493 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1/validatingwebhookconfiguration.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1/validatingwebhookconfiguration.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - admissionregistrationv1 "k8s.io/api/admissionregistration/v1" "k8s.io/apimachinery/pkg/labels" listersadmissionregistrationv1 "k8s.io/client-go/listers/admissionregistration/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ValidatingWebhookConfigurationClusterLister helps list ValidatingWebhookConfigurations across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1alpha1/mutatingadmissionpolicy.go b/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1alpha1/mutatingadmissionpolicy.go index bd3a68510c4..24ccab7dc5e 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1alpha1/mutatingadmissionpolicy.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1alpha1/mutatingadmissionpolicy.go @@ -19,14 +19,13 @@ limitations under the License. package v1alpha1 import ( - "github.com/kcp-dev/logicalcluster/v3" - admissionregistrationv1alpha1 "k8s.io/api/admissionregistration/v1alpha1" "k8s.io/apimachinery/pkg/labels" listersadmissionregistrationv1alpha1 "k8s.io/client-go/listers/admissionregistration/v1alpha1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // MutatingAdmissionPolicyClusterLister helps list MutatingAdmissionPolicies across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1alpha1/mutatingadmissionpolicybinding.go b/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1alpha1/mutatingadmissionpolicybinding.go index 0881b9306cf..00fc8896394 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1alpha1/mutatingadmissionpolicybinding.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1alpha1/mutatingadmissionpolicybinding.go @@ -19,14 +19,13 @@ limitations under the License. package v1alpha1 import ( - "github.com/kcp-dev/logicalcluster/v3" - admissionregistrationv1alpha1 "k8s.io/api/admissionregistration/v1alpha1" "k8s.io/apimachinery/pkg/labels" listersadmissionregistrationv1alpha1 "k8s.io/client-go/listers/admissionregistration/v1alpha1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // MutatingAdmissionPolicyBindingClusterLister helps list MutatingAdmissionPolicyBindings across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1alpha1/validatingadmissionpolicy.go b/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1alpha1/validatingadmissionpolicy.go index 140f0763a5f..adb8bd5c266 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1alpha1/validatingadmissionpolicy.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1alpha1/validatingadmissionpolicy.go @@ -19,14 +19,13 @@ limitations under the License. package v1alpha1 import ( - "github.com/kcp-dev/logicalcluster/v3" - admissionregistrationv1alpha1 "k8s.io/api/admissionregistration/v1alpha1" "k8s.io/apimachinery/pkg/labels" listersadmissionregistrationv1alpha1 "k8s.io/client-go/listers/admissionregistration/v1alpha1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ValidatingAdmissionPolicyClusterLister helps list ValidatingAdmissionPolicies across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1alpha1/validatingadmissionpolicybinding.go b/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1alpha1/validatingadmissionpolicybinding.go index 1aa861b8b85..0471766afd4 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1alpha1/validatingadmissionpolicybinding.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1alpha1/validatingadmissionpolicybinding.go @@ -19,14 +19,13 @@ limitations under the License. package v1alpha1 import ( - "github.com/kcp-dev/logicalcluster/v3" - admissionregistrationv1alpha1 "k8s.io/api/admissionregistration/v1alpha1" "k8s.io/apimachinery/pkg/labels" listersadmissionregistrationv1alpha1 "k8s.io/client-go/listers/admissionregistration/v1alpha1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ValidatingAdmissionPolicyBindingClusterLister helps list ValidatingAdmissionPolicyBindings across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1beta1/mutatingwebhookconfiguration.go b/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1beta1/mutatingwebhookconfiguration.go index ee4adb1db4e..f9c30681ed9 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1beta1/mutatingwebhookconfiguration.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1beta1/mutatingwebhookconfiguration.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - admissionregistrationv1beta1 "k8s.io/api/admissionregistration/v1beta1" "k8s.io/apimachinery/pkg/labels" listersadmissionregistrationv1beta1 "k8s.io/client-go/listers/admissionregistration/v1beta1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // MutatingWebhookConfigurationClusterLister helps list MutatingWebhookConfigurations across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1beta1/validatingadmissionpolicy.go b/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1beta1/validatingadmissionpolicy.go index 5bda260b828..90d8c3dd8f3 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1beta1/validatingadmissionpolicy.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1beta1/validatingadmissionpolicy.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - admissionregistrationv1beta1 "k8s.io/api/admissionregistration/v1beta1" "k8s.io/apimachinery/pkg/labels" listersadmissionregistrationv1beta1 "k8s.io/client-go/listers/admissionregistration/v1beta1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ValidatingAdmissionPolicyClusterLister helps list ValidatingAdmissionPolicies across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1beta1/validatingadmissionpolicybinding.go b/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1beta1/validatingadmissionpolicybinding.go index 8457bf4723b..8c7a5d166b0 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1beta1/validatingadmissionpolicybinding.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1beta1/validatingadmissionpolicybinding.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - admissionregistrationv1beta1 "k8s.io/api/admissionregistration/v1beta1" "k8s.io/apimachinery/pkg/labels" listersadmissionregistrationv1beta1 "k8s.io/client-go/listers/admissionregistration/v1beta1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ValidatingAdmissionPolicyBindingClusterLister helps list ValidatingAdmissionPolicyBindings across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1beta1/validatingwebhookconfiguration.go b/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1beta1/validatingwebhookconfiguration.go index f00a5083945..46be1a0359d 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1beta1/validatingwebhookconfiguration.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/admissionregistration/v1beta1/validatingwebhookconfiguration.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - admissionregistrationv1beta1 "k8s.io/api/admissionregistration/v1beta1" "k8s.io/apimachinery/pkg/labels" listersadmissionregistrationv1beta1 "k8s.io/client-go/listers/admissionregistration/v1beta1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ValidatingWebhookConfigurationClusterLister helps list ValidatingWebhookConfigurations across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/apiserverinternal/v1alpha1/storageversion.go b/staging/src/github.com/kcp-dev/client-go/listers/apiserverinternal/v1alpha1/storageversion.go index cfaa232e50c..f02fdcc28c5 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/apiserverinternal/v1alpha1/storageversion.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/apiserverinternal/v1alpha1/storageversion.go @@ -19,14 +19,13 @@ limitations under the License. package v1alpha1 import ( - "github.com/kcp-dev/logicalcluster/v3" - apiserverinternalv1alpha1 "k8s.io/api/apiserverinternal/v1alpha1" "k8s.io/apimachinery/pkg/labels" listersapiserverinternalv1alpha1 "k8s.io/client-go/listers/apiserverinternal/v1alpha1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // StorageVersionClusterLister helps list StorageVersions across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/apps/v1/controllerrevision.go b/staging/src/github.com/kcp-dev/client-go/listers/apps/v1/controllerrevision.go index 04edf96f21c..2c13f331478 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/apps/v1/controllerrevision.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/apps/v1/controllerrevision.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - appsv1 "k8s.io/api/apps/v1" "k8s.io/apimachinery/pkg/labels" listersappsv1 "k8s.io/client-go/listers/apps/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ControllerRevisionClusterLister helps list ControllerRevisions across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/apps/v1/daemonset.go b/staging/src/github.com/kcp-dev/client-go/listers/apps/v1/daemonset.go index d352371d996..f3746ba8840 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/apps/v1/daemonset.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/apps/v1/daemonset.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - appsv1 "k8s.io/api/apps/v1" "k8s.io/apimachinery/pkg/labels" listersappsv1 "k8s.io/client-go/listers/apps/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // DaemonSetClusterLister helps list DaemonSets across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/apps/v1/deployment.go b/staging/src/github.com/kcp-dev/client-go/listers/apps/v1/deployment.go index 5da6eb98123..e183a9d3166 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/apps/v1/deployment.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/apps/v1/deployment.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - appsv1 "k8s.io/api/apps/v1" "k8s.io/apimachinery/pkg/labels" listersappsv1 "k8s.io/client-go/listers/apps/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // DeploymentClusterLister helps list Deployments across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/apps/v1/replicaset.go b/staging/src/github.com/kcp-dev/client-go/listers/apps/v1/replicaset.go index da263167eab..b9ba4c6069f 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/apps/v1/replicaset.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/apps/v1/replicaset.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - appsv1 "k8s.io/api/apps/v1" "k8s.io/apimachinery/pkg/labels" listersappsv1 "k8s.io/client-go/listers/apps/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ReplicaSetClusterLister helps list ReplicaSets across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/apps/v1/statefulset.go b/staging/src/github.com/kcp-dev/client-go/listers/apps/v1/statefulset.go index ddc95ea5407..e6e1d1605b8 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/apps/v1/statefulset.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/apps/v1/statefulset.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - appsv1 "k8s.io/api/apps/v1" "k8s.io/apimachinery/pkg/labels" listersappsv1 "k8s.io/client-go/listers/apps/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // StatefulSetClusterLister helps list StatefulSets across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/apps/v1beta1/controllerrevision.go b/staging/src/github.com/kcp-dev/client-go/listers/apps/v1beta1/controllerrevision.go index fc2ba558d11..0481f787dda 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/apps/v1beta1/controllerrevision.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/apps/v1beta1/controllerrevision.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - appsv1beta1 "k8s.io/api/apps/v1beta1" "k8s.io/apimachinery/pkg/labels" listersappsv1beta1 "k8s.io/client-go/listers/apps/v1beta1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ControllerRevisionClusterLister helps list ControllerRevisions across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/apps/v1beta1/deployment.go b/staging/src/github.com/kcp-dev/client-go/listers/apps/v1beta1/deployment.go index f52fc909771..36b42b5be1b 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/apps/v1beta1/deployment.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/apps/v1beta1/deployment.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - appsv1beta1 "k8s.io/api/apps/v1beta1" "k8s.io/apimachinery/pkg/labels" listersappsv1beta1 "k8s.io/client-go/listers/apps/v1beta1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // DeploymentClusterLister helps list Deployments across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/apps/v1beta1/statefulset.go b/staging/src/github.com/kcp-dev/client-go/listers/apps/v1beta1/statefulset.go index 5d407c7779c..62ba99a4328 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/apps/v1beta1/statefulset.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/apps/v1beta1/statefulset.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - appsv1beta1 "k8s.io/api/apps/v1beta1" "k8s.io/apimachinery/pkg/labels" listersappsv1beta1 "k8s.io/client-go/listers/apps/v1beta1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // StatefulSetClusterLister helps list StatefulSets across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/apps/v1beta2/controllerrevision.go b/staging/src/github.com/kcp-dev/client-go/listers/apps/v1beta2/controllerrevision.go index 62ec012fabe..6bc9c57d280 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/apps/v1beta2/controllerrevision.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/apps/v1beta2/controllerrevision.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta2 import ( - "github.com/kcp-dev/logicalcluster/v3" - appsv1beta2 "k8s.io/api/apps/v1beta2" "k8s.io/apimachinery/pkg/labels" listersappsv1beta2 "k8s.io/client-go/listers/apps/v1beta2" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ControllerRevisionClusterLister helps list ControllerRevisions across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/apps/v1beta2/daemonset.go b/staging/src/github.com/kcp-dev/client-go/listers/apps/v1beta2/daemonset.go index 4e72ca32ba0..be0b7ac5060 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/apps/v1beta2/daemonset.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/apps/v1beta2/daemonset.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta2 import ( - "github.com/kcp-dev/logicalcluster/v3" - appsv1beta2 "k8s.io/api/apps/v1beta2" "k8s.io/apimachinery/pkg/labels" listersappsv1beta2 "k8s.io/client-go/listers/apps/v1beta2" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // DaemonSetClusterLister helps list DaemonSets across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/apps/v1beta2/deployment.go b/staging/src/github.com/kcp-dev/client-go/listers/apps/v1beta2/deployment.go index a40d5fc759a..38f4891d1e8 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/apps/v1beta2/deployment.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/apps/v1beta2/deployment.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta2 import ( - "github.com/kcp-dev/logicalcluster/v3" - appsv1beta2 "k8s.io/api/apps/v1beta2" "k8s.io/apimachinery/pkg/labels" listersappsv1beta2 "k8s.io/client-go/listers/apps/v1beta2" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // DeploymentClusterLister helps list Deployments across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/apps/v1beta2/replicaset.go b/staging/src/github.com/kcp-dev/client-go/listers/apps/v1beta2/replicaset.go index 34c0e504974..c2be3b42c04 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/apps/v1beta2/replicaset.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/apps/v1beta2/replicaset.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta2 import ( - "github.com/kcp-dev/logicalcluster/v3" - appsv1beta2 "k8s.io/api/apps/v1beta2" "k8s.io/apimachinery/pkg/labels" listersappsv1beta2 "k8s.io/client-go/listers/apps/v1beta2" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ReplicaSetClusterLister helps list ReplicaSets across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/apps/v1beta2/statefulset.go b/staging/src/github.com/kcp-dev/client-go/listers/apps/v1beta2/statefulset.go index eb309fde49b..0deb5adf71f 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/apps/v1beta2/statefulset.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/apps/v1beta2/statefulset.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta2 import ( - "github.com/kcp-dev/logicalcluster/v3" - appsv1beta2 "k8s.io/api/apps/v1beta2" "k8s.io/apimachinery/pkg/labels" listersappsv1beta2 "k8s.io/client-go/listers/apps/v1beta2" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // StatefulSetClusterLister helps list StatefulSets across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/autoscaling/v1/horizontalpodautoscaler.go b/staging/src/github.com/kcp-dev/client-go/listers/autoscaling/v1/horizontalpodautoscaler.go index 5e5a6f955f4..a3d63609b55 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/autoscaling/v1/horizontalpodautoscaler.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/autoscaling/v1/horizontalpodautoscaler.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - autoscalingv1 "k8s.io/api/autoscaling/v1" "k8s.io/apimachinery/pkg/labels" listersautoscalingv1 "k8s.io/client-go/listers/autoscaling/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // HorizontalPodAutoscalerClusterLister helps list HorizontalPodAutoscalers across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/autoscaling/v2/horizontalpodautoscaler.go b/staging/src/github.com/kcp-dev/client-go/listers/autoscaling/v2/horizontalpodautoscaler.go index 98934646b72..3c28bb37243 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/autoscaling/v2/horizontalpodautoscaler.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/autoscaling/v2/horizontalpodautoscaler.go @@ -19,14 +19,13 @@ limitations under the License. package v2 import ( - "github.com/kcp-dev/logicalcluster/v3" - autoscalingv2 "k8s.io/api/autoscaling/v2" "k8s.io/apimachinery/pkg/labels" listersautoscalingv2 "k8s.io/client-go/listers/autoscaling/v2" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // HorizontalPodAutoscalerClusterLister helps list HorizontalPodAutoscalers across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/autoscaling/v2beta1/horizontalpodautoscaler.go b/staging/src/github.com/kcp-dev/client-go/listers/autoscaling/v2beta1/horizontalpodautoscaler.go index c9226ac01ad..a6122af1762 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/autoscaling/v2beta1/horizontalpodautoscaler.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/autoscaling/v2beta1/horizontalpodautoscaler.go @@ -19,14 +19,13 @@ limitations under the License. package v2beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - autoscalingv2beta1 "k8s.io/api/autoscaling/v2beta1" "k8s.io/apimachinery/pkg/labels" listersautoscalingv2beta1 "k8s.io/client-go/listers/autoscaling/v2beta1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // HorizontalPodAutoscalerClusterLister helps list HorizontalPodAutoscalers across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/autoscaling/v2beta2/horizontalpodautoscaler.go b/staging/src/github.com/kcp-dev/client-go/listers/autoscaling/v2beta2/horizontalpodautoscaler.go index bb739cf51c4..8e282466065 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/autoscaling/v2beta2/horizontalpodautoscaler.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/autoscaling/v2beta2/horizontalpodautoscaler.go @@ -19,14 +19,13 @@ limitations under the License. package v2beta2 import ( - "github.com/kcp-dev/logicalcluster/v3" - autoscalingv2beta2 "k8s.io/api/autoscaling/v2beta2" "k8s.io/apimachinery/pkg/labels" listersautoscalingv2beta2 "k8s.io/client-go/listers/autoscaling/v2beta2" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // HorizontalPodAutoscalerClusterLister helps list HorizontalPodAutoscalers across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/batch/v1/cronjob.go b/staging/src/github.com/kcp-dev/client-go/listers/batch/v1/cronjob.go index 5f3da2215bd..4960df44f33 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/batch/v1/cronjob.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/batch/v1/cronjob.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - batchv1 "k8s.io/api/batch/v1" "k8s.io/apimachinery/pkg/labels" listersbatchv1 "k8s.io/client-go/listers/batch/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // CronJobClusterLister helps list CronJobs across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/batch/v1/job.go b/staging/src/github.com/kcp-dev/client-go/listers/batch/v1/job.go index 1c3e7b852ac..088f3b4cb29 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/batch/v1/job.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/batch/v1/job.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - batchv1 "k8s.io/api/batch/v1" "k8s.io/apimachinery/pkg/labels" listersbatchv1 "k8s.io/client-go/listers/batch/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // JobClusterLister helps list Jobs across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/batch/v1beta1/cronjob.go b/staging/src/github.com/kcp-dev/client-go/listers/batch/v1beta1/cronjob.go index 2a221a15feb..06f7baf123a 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/batch/v1beta1/cronjob.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/batch/v1beta1/cronjob.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - batchv1beta1 "k8s.io/api/batch/v1beta1" "k8s.io/apimachinery/pkg/labels" listersbatchv1beta1 "k8s.io/client-go/listers/batch/v1beta1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // CronJobClusterLister helps list CronJobs across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/certificates/v1/certificatesigningrequest.go b/staging/src/github.com/kcp-dev/client-go/listers/certificates/v1/certificatesigningrequest.go index fa83faf0a05..905ee10793f 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/certificates/v1/certificatesigningrequest.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/certificates/v1/certificatesigningrequest.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - certificatesv1 "k8s.io/api/certificates/v1" "k8s.io/apimachinery/pkg/labels" listerscertificatesv1 "k8s.io/client-go/listers/certificates/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // CertificateSigningRequestClusterLister helps list CertificateSigningRequests across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/certificates/v1alpha1/clustertrustbundle.go b/staging/src/github.com/kcp-dev/client-go/listers/certificates/v1alpha1/clustertrustbundle.go index 1ce676f1165..175e2e2c882 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/certificates/v1alpha1/clustertrustbundle.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/certificates/v1alpha1/clustertrustbundle.go @@ -19,14 +19,13 @@ limitations under the License. package v1alpha1 import ( - "github.com/kcp-dev/logicalcluster/v3" - certificatesv1alpha1 "k8s.io/api/certificates/v1alpha1" "k8s.io/apimachinery/pkg/labels" listerscertificatesv1alpha1 "k8s.io/client-go/listers/certificates/v1alpha1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTrustBundleClusterLister helps list ClusterTrustBundles across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/certificates/v1beta1/certificatesigningrequest.go b/staging/src/github.com/kcp-dev/client-go/listers/certificates/v1beta1/certificatesigningrequest.go index a275ab5fb23..6ae58717829 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/certificates/v1beta1/certificatesigningrequest.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/certificates/v1beta1/certificatesigningrequest.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - certificatesv1beta1 "k8s.io/api/certificates/v1beta1" "k8s.io/apimachinery/pkg/labels" listerscertificatesv1beta1 "k8s.io/client-go/listers/certificates/v1beta1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // CertificateSigningRequestClusterLister helps list CertificateSigningRequests across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/certificates/v1beta1/clustertrustbundle.go b/staging/src/github.com/kcp-dev/client-go/listers/certificates/v1beta1/clustertrustbundle.go index 8d1752c26b0..357b4626bc0 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/certificates/v1beta1/clustertrustbundle.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/certificates/v1beta1/clustertrustbundle.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - certificatesv1beta1 "k8s.io/api/certificates/v1beta1" "k8s.io/apimachinery/pkg/labels" listerscertificatesv1beta1 "k8s.io/client-go/listers/certificates/v1beta1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTrustBundleClusterLister helps list ClusterTrustBundles across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/coordination/v1/lease.go b/staging/src/github.com/kcp-dev/client-go/listers/coordination/v1/lease.go index ec57225b118..973ad38b699 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/coordination/v1/lease.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/coordination/v1/lease.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - coordinationv1 "k8s.io/api/coordination/v1" "k8s.io/apimachinery/pkg/labels" listerscoordinationv1 "k8s.io/client-go/listers/coordination/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // LeaseClusterLister helps list Leases across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/coordination/v1alpha2/leasecandidate.go b/staging/src/github.com/kcp-dev/client-go/listers/coordination/v1alpha2/leasecandidate.go index 661d4ee91d0..ef9261807a6 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/coordination/v1alpha2/leasecandidate.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/coordination/v1alpha2/leasecandidate.go @@ -19,14 +19,13 @@ limitations under the License. package v1alpha2 import ( - "github.com/kcp-dev/logicalcluster/v3" - coordinationv1alpha2 "k8s.io/api/coordination/v1alpha2" "k8s.io/apimachinery/pkg/labels" listerscoordinationv1alpha2 "k8s.io/client-go/listers/coordination/v1alpha2" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // LeaseCandidateClusterLister helps list LeaseCandidates across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/coordination/v1beta1/lease.go b/staging/src/github.com/kcp-dev/client-go/listers/coordination/v1beta1/lease.go index 0bb6a1773a7..40f5477ad76 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/coordination/v1beta1/lease.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/coordination/v1beta1/lease.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - coordinationv1beta1 "k8s.io/api/coordination/v1beta1" "k8s.io/apimachinery/pkg/labels" listerscoordinationv1beta1 "k8s.io/client-go/listers/coordination/v1beta1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // LeaseClusterLister helps list Leases across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/coordination/v1beta1/leasecandidate.go b/staging/src/github.com/kcp-dev/client-go/listers/coordination/v1beta1/leasecandidate.go index 2ea0f98b384..b7c6d32c1ca 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/coordination/v1beta1/leasecandidate.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/coordination/v1beta1/leasecandidate.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - coordinationv1beta1 "k8s.io/api/coordination/v1beta1" "k8s.io/apimachinery/pkg/labels" listerscoordinationv1beta1 "k8s.io/client-go/listers/coordination/v1beta1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // LeaseCandidateClusterLister helps list LeaseCandidates across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/core/v1/componentstatus.go b/staging/src/github.com/kcp-dev/client-go/listers/core/v1/componentstatus.go index 99263c06614..bf3cc38c85b 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/core/v1/componentstatus.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/core/v1/componentstatus.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - corev1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/labels" listerscorev1 "k8s.io/client-go/listers/core/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ComponentStatusClusterLister helps list ComponentStatuses across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/core/v1/configmap.go b/staging/src/github.com/kcp-dev/client-go/listers/core/v1/configmap.go index 6adc5b52975..e57e9d1dcdf 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/core/v1/configmap.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/core/v1/configmap.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - corev1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/labels" listerscorev1 "k8s.io/client-go/listers/core/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ConfigMapClusterLister helps list ConfigMaps across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/core/v1/endpoints.go b/staging/src/github.com/kcp-dev/client-go/listers/core/v1/endpoints.go index a27dd7fcf02..d3fa2539ce7 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/core/v1/endpoints.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/core/v1/endpoints.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - corev1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/labels" listerscorev1 "k8s.io/client-go/listers/core/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // EndpointsClusterLister helps list Endpoints across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/core/v1/event.go b/staging/src/github.com/kcp-dev/client-go/listers/core/v1/event.go index c2c4e1e4e42..f29c36e8758 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/core/v1/event.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/core/v1/event.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - corev1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/labels" listerscorev1 "k8s.io/client-go/listers/core/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // EventClusterLister helps list Events across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/core/v1/limitrange.go b/staging/src/github.com/kcp-dev/client-go/listers/core/v1/limitrange.go index c73173a5307..e1dff61859a 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/core/v1/limitrange.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/core/v1/limitrange.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - corev1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/labels" listerscorev1 "k8s.io/client-go/listers/core/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // LimitRangeClusterLister helps list LimitRanges across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/core/v1/namespace.go b/staging/src/github.com/kcp-dev/client-go/listers/core/v1/namespace.go index 67d6806c2f9..739951dec39 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/core/v1/namespace.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/core/v1/namespace.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - corev1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/labels" listerscorev1 "k8s.io/client-go/listers/core/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // NamespaceClusterLister helps list Namespaces across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/core/v1/node.go b/staging/src/github.com/kcp-dev/client-go/listers/core/v1/node.go index 476c3641812..e3f957def07 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/core/v1/node.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/core/v1/node.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - corev1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/labels" listerscorev1 "k8s.io/client-go/listers/core/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // NodeClusterLister helps list Nodes across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/core/v1/persistentvolume.go b/staging/src/github.com/kcp-dev/client-go/listers/core/v1/persistentvolume.go index e43cf5d476c..704e86efb8e 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/core/v1/persistentvolume.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/core/v1/persistentvolume.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - corev1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/labels" listerscorev1 "k8s.io/client-go/listers/core/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // PersistentVolumeClusterLister helps list PersistentVolumes across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/core/v1/persistentvolumeclaim.go b/staging/src/github.com/kcp-dev/client-go/listers/core/v1/persistentvolumeclaim.go index 7b1e61f1a7c..9c57d229963 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/core/v1/persistentvolumeclaim.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/core/v1/persistentvolumeclaim.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - corev1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/labels" listerscorev1 "k8s.io/client-go/listers/core/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // PersistentVolumeClaimClusterLister helps list PersistentVolumeClaims across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/core/v1/pod.go b/staging/src/github.com/kcp-dev/client-go/listers/core/v1/pod.go index 723faf32879..c25e3b8b3eb 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/core/v1/pod.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/core/v1/pod.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - corev1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/labels" listerscorev1 "k8s.io/client-go/listers/core/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // PodClusterLister helps list Pods across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/core/v1/podtemplate.go b/staging/src/github.com/kcp-dev/client-go/listers/core/v1/podtemplate.go index 46f8a3ca5af..3e90b8d693c 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/core/v1/podtemplate.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/core/v1/podtemplate.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - corev1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/labels" listerscorev1 "k8s.io/client-go/listers/core/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // PodTemplateClusterLister helps list PodTemplates across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/core/v1/replicationcontroller.go b/staging/src/github.com/kcp-dev/client-go/listers/core/v1/replicationcontroller.go index b5f22dce3ac..a50d8b382f6 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/core/v1/replicationcontroller.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/core/v1/replicationcontroller.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - corev1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/labels" listerscorev1 "k8s.io/client-go/listers/core/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ReplicationControllerClusterLister helps list ReplicationControllers across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/core/v1/resourcequota.go b/staging/src/github.com/kcp-dev/client-go/listers/core/v1/resourcequota.go index 540e7854033..080df87ac10 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/core/v1/resourcequota.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/core/v1/resourcequota.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - corev1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/labels" listerscorev1 "k8s.io/client-go/listers/core/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ResourceQuotaClusterLister helps list ResourceQuotas across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/core/v1/secret.go b/staging/src/github.com/kcp-dev/client-go/listers/core/v1/secret.go index 8f7f8630f54..e8eedd5dc81 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/core/v1/secret.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/core/v1/secret.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - corev1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/labels" listerscorev1 "k8s.io/client-go/listers/core/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // SecretClusterLister helps list Secrets across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/core/v1/service.go b/staging/src/github.com/kcp-dev/client-go/listers/core/v1/service.go index 17fb08a4d73..16d147b7fbb 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/core/v1/service.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/core/v1/service.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - corev1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/labels" listerscorev1 "k8s.io/client-go/listers/core/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ServiceClusterLister helps list Services across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/core/v1/serviceaccount.go b/staging/src/github.com/kcp-dev/client-go/listers/core/v1/serviceaccount.go index 08eeb1fb27c..7726974d980 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/core/v1/serviceaccount.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/core/v1/serviceaccount.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - corev1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/labels" listerscorev1 "k8s.io/client-go/listers/core/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ServiceAccountClusterLister helps list ServiceAccounts across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/discovery/v1/endpointslice.go b/staging/src/github.com/kcp-dev/client-go/listers/discovery/v1/endpointslice.go index 8a183be70c2..754968ef60b 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/discovery/v1/endpointslice.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/discovery/v1/endpointslice.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - discoveryv1 "k8s.io/api/discovery/v1" "k8s.io/apimachinery/pkg/labels" listersdiscoveryv1 "k8s.io/client-go/listers/discovery/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // EndpointSliceClusterLister helps list EndpointSlices across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/discovery/v1beta1/endpointslice.go b/staging/src/github.com/kcp-dev/client-go/listers/discovery/v1beta1/endpointslice.go index a767f27227d..8b6cd4d78b1 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/discovery/v1beta1/endpointslice.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/discovery/v1beta1/endpointslice.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - discoveryv1beta1 "k8s.io/api/discovery/v1beta1" "k8s.io/apimachinery/pkg/labels" listersdiscoveryv1beta1 "k8s.io/client-go/listers/discovery/v1beta1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // EndpointSliceClusterLister helps list EndpointSlices across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/events/v1/event.go b/staging/src/github.com/kcp-dev/client-go/listers/events/v1/event.go index e924b419c37..bf06c32c860 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/events/v1/event.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/events/v1/event.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - eventsv1 "k8s.io/api/events/v1" "k8s.io/apimachinery/pkg/labels" listerseventsv1 "k8s.io/client-go/listers/events/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // EventClusterLister helps list Events across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/events/v1beta1/event.go b/staging/src/github.com/kcp-dev/client-go/listers/events/v1beta1/event.go index d65fe47ed91..5f926145299 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/events/v1beta1/event.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/events/v1beta1/event.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - eventsv1beta1 "k8s.io/api/events/v1beta1" "k8s.io/apimachinery/pkg/labels" listerseventsv1beta1 "k8s.io/client-go/listers/events/v1beta1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // EventClusterLister helps list Events across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/extensions/v1beta1/daemonset.go b/staging/src/github.com/kcp-dev/client-go/listers/extensions/v1beta1/daemonset.go index 901b0f64430..d2633539f03 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/extensions/v1beta1/daemonset.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/extensions/v1beta1/daemonset.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - extensionsv1beta1 "k8s.io/api/extensions/v1beta1" "k8s.io/apimachinery/pkg/labels" listersextensionsv1beta1 "k8s.io/client-go/listers/extensions/v1beta1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // DaemonSetClusterLister helps list DaemonSets across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/extensions/v1beta1/deployment.go b/staging/src/github.com/kcp-dev/client-go/listers/extensions/v1beta1/deployment.go index a84877a313c..cd503b41009 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/extensions/v1beta1/deployment.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/extensions/v1beta1/deployment.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - extensionsv1beta1 "k8s.io/api/extensions/v1beta1" "k8s.io/apimachinery/pkg/labels" listersextensionsv1beta1 "k8s.io/client-go/listers/extensions/v1beta1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // DeploymentClusterLister helps list Deployments across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/extensions/v1beta1/ingress.go b/staging/src/github.com/kcp-dev/client-go/listers/extensions/v1beta1/ingress.go index 792448cea47..2f659d6e1f2 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/extensions/v1beta1/ingress.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/extensions/v1beta1/ingress.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - extensionsv1beta1 "k8s.io/api/extensions/v1beta1" "k8s.io/apimachinery/pkg/labels" listersextensionsv1beta1 "k8s.io/client-go/listers/extensions/v1beta1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // IngressClusterLister helps list Ingresses across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/extensions/v1beta1/networkpolicy.go b/staging/src/github.com/kcp-dev/client-go/listers/extensions/v1beta1/networkpolicy.go index e9c61ebdba3..fb8cb888833 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/extensions/v1beta1/networkpolicy.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/extensions/v1beta1/networkpolicy.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - extensionsv1beta1 "k8s.io/api/extensions/v1beta1" "k8s.io/apimachinery/pkg/labels" listersextensionsv1beta1 "k8s.io/client-go/listers/extensions/v1beta1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // NetworkPolicyClusterLister helps list NetworkPolicies across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/extensions/v1beta1/replicaset.go b/staging/src/github.com/kcp-dev/client-go/listers/extensions/v1beta1/replicaset.go index 38399c350ba..2be46bdfe86 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/extensions/v1beta1/replicaset.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/extensions/v1beta1/replicaset.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - extensionsv1beta1 "k8s.io/api/extensions/v1beta1" "k8s.io/apimachinery/pkg/labels" listersextensionsv1beta1 "k8s.io/client-go/listers/extensions/v1beta1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ReplicaSetClusterLister helps list ReplicaSets across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/flowcontrol/v1/flowschema.go b/staging/src/github.com/kcp-dev/client-go/listers/flowcontrol/v1/flowschema.go index 337a571f1a0..1e5525972ac 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/flowcontrol/v1/flowschema.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/flowcontrol/v1/flowschema.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - flowcontrolv1 "k8s.io/api/flowcontrol/v1" "k8s.io/apimachinery/pkg/labels" listersflowcontrolv1 "k8s.io/client-go/listers/flowcontrol/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // FlowSchemaClusterLister helps list FlowSchemas across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/flowcontrol/v1/prioritylevelconfiguration.go b/staging/src/github.com/kcp-dev/client-go/listers/flowcontrol/v1/prioritylevelconfiguration.go index 35c7f7d4eb7..7f1142b88fc 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/flowcontrol/v1/prioritylevelconfiguration.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/flowcontrol/v1/prioritylevelconfiguration.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - flowcontrolv1 "k8s.io/api/flowcontrol/v1" "k8s.io/apimachinery/pkg/labels" listersflowcontrolv1 "k8s.io/client-go/listers/flowcontrol/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // PriorityLevelConfigurationClusterLister helps list PriorityLevelConfigurations across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/flowcontrol/v1beta1/flowschema.go b/staging/src/github.com/kcp-dev/client-go/listers/flowcontrol/v1beta1/flowschema.go index b4cf7c85924..7dec79d53ce 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/flowcontrol/v1beta1/flowschema.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/flowcontrol/v1beta1/flowschema.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - flowcontrolv1beta1 "k8s.io/api/flowcontrol/v1beta1" "k8s.io/apimachinery/pkg/labels" listersflowcontrolv1beta1 "k8s.io/client-go/listers/flowcontrol/v1beta1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // FlowSchemaClusterLister helps list FlowSchemas across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/flowcontrol/v1beta1/prioritylevelconfiguration.go b/staging/src/github.com/kcp-dev/client-go/listers/flowcontrol/v1beta1/prioritylevelconfiguration.go index 65e897b4912..a19aaeb0b59 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/flowcontrol/v1beta1/prioritylevelconfiguration.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/flowcontrol/v1beta1/prioritylevelconfiguration.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - flowcontrolv1beta1 "k8s.io/api/flowcontrol/v1beta1" "k8s.io/apimachinery/pkg/labels" listersflowcontrolv1beta1 "k8s.io/client-go/listers/flowcontrol/v1beta1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // PriorityLevelConfigurationClusterLister helps list PriorityLevelConfigurations across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/flowcontrol/v1beta2/flowschema.go b/staging/src/github.com/kcp-dev/client-go/listers/flowcontrol/v1beta2/flowschema.go index a7f36c508b3..73386e79167 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/flowcontrol/v1beta2/flowschema.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/flowcontrol/v1beta2/flowschema.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta2 import ( - "github.com/kcp-dev/logicalcluster/v3" - flowcontrolv1beta2 "k8s.io/api/flowcontrol/v1beta2" "k8s.io/apimachinery/pkg/labels" listersflowcontrolv1beta2 "k8s.io/client-go/listers/flowcontrol/v1beta2" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // FlowSchemaClusterLister helps list FlowSchemas across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/flowcontrol/v1beta2/prioritylevelconfiguration.go b/staging/src/github.com/kcp-dev/client-go/listers/flowcontrol/v1beta2/prioritylevelconfiguration.go index f9618b9036b..be2c7de0415 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/flowcontrol/v1beta2/prioritylevelconfiguration.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/flowcontrol/v1beta2/prioritylevelconfiguration.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta2 import ( - "github.com/kcp-dev/logicalcluster/v3" - flowcontrolv1beta2 "k8s.io/api/flowcontrol/v1beta2" "k8s.io/apimachinery/pkg/labels" listersflowcontrolv1beta2 "k8s.io/client-go/listers/flowcontrol/v1beta2" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // PriorityLevelConfigurationClusterLister helps list PriorityLevelConfigurations across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/flowcontrol/v1beta3/flowschema.go b/staging/src/github.com/kcp-dev/client-go/listers/flowcontrol/v1beta3/flowschema.go index f0420741fa2..7e29143fbe6 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/flowcontrol/v1beta3/flowschema.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/flowcontrol/v1beta3/flowschema.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta3 import ( - "github.com/kcp-dev/logicalcluster/v3" - flowcontrolv1beta3 "k8s.io/api/flowcontrol/v1beta3" "k8s.io/apimachinery/pkg/labels" listersflowcontrolv1beta3 "k8s.io/client-go/listers/flowcontrol/v1beta3" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // FlowSchemaClusterLister helps list FlowSchemas across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/flowcontrol/v1beta3/prioritylevelconfiguration.go b/staging/src/github.com/kcp-dev/client-go/listers/flowcontrol/v1beta3/prioritylevelconfiguration.go index 509b83efbb3..c5b64a596c5 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/flowcontrol/v1beta3/prioritylevelconfiguration.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/flowcontrol/v1beta3/prioritylevelconfiguration.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta3 import ( - "github.com/kcp-dev/logicalcluster/v3" - flowcontrolv1beta3 "k8s.io/api/flowcontrol/v1beta3" "k8s.io/apimachinery/pkg/labels" listersflowcontrolv1beta3 "k8s.io/client-go/listers/flowcontrol/v1beta3" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // PriorityLevelConfigurationClusterLister helps list PriorityLevelConfigurations across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/imagepolicy/v1alpha1/imagereview.go b/staging/src/github.com/kcp-dev/client-go/listers/imagepolicy/v1alpha1/imagereview.go index 8871a27e1f1..a51caaa346e 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/imagepolicy/v1alpha1/imagereview.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/imagepolicy/v1alpha1/imagereview.go @@ -19,14 +19,13 @@ limitations under the License. package v1alpha1 import ( - "github.com/kcp-dev/logicalcluster/v3" - imagepolicyv1alpha1 "k8s.io/api/imagepolicy/v1alpha1" "k8s.io/apimachinery/pkg/labels" listersimagepolicyv1alpha1 "k8s.io/client-go/listers/imagepolicy/v1alpha1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ImageReviewClusterLister helps list ImageReviews across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/networking/v1/ingress.go b/staging/src/github.com/kcp-dev/client-go/listers/networking/v1/ingress.go index bb09975dabf..1b87752e364 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/networking/v1/ingress.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/networking/v1/ingress.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - networkingv1 "k8s.io/api/networking/v1" "k8s.io/apimachinery/pkg/labels" listersnetworkingv1 "k8s.io/client-go/listers/networking/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // IngressClusterLister helps list Ingresses across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/networking/v1/ingressclass.go b/staging/src/github.com/kcp-dev/client-go/listers/networking/v1/ingressclass.go index 46296102d42..f9913cfe49f 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/networking/v1/ingressclass.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/networking/v1/ingressclass.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - networkingv1 "k8s.io/api/networking/v1" "k8s.io/apimachinery/pkg/labels" listersnetworkingv1 "k8s.io/client-go/listers/networking/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // IngressClassClusterLister helps list IngressClasses across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/networking/v1/ipaddress.go b/staging/src/github.com/kcp-dev/client-go/listers/networking/v1/ipaddress.go index 73a88763719..2757e3c7724 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/networking/v1/ipaddress.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/networking/v1/ipaddress.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - networkingv1 "k8s.io/api/networking/v1" "k8s.io/apimachinery/pkg/labels" listersnetworkingv1 "k8s.io/client-go/listers/networking/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // IPAddressClusterLister helps list IPAddresses across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/networking/v1/networkpolicy.go b/staging/src/github.com/kcp-dev/client-go/listers/networking/v1/networkpolicy.go index 8f13015ebfd..e955011933d 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/networking/v1/networkpolicy.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/networking/v1/networkpolicy.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - networkingv1 "k8s.io/api/networking/v1" "k8s.io/apimachinery/pkg/labels" listersnetworkingv1 "k8s.io/client-go/listers/networking/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // NetworkPolicyClusterLister helps list NetworkPolicies across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/networking/v1/servicecidr.go b/staging/src/github.com/kcp-dev/client-go/listers/networking/v1/servicecidr.go index 57250d06163..211d6210cbd 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/networking/v1/servicecidr.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/networking/v1/servicecidr.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - networkingv1 "k8s.io/api/networking/v1" "k8s.io/apimachinery/pkg/labels" listersnetworkingv1 "k8s.io/client-go/listers/networking/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ServiceCIDRClusterLister helps list ServiceCIDRs across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/networking/v1alpha1/ipaddress.go b/staging/src/github.com/kcp-dev/client-go/listers/networking/v1alpha1/ipaddress.go index caae2c796b0..357e93551d9 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/networking/v1alpha1/ipaddress.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/networking/v1alpha1/ipaddress.go @@ -19,14 +19,13 @@ limitations under the License. package v1alpha1 import ( - "github.com/kcp-dev/logicalcluster/v3" - networkingv1alpha1 "k8s.io/api/networking/v1alpha1" "k8s.io/apimachinery/pkg/labels" listersnetworkingv1alpha1 "k8s.io/client-go/listers/networking/v1alpha1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // IPAddressClusterLister helps list IPAddresses across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/networking/v1alpha1/servicecidr.go b/staging/src/github.com/kcp-dev/client-go/listers/networking/v1alpha1/servicecidr.go index 00706db44fe..5b11158553f 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/networking/v1alpha1/servicecidr.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/networking/v1alpha1/servicecidr.go @@ -19,14 +19,13 @@ limitations under the License. package v1alpha1 import ( - "github.com/kcp-dev/logicalcluster/v3" - networkingv1alpha1 "k8s.io/api/networking/v1alpha1" "k8s.io/apimachinery/pkg/labels" listersnetworkingv1alpha1 "k8s.io/client-go/listers/networking/v1alpha1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ServiceCIDRClusterLister helps list ServiceCIDRs across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/networking/v1beta1/ingress.go b/staging/src/github.com/kcp-dev/client-go/listers/networking/v1beta1/ingress.go index 6f34599218b..f6783f25b6d 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/networking/v1beta1/ingress.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/networking/v1beta1/ingress.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - networkingv1beta1 "k8s.io/api/networking/v1beta1" "k8s.io/apimachinery/pkg/labels" listersnetworkingv1beta1 "k8s.io/client-go/listers/networking/v1beta1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // IngressClusterLister helps list Ingresses across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/networking/v1beta1/ingressclass.go b/staging/src/github.com/kcp-dev/client-go/listers/networking/v1beta1/ingressclass.go index d858f2de5e7..526807a686b 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/networking/v1beta1/ingressclass.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/networking/v1beta1/ingressclass.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - networkingv1beta1 "k8s.io/api/networking/v1beta1" "k8s.io/apimachinery/pkg/labels" listersnetworkingv1beta1 "k8s.io/client-go/listers/networking/v1beta1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // IngressClassClusterLister helps list IngressClasses across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/networking/v1beta1/ipaddress.go b/staging/src/github.com/kcp-dev/client-go/listers/networking/v1beta1/ipaddress.go index 539cac94463..0afdaff90c1 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/networking/v1beta1/ipaddress.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/networking/v1beta1/ipaddress.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - networkingv1beta1 "k8s.io/api/networking/v1beta1" "k8s.io/apimachinery/pkg/labels" listersnetworkingv1beta1 "k8s.io/client-go/listers/networking/v1beta1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // IPAddressClusterLister helps list IPAddresses across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/networking/v1beta1/servicecidr.go b/staging/src/github.com/kcp-dev/client-go/listers/networking/v1beta1/servicecidr.go index 09464da336d..00d7a884a2f 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/networking/v1beta1/servicecidr.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/networking/v1beta1/servicecidr.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - networkingv1beta1 "k8s.io/api/networking/v1beta1" "k8s.io/apimachinery/pkg/labels" listersnetworkingv1beta1 "k8s.io/client-go/listers/networking/v1beta1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ServiceCIDRClusterLister helps list ServiceCIDRs across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/node/v1/runtimeclass.go b/staging/src/github.com/kcp-dev/client-go/listers/node/v1/runtimeclass.go index ab8f5a86334..72b543a8118 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/node/v1/runtimeclass.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/node/v1/runtimeclass.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - nodev1 "k8s.io/api/node/v1" "k8s.io/apimachinery/pkg/labels" listersnodev1 "k8s.io/client-go/listers/node/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // RuntimeClassClusterLister helps list RuntimeClasses across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/node/v1alpha1/runtimeclass.go b/staging/src/github.com/kcp-dev/client-go/listers/node/v1alpha1/runtimeclass.go index 64f864aa1ad..13bf2995a94 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/node/v1alpha1/runtimeclass.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/node/v1alpha1/runtimeclass.go @@ -19,14 +19,13 @@ limitations under the License. package v1alpha1 import ( - "github.com/kcp-dev/logicalcluster/v3" - nodev1alpha1 "k8s.io/api/node/v1alpha1" "k8s.io/apimachinery/pkg/labels" listersnodev1alpha1 "k8s.io/client-go/listers/node/v1alpha1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // RuntimeClassClusterLister helps list RuntimeClasses across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/node/v1beta1/runtimeclass.go b/staging/src/github.com/kcp-dev/client-go/listers/node/v1beta1/runtimeclass.go index 8d755c58baf..a48fdcef588 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/node/v1beta1/runtimeclass.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/node/v1beta1/runtimeclass.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - nodev1beta1 "k8s.io/api/node/v1beta1" "k8s.io/apimachinery/pkg/labels" listersnodev1beta1 "k8s.io/client-go/listers/node/v1beta1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // RuntimeClassClusterLister helps list RuntimeClasses across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/policy/v1/eviction.go b/staging/src/github.com/kcp-dev/client-go/listers/policy/v1/eviction.go index 07551c3b39e..54453890364 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/policy/v1/eviction.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/policy/v1/eviction.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - policyv1 "k8s.io/api/policy/v1" "k8s.io/apimachinery/pkg/labels" listerspolicyv1 "k8s.io/client-go/listers/policy/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // EvictionClusterLister helps list Evictions across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/policy/v1/poddisruptionbudget.go b/staging/src/github.com/kcp-dev/client-go/listers/policy/v1/poddisruptionbudget.go index 39e9df62701..aa66118906b 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/policy/v1/poddisruptionbudget.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/policy/v1/poddisruptionbudget.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - policyv1 "k8s.io/api/policy/v1" "k8s.io/apimachinery/pkg/labels" listerspolicyv1 "k8s.io/client-go/listers/policy/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // PodDisruptionBudgetClusterLister helps list PodDisruptionBudgets across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/policy/v1beta1/eviction.go b/staging/src/github.com/kcp-dev/client-go/listers/policy/v1beta1/eviction.go index 457af21c9f0..db99454e514 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/policy/v1beta1/eviction.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/policy/v1beta1/eviction.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - policyv1beta1 "k8s.io/api/policy/v1beta1" "k8s.io/apimachinery/pkg/labels" listerspolicyv1beta1 "k8s.io/client-go/listers/policy/v1beta1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // EvictionClusterLister helps list Evictions across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/policy/v1beta1/poddisruptionbudget.go b/staging/src/github.com/kcp-dev/client-go/listers/policy/v1beta1/poddisruptionbudget.go index 87c2e7d8f84..fa822e006a2 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/policy/v1beta1/poddisruptionbudget.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/policy/v1beta1/poddisruptionbudget.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - policyv1beta1 "k8s.io/api/policy/v1beta1" "k8s.io/apimachinery/pkg/labels" listerspolicyv1beta1 "k8s.io/client-go/listers/policy/v1beta1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // PodDisruptionBudgetClusterLister helps list PodDisruptionBudgets across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1/clusterrole.go b/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1/clusterrole.go index 7fa581f1e33..dfdf2ab0d20 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1/clusterrole.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1/clusterrole.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - rbacv1 "k8s.io/api/rbac/v1" "k8s.io/apimachinery/pkg/labels" listersrbacv1 "k8s.io/client-go/listers/rbac/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterRoleClusterLister helps list ClusterRoles across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1/clusterrolebinding.go b/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1/clusterrolebinding.go index f6c6e82816d..e70dea79992 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1/clusterrolebinding.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1/clusterrolebinding.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - rbacv1 "k8s.io/api/rbac/v1" "k8s.io/apimachinery/pkg/labels" listersrbacv1 "k8s.io/client-go/listers/rbac/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterRoleBindingClusterLister helps list ClusterRoleBindings across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1/role.go b/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1/role.go index 280233b40d6..50bca0462ff 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1/role.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1/role.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - rbacv1 "k8s.io/api/rbac/v1" "k8s.io/apimachinery/pkg/labels" listersrbacv1 "k8s.io/client-go/listers/rbac/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // RoleClusterLister helps list Roles across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1/rolebinding.go b/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1/rolebinding.go index cb9984a9517..6c4b2d53ce9 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1/rolebinding.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1/rolebinding.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - rbacv1 "k8s.io/api/rbac/v1" "k8s.io/apimachinery/pkg/labels" listersrbacv1 "k8s.io/client-go/listers/rbac/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // RoleBindingClusterLister helps list RoleBindings across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1alpha1/clusterrole.go b/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1alpha1/clusterrole.go index 75f1e4f9d2b..b9b02da2d18 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1alpha1/clusterrole.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1alpha1/clusterrole.go @@ -19,14 +19,13 @@ limitations under the License. package v1alpha1 import ( - "github.com/kcp-dev/logicalcluster/v3" - rbacv1alpha1 "k8s.io/api/rbac/v1alpha1" "k8s.io/apimachinery/pkg/labels" listersrbacv1alpha1 "k8s.io/client-go/listers/rbac/v1alpha1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterRoleClusterLister helps list ClusterRoles across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1alpha1/clusterrolebinding.go b/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1alpha1/clusterrolebinding.go index 81a10b70aac..22ab9651239 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1alpha1/clusterrolebinding.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1alpha1/clusterrolebinding.go @@ -19,14 +19,13 @@ limitations under the License. package v1alpha1 import ( - "github.com/kcp-dev/logicalcluster/v3" - rbacv1alpha1 "k8s.io/api/rbac/v1alpha1" "k8s.io/apimachinery/pkg/labels" listersrbacv1alpha1 "k8s.io/client-go/listers/rbac/v1alpha1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterRoleBindingClusterLister helps list ClusterRoleBindings across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1alpha1/role.go b/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1alpha1/role.go index 3e74c849b7e..a482c985e5a 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1alpha1/role.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1alpha1/role.go @@ -19,14 +19,13 @@ limitations under the License. package v1alpha1 import ( - "github.com/kcp-dev/logicalcluster/v3" - rbacv1alpha1 "k8s.io/api/rbac/v1alpha1" "k8s.io/apimachinery/pkg/labels" listersrbacv1alpha1 "k8s.io/client-go/listers/rbac/v1alpha1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // RoleClusterLister helps list Roles across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1alpha1/rolebinding.go b/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1alpha1/rolebinding.go index 867d4129b36..edd127c9cee 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1alpha1/rolebinding.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1alpha1/rolebinding.go @@ -19,14 +19,13 @@ limitations under the License. package v1alpha1 import ( - "github.com/kcp-dev/logicalcluster/v3" - rbacv1alpha1 "k8s.io/api/rbac/v1alpha1" "k8s.io/apimachinery/pkg/labels" listersrbacv1alpha1 "k8s.io/client-go/listers/rbac/v1alpha1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // RoleBindingClusterLister helps list RoleBindings across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1beta1/clusterrole.go b/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1beta1/clusterrole.go index de3feab6fc4..4c6f98dac2c 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1beta1/clusterrole.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1beta1/clusterrole.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - rbacv1beta1 "k8s.io/api/rbac/v1beta1" "k8s.io/apimachinery/pkg/labels" listersrbacv1beta1 "k8s.io/client-go/listers/rbac/v1beta1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterRoleClusterLister helps list ClusterRoles across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1beta1/clusterrolebinding.go b/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1beta1/clusterrolebinding.go index 3a692b3c1b6..4799e33f82e 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1beta1/clusterrolebinding.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1beta1/clusterrolebinding.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - rbacv1beta1 "k8s.io/api/rbac/v1beta1" "k8s.io/apimachinery/pkg/labels" listersrbacv1beta1 "k8s.io/client-go/listers/rbac/v1beta1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterRoleBindingClusterLister helps list ClusterRoleBindings across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1beta1/role.go b/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1beta1/role.go index fc66906ee81..874b9d837ea 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1beta1/role.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1beta1/role.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - rbacv1beta1 "k8s.io/api/rbac/v1beta1" "k8s.io/apimachinery/pkg/labels" listersrbacv1beta1 "k8s.io/client-go/listers/rbac/v1beta1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // RoleClusterLister helps list Roles across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1beta1/rolebinding.go b/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1beta1/rolebinding.go index 4c6e50be651..7036ff4d610 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1beta1/rolebinding.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/rbac/v1beta1/rolebinding.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - rbacv1beta1 "k8s.io/api/rbac/v1beta1" "k8s.io/apimachinery/pkg/labels" listersrbacv1beta1 "k8s.io/client-go/listers/rbac/v1beta1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // RoleBindingClusterLister helps list RoleBindings across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/resource/v1alpha3/deviceclass.go b/staging/src/github.com/kcp-dev/client-go/listers/resource/v1alpha3/deviceclass.go index 87719871a1c..363077821ba 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/resource/v1alpha3/deviceclass.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/resource/v1alpha3/deviceclass.go @@ -19,14 +19,13 @@ limitations under the License. package v1alpha3 import ( - "github.com/kcp-dev/logicalcluster/v3" - resourcev1alpha3 "k8s.io/api/resource/v1alpha3" "k8s.io/apimachinery/pkg/labels" listersresourcev1alpha3 "k8s.io/client-go/listers/resource/v1alpha3" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // DeviceClassClusterLister helps list DeviceClasses across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/resource/v1alpha3/devicetaintrule.go b/staging/src/github.com/kcp-dev/client-go/listers/resource/v1alpha3/devicetaintrule.go index 29e6c1c2b24..a298bbea68d 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/resource/v1alpha3/devicetaintrule.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/resource/v1alpha3/devicetaintrule.go @@ -19,14 +19,13 @@ limitations under the License. package v1alpha3 import ( - "github.com/kcp-dev/logicalcluster/v3" - resourcev1alpha3 "k8s.io/api/resource/v1alpha3" "k8s.io/apimachinery/pkg/labels" listersresourcev1alpha3 "k8s.io/client-go/listers/resource/v1alpha3" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // DeviceTaintRuleClusterLister helps list DeviceTaintRules across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/resource/v1alpha3/resourceclaim.go b/staging/src/github.com/kcp-dev/client-go/listers/resource/v1alpha3/resourceclaim.go index 39f0f075736..b360d51531c 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/resource/v1alpha3/resourceclaim.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/resource/v1alpha3/resourceclaim.go @@ -19,14 +19,13 @@ limitations under the License. package v1alpha3 import ( - "github.com/kcp-dev/logicalcluster/v3" - resourcev1alpha3 "k8s.io/api/resource/v1alpha3" "k8s.io/apimachinery/pkg/labels" listersresourcev1alpha3 "k8s.io/client-go/listers/resource/v1alpha3" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ResourceClaimClusterLister helps list ResourceClaims across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/resource/v1alpha3/resourceclaimtemplate.go b/staging/src/github.com/kcp-dev/client-go/listers/resource/v1alpha3/resourceclaimtemplate.go index 164d285f827..bf36e00392d 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/resource/v1alpha3/resourceclaimtemplate.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/resource/v1alpha3/resourceclaimtemplate.go @@ -19,14 +19,13 @@ limitations under the License. package v1alpha3 import ( - "github.com/kcp-dev/logicalcluster/v3" - resourcev1alpha3 "k8s.io/api/resource/v1alpha3" "k8s.io/apimachinery/pkg/labels" listersresourcev1alpha3 "k8s.io/client-go/listers/resource/v1alpha3" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ResourceClaimTemplateClusterLister helps list ResourceClaimTemplates across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/resource/v1alpha3/resourceslice.go b/staging/src/github.com/kcp-dev/client-go/listers/resource/v1alpha3/resourceslice.go index d76e21f89ff..49af13bdeff 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/resource/v1alpha3/resourceslice.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/resource/v1alpha3/resourceslice.go @@ -19,14 +19,13 @@ limitations under the License. package v1alpha3 import ( - "github.com/kcp-dev/logicalcluster/v3" - resourcev1alpha3 "k8s.io/api/resource/v1alpha3" "k8s.io/apimachinery/pkg/labels" listersresourcev1alpha3 "k8s.io/client-go/listers/resource/v1alpha3" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ResourceSliceClusterLister helps list ResourceSlices across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/resource/v1beta1/deviceclass.go b/staging/src/github.com/kcp-dev/client-go/listers/resource/v1beta1/deviceclass.go index 04f94b360bd..f51fec862df 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/resource/v1beta1/deviceclass.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/resource/v1beta1/deviceclass.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - resourcev1beta1 "k8s.io/api/resource/v1beta1" "k8s.io/apimachinery/pkg/labels" listersresourcev1beta1 "k8s.io/client-go/listers/resource/v1beta1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // DeviceClassClusterLister helps list DeviceClasses across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/resource/v1beta1/resourceclaim.go b/staging/src/github.com/kcp-dev/client-go/listers/resource/v1beta1/resourceclaim.go index 26d783bd877..d0875551af0 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/resource/v1beta1/resourceclaim.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/resource/v1beta1/resourceclaim.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - resourcev1beta1 "k8s.io/api/resource/v1beta1" "k8s.io/apimachinery/pkg/labels" listersresourcev1beta1 "k8s.io/client-go/listers/resource/v1beta1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ResourceClaimClusterLister helps list ResourceClaims across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/resource/v1beta1/resourceclaimtemplate.go b/staging/src/github.com/kcp-dev/client-go/listers/resource/v1beta1/resourceclaimtemplate.go index 1f0b805b7aa..073fa3354a5 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/resource/v1beta1/resourceclaimtemplate.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/resource/v1beta1/resourceclaimtemplate.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - resourcev1beta1 "k8s.io/api/resource/v1beta1" "k8s.io/apimachinery/pkg/labels" listersresourcev1beta1 "k8s.io/client-go/listers/resource/v1beta1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ResourceClaimTemplateClusterLister helps list ResourceClaimTemplates across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/resource/v1beta1/resourceslice.go b/staging/src/github.com/kcp-dev/client-go/listers/resource/v1beta1/resourceslice.go index 7d25f1c753a..38611ea8dbb 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/resource/v1beta1/resourceslice.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/resource/v1beta1/resourceslice.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - resourcev1beta1 "k8s.io/api/resource/v1beta1" "k8s.io/apimachinery/pkg/labels" listersresourcev1beta1 "k8s.io/client-go/listers/resource/v1beta1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ResourceSliceClusterLister helps list ResourceSlices across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/resource/v1beta2/deviceclass.go b/staging/src/github.com/kcp-dev/client-go/listers/resource/v1beta2/deviceclass.go index 0595c37ae68..95c6e14eefd 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/resource/v1beta2/deviceclass.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/resource/v1beta2/deviceclass.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta2 import ( - "github.com/kcp-dev/logicalcluster/v3" - resourcev1beta2 "k8s.io/api/resource/v1beta2" "k8s.io/apimachinery/pkg/labels" listersresourcev1beta2 "k8s.io/client-go/listers/resource/v1beta2" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // DeviceClassClusterLister helps list DeviceClasses across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/resource/v1beta2/resourceclaim.go b/staging/src/github.com/kcp-dev/client-go/listers/resource/v1beta2/resourceclaim.go index 0019174268c..a8d5a1f5275 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/resource/v1beta2/resourceclaim.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/resource/v1beta2/resourceclaim.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta2 import ( - "github.com/kcp-dev/logicalcluster/v3" - resourcev1beta2 "k8s.io/api/resource/v1beta2" "k8s.io/apimachinery/pkg/labels" listersresourcev1beta2 "k8s.io/client-go/listers/resource/v1beta2" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ResourceClaimClusterLister helps list ResourceClaims across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/resource/v1beta2/resourceclaimtemplate.go b/staging/src/github.com/kcp-dev/client-go/listers/resource/v1beta2/resourceclaimtemplate.go index 2f0347eaff5..0beda8952c7 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/resource/v1beta2/resourceclaimtemplate.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/resource/v1beta2/resourceclaimtemplate.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta2 import ( - "github.com/kcp-dev/logicalcluster/v3" - resourcev1beta2 "k8s.io/api/resource/v1beta2" "k8s.io/apimachinery/pkg/labels" listersresourcev1beta2 "k8s.io/client-go/listers/resource/v1beta2" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ResourceClaimTemplateClusterLister helps list ResourceClaimTemplates across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/resource/v1beta2/resourceslice.go b/staging/src/github.com/kcp-dev/client-go/listers/resource/v1beta2/resourceslice.go index a5b5f64b0a1..b16b1549270 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/resource/v1beta2/resourceslice.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/resource/v1beta2/resourceslice.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta2 import ( - "github.com/kcp-dev/logicalcluster/v3" - resourcev1beta2 "k8s.io/api/resource/v1beta2" "k8s.io/apimachinery/pkg/labels" listersresourcev1beta2 "k8s.io/client-go/listers/resource/v1beta2" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ResourceSliceClusterLister helps list ResourceSlices across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/scheduling/v1/priorityclass.go b/staging/src/github.com/kcp-dev/client-go/listers/scheduling/v1/priorityclass.go index 747ccf2c38a..795b17b7ca2 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/scheduling/v1/priorityclass.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/scheduling/v1/priorityclass.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - schedulingv1 "k8s.io/api/scheduling/v1" "k8s.io/apimachinery/pkg/labels" listersschedulingv1 "k8s.io/client-go/listers/scheduling/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // PriorityClassClusterLister helps list PriorityClasses across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/scheduling/v1alpha1/priorityclass.go b/staging/src/github.com/kcp-dev/client-go/listers/scheduling/v1alpha1/priorityclass.go index 5ed4703b797..54330b803c0 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/scheduling/v1alpha1/priorityclass.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/scheduling/v1alpha1/priorityclass.go @@ -19,14 +19,13 @@ limitations under the License. package v1alpha1 import ( - "github.com/kcp-dev/logicalcluster/v3" - schedulingv1alpha1 "k8s.io/api/scheduling/v1alpha1" "k8s.io/apimachinery/pkg/labels" listersschedulingv1alpha1 "k8s.io/client-go/listers/scheduling/v1alpha1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // PriorityClassClusterLister helps list PriorityClasses across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/scheduling/v1beta1/priorityclass.go b/staging/src/github.com/kcp-dev/client-go/listers/scheduling/v1beta1/priorityclass.go index 6eb02fce9ab..5afa32cbf75 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/scheduling/v1beta1/priorityclass.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/scheduling/v1beta1/priorityclass.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - schedulingv1beta1 "k8s.io/api/scheduling/v1beta1" "k8s.io/apimachinery/pkg/labels" listersschedulingv1beta1 "k8s.io/client-go/listers/scheduling/v1beta1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // PriorityClassClusterLister helps list PriorityClasses across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/storage/v1/csidriver.go b/staging/src/github.com/kcp-dev/client-go/listers/storage/v1/csidriver.go index b14c66d7d33..c2d1d1e2f0f 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/storage/v1/csidriver.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/storage/v1/csidriver.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - storagev1 "k8s.io/api/storage/v1" "k8s.io/apimachinery/pkg/labels" listersstoragev1 "k8s.io/client-go/listers/storage/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // CSIDriverClusterLister helps list CSIDrivers across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/storage/v1/csinode.go b/staging/src/github.com/kcp-dev/client-go/listers/storage/v1/csinode.go index 1351b177145..bc44020a2e0 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/storage/v1/csinode.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/storage/v1/csinode.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - storagev1 "k8s.io/api/storage/v1" "k8s.io/apimachinery/pkg/labels" listersstoragev1 "k8s.io/client-go/listers/storage/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // CSINodeClusterLister helps list CSINodes across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/storage/v1/csistoragecapacity.go b/staging/src/github.com/kcp-dev/client-go/listers/storage/v1/csistoragecapacity.go index 5c5f19fd24a..a7c26521f8d 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/storage/v1/csistoragecapacity.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/storage/v1/csistoragecapacity.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - storagev1 "k8s.io/api/storage/v1" "k8s.io/apimachinery/pkg/labels" listersstoragev1 "k8s.io/client-go/listers/storage/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // CSIStorageCapacityClusterLister helps list CSIStorageCapacities across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/storage/v1/storageclass.go b/staging/src/github.com/kcp-dev/client-go/listers/storage/v1/storageclass.go index f1b6a178f14..6b970db1fb7 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/storage/v1/storageclass.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/storage/v1/storageclass.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - storagev1 "k8s.io/api/storage/v1" "k8s.io/apimachinery/pkg/labels" listersstoragev1 "k8s.io/client-go/listers/storage/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // StorageClassClusterLister helps list StorageClasses across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/storage/v1/volumeattachment.go b/staging/src/github.com/kcp-dev/client-go/listers/storage/v1/volumeattachment.go index 450be0372be..1bb3bb137d2 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/storage/v1/volumeattachment.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/storage/v1/volumeattachment.go @@ -19,14 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" - storagev1 "k8s.io/api/storage/v1" "k8s.io/apimachinery/pkg/labels" listersstoragev1 "k8s.io/client-go/listers/storage/v1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // VolumeAttachmentClusterLister helps list VolumeAttachments across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/storage/v1alpha1/csistoragecapacity.go b/staging/src/github.com/kcp-dev/client-go/listers/storage/v1alpha1/csistoragecapacity.go index 5652d245e9e..df22ca69324 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/storage/v1alpha1/csistoragecapacity.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/storage/v1alpha1/csistoragecapacity.go @@ -19,14 +19,13 @@ limitations under the License. package v1alpha1 import ( - "github.com/kcp-dev/logicalcluster/v3" - storagev1alpha1 "k8s.io/api/storage/v1alpha1" "k8s.io/apimachinery/pkg/labels" listersstoragev1alpha1 "k8s.io/client-go/listers/storage/v1alpha1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // CSIStorageCapacityClusterLister helps list CSIStorageCapacities across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/storage/v1alpha1/volumeattachment.go b/staging/src/github.com/kcp-dev/client-go/listers/storage/v1alpha1/volumeattachment.go index 71e330d5c3a..48763e1aa76 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/storage/v1alpha1/volumeattachment.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/storage/v1alpha1/volumeattachment.go @@ -19,14 +19,13 @@ limitations under the License. package v1alpha1 import ( - "github.com/kcp-dev/logicalcluster/v3" - storagev1alpha1 "k8s.io/api/storage/v1alpha1" "k8s.io/apimachinery/pkg/labels" listersstoragev1alpha1 "k8s.io/client-go/listers/storage/v1alpha1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // VolumeAttachmentClusterLister helps list VolumeAttachments across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/storage/v1alpha1/volumeattributesclass.go b/staging/src/github.com/kcp-dev/client-go/listers/storage/v1alpha1/volumeattributesclass.go index 049eb5367a7..ee045baf544 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/storage/v1alpha1/volumeattributesclass.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/storage/v1alpha1/volumeattributesclass.go @@ -19,14 +19,13 @@ limitations under the License. package v1alpha1 import ( - "github.com/kcp-dev/logicalcluster/v3" - storagev1alpha1 "k8s.io/api/storage/v1alpha1" "k8s.io/apimachinery/pkg/labels" listersstoragev1alpha1 "k8s.io/client-go/listers/storage/v1alpha1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // VolumeAttributesClassClusterLister helps list VolumeAttributesClasses across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/storage/v1beta1/csidriver.go b/staging/src/github.com/kcp-dev/client-go/listers/storage/v1beta1/csidriver.go index 91a2c5a8399..928174205e5 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/storage/v1beta1/csidriver.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/storage/v1beta1/csidriver.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - storagev1beta1 "k8s.io/api/storage/v1beta1" "k8s.io/apimachinery/pkg/labels" listersstoragev1beta1 "k8s.io/client-go/listers/storage/v1beta1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // CSIDriverClusterLister helps list CSIDrivers across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/storage/v1beta1/csinode.go b/staging/src/github.com/kcp-dev/client-go/listers/storage/v1beta1/csinode.go index d09e580922a..fa8407da1bf 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/storage/v1beta1/csinode.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/storage/v1beta1/csinode.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - storagev1beta1 "k8s.io/api/storage/v1beta1" "k8s.io/apimachinery/pkg/labels" listersstoragev1beta1 "k8s.io/client-go/listers/storage/v1beta1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // CSINodeClusterLister helps list CSINodes across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/storage/v1beta1/csistoragecapacity.go b/staging/src/github.com/kcp-dev/client-go/listers/storage/v1beta1/csistoragecapacity.go index fe7828e30a7..cdac3c725ee 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/storage/v1beta1/csistoragecapacity.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/storage/v1beta1/csistoragecapacity.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - storagev1beta1 "k8s.io/api/storage/v1beta1" "k8s.io/apimachinery/pkg/labels" listersstoragev1beta1 "k8s.io/client-go/listers/storage/v1beta1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // CSIStorageCapacityClusterLister helps list CSIStorageCapacities across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/storage/v1beta1/storageclass.go b/staging/src/github.com/kcp-dev/client-go/listers/storage/v1beta1/storageclass.go index d63524acd81..1fcc00fd0cc 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/storage/v1beta1/storageclass.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/storage/v1beta1/storageclass.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - storagev1beta1 "k8s.io/api/storage/v1beta1" "k8s.io/apimachinery/pkg/labels" listersstoragev1beta1 "k8s.io/client-go/listers/storage/v1beta1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // StorageClassClusterLister helps list StorageClasses across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/storage/v1beta1/volumeattachment.go b/staging/src/github.com/kcp-dev/client-go/listers/storage/v1beta1/volumeattachment.go index eef229acdbb..90561740b8e 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/storage/v1beta1/volumeattachment.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/storage/v1beta1/volumeattachment.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - storagev1beta1 "k8s.io/api/storage/v1beta1" "k8s.io/apimachinery/pkg/labels" listersstoragev1beta1 "k8s.io/client-go/listers/storage/v1beta1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // VolumeAttachmentClusterLister helps list VolumeAttachments across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/storage/v1beta1/volumeattributesclass.go b/staging/src/github.com/kcp-dev/client-go/listers/storage/v1beta1/volumeattributesclass.go index ae48b7cee67..7740f213cc4 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/storage/v1beta1/volumeattributesclass.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/storage/v1beta1/volumeattributesclass.go @@ -19,14 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" - storagev1beta1 "k8s.io/api/storage/v1beta1" "k8s.io/apimachinery/pkg/labels" listersstoragev1beta1 "k8s.io/client-go/listers/storage/v1beta1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // VolumeAttributesClassClusterLister helps list VolumeAttributesClasses across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/listers/storagemigration/v1alpha1/storageversionmigration.go b/staging/src/github.com/kcp-dev/client-go/listers/storagemigration/v1alpha1/storageversionmigration.go index b1fbc1a96ae..8bff1141d62 100644 --- a/staging/src/github.com/kcp-dev/client-go/listers/storagemigration/v1alpha1/storageversionmigration.go +++ b/staging/src/github.com/kcp-dev/client-go/listers/storagemigration/v1alpha1/storageversionmigration.go @@ -19,14 +19,13 @@ limitations under the License. package v1alpha1 import ( - "github.com/kcp-dev/logicalcluster/v3" - storagemigrationv1alpha1 "k8s.io/api/storagemigration/v1alpha1" "k8s.io/apimachinery/pkg/labels" listersstoragemigrationv1alpha1 "k8s.io/client-go/listers/storagemigration/v1alpha1" "k8s.io/client-go/tools/cache" kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // StorageVersionMigrationClusterLister helps list StorageVersionMigrations across all workspaces, diff --git a/staging/src/github.com/kcp-dev/client-go/metadata/clientset.go b/staging/src/github.com/kcp-dev/client-go/metadata/clientset.go index 0a1c56e6392..d4724c129b3 100644 --- a/staging/src/github.com/kcp-dev/client-go/metadata/clientset.go +++ b/staging/src/github.com/kcp-dev/client-go/metadata/clientset.go @@ -21,15 +21,15 @@ import ( "fmt" "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime/schema" "k8s.io/apimachinery/pkg/watch" "k8s.io/client-go/metadata" "k8s.io/client-go/rest" "k8s.io/client-go/util/flowcontrol" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) var _ ClusterInterface = (*ClusterClientset)(nil) diff --git a/staging/src/github.com/kcp-dev/client-go/metadata/interface.go b/staging/src/github.com/kcp-dev/client-go/metadata/interface.go index 3f81515c8f9..c35c2f6318a 100644 --- a/staging/src/github.com/kcp-dev/client-go/metadata/interface.go +++ b/staging/src/github.com/kcp-dev/client-go/metadata/interface.go @@ -19,12 +19,12 @@ package metadata import ( "context" - "github.com/kcp-dev/logicalcluster/v3" - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime/schema" "k8s.io/apimachinery/pkg/watch" "k8s.io/client-go/metadata" + + "github.com/kcp-dev/logicalcluster/v3" ) type ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/metadata/metadatainformer/informer.go b/staging/src/github.com/kcp-dev/client-go/metadata/metadatainformer/informer.go index 0d19efb28a5..86551f97193 100644 --- a/staging/src/github.com/kcp-dev/client-go/metadata/metadatainformer/informer.go +++ b/staging/src/github.com/kcp-dev/client-go/metadata/metadatainformer/informer.go @@ -21,10 +21,6 @@ import ( "sync" "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - thirdpartyinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - "github.com/kcp-dev/logicalcluster/v3" - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" "k8s.io/apimachinery/pkg/runtime" @@ -34,9 +30,12 @@ import ( "k8s.io/client-go/metadata/metadatainformer" "k8s.io/client-go/tools/cache" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + thirdpartyinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" kcpinformers "github.com/kcp-dev/client-go/informers" kcpmetadata "github.com/kcp-dev/client-go/metadata" kcpmetadatalisters "github.com/kcp-dev/client-go/metadata/metadatalister" + "github.com/kcp-dev/logicalcluster/v3" ) // NewSharedInformerFactory constructs a new instance of sharedInformerFactory for all namespaces. diff --git a/staging/src/github.com/kcp-dev/client-go/metadata/metadatalister/interface.go b/staging/src/github.com/kcp-dev/client-go/metadata/metadatalister/interface.go index 4d17f5bb754..f0f68fa33e6 100644 --- a/staging/src/github.com/kcp-dev/client-go/metadata/metadatalister/interface.go +++ b/staging/src/github.com/kcp-dev/client-go/metadata/metadatalister/interface.go @@ -17,11 +17,11 @@ limitations under the License. package metadatalister import ( - "github.com/kcp-dev/logicalcluster/v3" - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/labels" "k8s.io/client-go/metadata/metadatalister" + + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterLister can list resources across all workspaces, or scope down to a Lister for one workspace. diff --git a/staging/src/github.com/kcp-dev/client-go/metadata/metadatalister/lister.go b/staging/src/github.com/kcp-dev/client-go/metadata/metadatalister/lister.go index 3d85aa975ae..532c6df4e5a 100644 --- a/staging/src/github.com/kcp-dev/client-go/metadata/metadatalister/lister.go +++ b/staging/src/github.com/kcp-dev/client-go/metadata/metadatalister/lister.go @@ -17,15 +17,15 @@ limitations under the License. package metadatalister import ( - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - "github.com/kcp-dev/logicalcluster/v3" - "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/labels" "k8s.io/apimachinery/pkg/runtime/schema" "k8s.io/client-go/metadata/metadatalister" "k8s.io/client-go/tools/cache" + + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + "github.com/kcp-dev/logicalcluster/v3" ) // New returns a new ClusterLister. diff --git a/staging/src/github.com/kcp-dev/client-go/metadata/metadatalister/shim.go b/staging/src/github.com/kcp-dev/client-go/metadata/metadatalister/shim.go index 2f980df71f7..faeafb1ec21 100644 --- a/staging/src/github.com/kcp-dev/client-go/metadata/metadatalister/shim.go +++ b/staging/src/github.com/kcp-dev/client-go/metadata/metadatalister/shim.go @@ -17,13 +17,13 @@ limitations under the License. package metadatalister import ( - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - "github.com/kcp-dev/logicalcluster/v3" - "k8s.io/apimachinery/pkg/labels" "k8s.io/apimachinery/pkg/runtime" "k8s.io/client-go/metadata/metadatalister" "k8s.io/client-go/tools/cache" + + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + "github.com/kcp-dev/logicalcluster/v3" ) // NewRuntimeObjectShim returns a new shim for ClusterLister. diff --git a/staging/src/github.com/kcp-dev/client-go/scale/clientset.go b/staging/src/github.com/kcp-dev/client-go/scale/clientset.go index ed3593d4281..e1311b8886c 100644 --- a/staging/src/github.com/kcp-dev/client-go/scale/clientset.go +++ b/staging/src/github.com/kcp-dev/client-go/scale/clientset.go @@ -20,9 +20,6 @@ import ( "fmt" "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - "k8s.io/apimachinery/pkg/runtime/schema" "k8s.io/apimachinery/pkg/runtime/serializer" "k8s.io/client-go/discovery" @@ -32,6 +29,9 @@ import ( "k8s.io/client-go/restmapper" "k8s.io/client-go/scale" "k8s.io/client-go/util/flowcontrol" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) var ( diff --git a/staging/src/github.com/kcp-dev/client-go/scale/interface.go b/staging/src/github.com/kcp-dev/client-go/scale/interface.go index 1c9de783194..69c3efead83 100644 --- a/staging/src/github.com/kcp-dev/client-go/scale/interface.go +++ b/staging/src/github.com/kcp-dev/client-go/scale/interface.go @@ -17,9 +17,9 @@ limitations under the License. package scale import ( - "github.com/kcp-dev/logicalcluster/v3" - "k8s.io/client-go/scale" + + "github.com/kcp-dev/logicalcluster/v3" ) type ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/client-go/third_party/k8s.io/client-go/discovery/fake/discovery.go b/staging/src/github.com/kcp-dev/client-go/third_party/k8s.io/client-go/discovery/fake/discovery.go index 5433464b4cd..e27a7155347 100644 --- a/staging/src/github.com/kcp-dev/client-go/third_party/k8s.io/client-go/discovery/fake/discovery.go +++ b/staging/src/github.com/kcp-dev/client-go/third_party/k8s.io/client-go/discovery/fake/discovery.go @@ -22,7 +22,6 @@ import ( "net/http" openapi_v2 "github.com/google/gnostic-models/openapiv2" - "github.com/kcp-dev/logicalcluster/v3" "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" @@ -34,6 +33,7 @@ import ( restclient "k8s.io/client-go/rest" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // FakeDiscovery implements discovery.DiscoveryInterface and sometimes calls kcptesting.Fake.Invoke with an action, diff --git a/staging/src/github.com/kcp-dev/client-go/third_party/k8s.io/client-go/dynamic/fake/simple.go b/staging/src/github.com/kcp-dev/client-go/third_party/k8s.io/client-go/dynamic/fake/simple.go index d6e41234fbf..86ac8ff1f16 100644 --- a/staging/src/github.com/kcp-dev/client-go/third_party/k8s.io/client-go/dynamic/fake/simple.go +++ b/staging/src/github.com/kcp-dev/client-go/third_party/k8s.io/client-go/dynamic/fake/simple.go @@ -22,8 +22,6 @@ import ( "fmt" "strings" - "github.com/kcp-dev/logicalcluster/v3" - "k8s.io/apimachinery/pkg/api/meta" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" @@ -37,6 +35,7 @@ import ( kcpdynamic "github.com/kcp-dev/client-go/dynamic" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) func NewSimpleDynamicClient(scheme *runtime.Scheme, objects ...runtime.Object) *FakeDynamicClusterClientset { diff --git a/staging/src/github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype/fake_cluster.go b/staging/src/github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype/fake_cluster.go index 4ef682c67a6..7d8c0b979cb 100644 --- a/staging/src/github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype/fake_cluster.go +++ b/staging/src/github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype/fake_cluster.go @@ -19,8 +19,6 @@ package gentype import ( "context" - "github.com/kcp-dev/logicalcluster/v3" - "k8s.io/apimachinery/pkg/api/meta" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" labels "k8s.io/apimachinery/pkg/labels" @@ -29,6 +27,7 @@ import ( watch "k8s.io/apimachinery/pkg/watch" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // FakeClusterClient represents a fake cluster client diff --git a/staging/src/github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype/fake_single.go b/staging/src/github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype/fake_single.go index ded298a3229..0c3dafbda0e 100644 --- a/staging/src/github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype/fake_single.go +++ b/staging/src/github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype/fake_single.go @@ -21,8 +21,6 @@ import ( "encoding/json" "fmt" - "github.com/kcp-dev/logicalcluster/v3" - "k8s.io/apimachinery/pkg/api/meta" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" labels "k8s.io/apimachinery/pkg/labels" @@ -32,6 +30,7 @@ import ( watch "k8s.io/apimachinery/pkg/watch" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // FakeClient represents a fake client diff --git a/staging/src/github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers/generic_helpers.go b/staging/src/github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers/generic_helpers.go index 3b30e5b83c6..139695c8352 100644 --- a/staging/src/github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers/generic_helpers.go +++ b/staging/src/github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers/generic_helpers.go @@ -18,14 +18,14 @@ limitations under the License. package listers import ( - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - "github.com/kcp-dev/logicalcluster/v3" - "k8s.io/apimachinery/pkg/api/errors" "k8s.io/apimachinery/pkg/labels" "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/runtime/schema" "k8s.io/client-go/tools/cache" + + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + "github.com/kcp-dev/logicalcluster/v3" ) // ResourceIndexer wraps an indexer, resource, and optional namespace for a given type. diff --git a/staging/src/github.com/kcp-dev/client-go/third_party/k8s.io/client-go/metadata/fake/simple.go b/staging/src/github.com/kcp-dev/client-go/third_party/k8s.io/client-go/metadata/fake/simple.go index a2521df675f..9c2790f1bdf 100644 --- a/staging/src/github.com/kcp-dev/client-go/third_party/k8s.io/client-go/metadata/fake/simple.go +++ b/staging/src/github.com/kcp-dev/client-go/third_party/k8s.io/client-go/metadata/fake/simple.go @@ -22,8 +22,6 @@ import ( "fmt" "strings" - "github.com/kcp-dev/logicalcluster/v3" - "k8s.io/apimachinery/pkg/api/meta" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/labels" @@ -36,6 +34,7 @@ import ( kcpmetadata "github.com/kcp-dev/client-go/metadata" kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // MetadataClient assists in creating fake objects for use when testing, since metadata.Getter diff --git a/staging/src/github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing/actions.go b/staging/src/github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing/actions.go index c05ed11e6e7..98b18165389 100644 --- a/staging/src/github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing/actions.go +++ b/staging/src/github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing/actions.go @@ -22,14 +22,14 @@ import ( "path" "strings" - "github.com/kcp-dev/logicalcluster/v3" - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/fields" "k8s.io/apimachinery/pkg/labels" "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/runtime/schema" "k8s.io/apimachinery/pkg/types" + + "github.com/kcp-dev/logicalcluster/v3" ) // All NewRoot... functions return non-namespaced actions, and are equivalent to diff --git a/staging/src/github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing/cluster_fake.go b/staging/src/github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing/cluster_fake.go index 560bdf987a8..4df3d3ab676 100644 --- a/staging/src/github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing/cluster_fake.go +++ b/staging/src/github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing/cluster_fake.go @@ -17,11 +17,11 @@ limitations under the License. package testing import ( - "github.com/kcp-dev/logicalcluster/v3" - "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/watch" restclient "k8s.io/client-go/rest" + + "github.com/kcp-dev/logicalcluster/v3" ) type GenericReactor[R any] interface { diff --git a/staging/src/github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing/fake.go b/staging/src/github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing/fake.go index 750da1b6163..457f61c81dc 100644 --- a/staging/src/github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing/fake.go +++ b/staging/src/github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing/fake.go @@ -21,12 +21,12 @@ import ( "fmt" "sync" - "github.com/kcp-dev/logicalcluster/v3" - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/watch" restclient "k8s.io/client-go/rest" + + "github.com/kcp-dev/logicalcluster/v3" ) // Fake implements client.Interface. Meant to be embedded into a struct to get diff --git a/staging/src/github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing/fixture.go b/staging/src/github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing/fixture.go index b578c4b8faf..694449984b6 100644 --- a/staging/src/github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing/fixture.go +++ b/staging/src/github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing/fixture.go @@ -24,8 +24,9 @@ import ( "strings" "sync" - "github.com/kcp-dev/logicalcluster/v3" jsonpatch "gopkg.in/evanphx/json-patch.v4" + "sigs.k8s.io/structured-merge-diff/v4/typed" + "sigs.k8s.io/yaml" apierrors "k8s.io/apimachinery/pkg/api/errors" "k8s.io/apimachinery/pkg/api/meta" @@ -40,8 +41,8 @@ import ( "k8s.io/apimachinery/pkg/util/strategicpatch" "k8s.io/apimachinery/pkg/watch" restclient "k8s.io/client-go/rest" - "sigs.k8s.io/structured-merge-diff/v4/typed" - "sigs.k8s.io/yaml" + + "github.com/kcp-dev/logicalcluster/v3" ) type ClusterNamespacedName struct { diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/go.mod b/staging/src/github.com/kcp-dev/code-generator/examples/go.mod index 3f1bf2c1fe9..811ee8bab00 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/go.mod +++ b/staging/src/github.com/kcp-dev/code-generator/examples/go.mod @@ -51,3 +51,8 @@ require ( sigs.k8s.io/randfill v1.0.0 // indirect sigs.k8s.io/yaml v1.4.0 // indirect ) + +replace ( + github.com/kcp-dev/apimachinery/v2 => ../../apimachinery + github.com/kcp-dev/client-go => ../../client-go +) diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/go.sum b/staging/src/github.com/kcp-dev/code-generator/examples/go.sum index 3f944885452..5db6d66874e 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/go.sum +++ b/staging/src/github.com/kcp-dev/code-generator/examples/go.sum @@ -32,10 +32,6 @@ github.com/josharian/intern v1.0.0 h1:vlS4z54oSdjm0bgjRigI+G1HpF+tI+9rE5LLzOg8Hm github.com/josharian/intern v1.0.0/go.mod h1:5DoeVV0s6jJacbCEi61lwdGj/aVlrQvzHFFd8Hwg//Y= github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM= github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= -github.com/kcp-dev/apimachinery/v2 v2.0.1-0.20250717064240-78e565b4a69a h1:MG1AMJQrRI/Y644cJsZ2qdtdWzVQMRt37DNJd+k4KoI= -github.com/kcp-dev/apimachinery/v2 v2.0.1-0.20250717064240-78e565b4a69a/go.mod h1:rF1jfvUfPjFXs+HV/LN1BtPzAz1bfjJOwVa+hAVfroQ= -github.com/kcp-dev/client-go v0.0.0-20250721105427-d4a93d7c5fc9 h1:tiXWfCv3wpFUuL22RjIU8uTDaACnAdrHb46MRq0Kc2g= -github.com/kcp-dev/client-go v0.0.0-20250721105427-d4a93d7c5fc9/go.mod h1:QdO8AaGAZPr/rIZ1iVanCM3tUOiiuX897GWv7WTByLE= github.com/kcp-dev/logicalcluster/v3 v3.0.5 h1:JbYakokb+5Uinz09oTXomSUJVQsqfxEvU4RyHUYxHOU= github.com/kcp-dev/logicalcluster/v3 v3.0.5/go.mod h1:EWBUBxdr49fUB1cLMO4nOdBWmYifLbP1LfoL20KkXYY= github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/apis/example/v1/register.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/apis/example/v1/register.go index 19836585274..27e0756afba 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/apis/example/v1/register.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/apis/example/v1/register.go @@ -17,11 +17,11 @@ limitations under the License. package v1 import ( + "acme.corp/pkg/apis/example" + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/runtime/schema" - - "acme.corp/pkg/apis/example" ) // SchemeGroupVersion is group version used to register these objects. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/apis/example/v1alpha1/register.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/apis/example/v1alpha1/register.go index 731c84587d4..8392abea100 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/apis/example/v1alpha1/register.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/apis/example/v1alpha1/register.go @@ -17,11 +17,11 @@ limitations under the License. package v1alpha1 import ( + "acme.corp/pkg/apis/example" + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/runtime/schema" - - "acme.corp/pkg/apis/example" ) // SchemeGroupVersion is group version used to register these objects. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/apis/example/v1beta1/register.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/apis/example/v1beta1/register.go index 23d0953bec4..5f1b4133e1c 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/apis/example/v1beta1/register.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/apis/example/v1beta1/register.go @@ -17,11 +17,11 @@ limitations under the License. package v1beta1 import ( + "acme.corp/pkg/apis/example" + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/runtime/schema" - - "acme.corp/pkg/apis/example" ) // SchemeGroupVersion is group version used to register these objects. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/apis/example/v2/register.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/apis/example/v2/register.go index 5025d966174..36ed89745a2 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/apis/example/v2/register.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/apis/example/v2/register.go @@ -17,11 +17,11 @@ limitations under the License. package v2 import ( + "acme.corp/pkg/apis/example" + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/runtime/schema" - - "acme.corp/pkg/apis/example" ) // SchemeGroupVersion is group version used to register these objects. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/apis/example3/v1/register.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/apis/example3/v1/register.go index be7ae215292..a996e6acbb6 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/apis/example3/v1/register.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/apis/example3/v1/register.go @@ -17,11 +17,11 @@ limitations under the License. package v1 import ( + example "acme.corp/pkg/apis/example3" + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/runtime/schema" - - example "acme.corp/pkg/apis/example3" ) // SchemeGroupVersion is group version used to register these objects. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/apis/exampledashed/v1/register.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/apis/exampledashed/v1/register.go index fba99ff2b7e..5f8c47ec6c0 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/apis/exampledashed/v1/register.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/apis/exampledashed/v1/register.go @@ -17,11 +17,11 @@ limitations under the License. package v1 import ( + example "acme.corp/pkg/apis/exampledashed" + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/runtime/schema" - - example "acme.corp/pkg/apis/exampledashed" ) // SchemeGroupVersion is group version used to register these objects. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/apis/existinginterfaces/v1/register.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/apis/existinginterfaces/v1/register.go index f9542b06625..6a7f922dd58 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/apis/existinginterfaces/v1/register.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/apis/existinginterfaces/v1/register.go @@ -17,11 +17,11 @@ limitations under the License. package v1 import ( + "acme.corp/pkg/apis/existinginterfaces" + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/runtime/schema" - - "acme.corp/pkg/apis/existinginterfaces" ) // SchemeGroupVersion is group version used to register these objects. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/apis/secondexample/v1/register.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/apis/secondexample/v1/register.go index 62c94758cbf..7274f4449c3 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/apis/secondexample/v1/register.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/apis/secondexample/v1/register.go @@ -17,11 +17,11 @@ limitations under the License. package v1 import ( + example "acme.corp/pkg/apis/secondexample" + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/runtime/schema" - - example "acme.corp/pkg/apis/secondexample" ) // SchemeGroupVersion is group version used to register these objects. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/applyconfigurations/utils.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/applyconfigurations/utils.go index d0a106f634b..b08a518eb45 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/applyconfigurations/utils.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/applyconfigurations/utils.go @@ -19,10 +19,6 @@ limitations under the License. package applyconfigurations import ( - runtime "k8s.io/apimachinery/pkg/runtime" - schema "k8s.io/apimachinery/pkg/runtime/schema" - testing "k8s.io/client-go/testing" - examplev1 "acme.corp/pkg/apis/example/v1" v1alpha1 "acme.corp/pkg/apis/example/v1alpha1" v1beta1 "acme.corp/pkg/apis/example/v1beta1" @@ -40,6 +36,10 @@ import ( applyconfigurationsexistinginterfacesv1 "acme.corp/pkg/generated/applyconfigurations/existinginterfaces/v1" internal "acme.corp/pkg/generated/applyconfigurations/internal" applyconfigurationssecondexamplev1 "acme.corp/pkg/generated/applyconfigurations/secondexample/v1" + + runtime "k8s.io/apimachinery/pkg/runtime" + schema "k8s.io/apimachinery/pkg/runtime/schema" + testing "k8s.io/client-go/testing" ) // ForKind returns an apply configuration type for the given GroupVersionKind, or nil if no diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/clientset.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/clientset.go index 46b60547d22..5596fe7789d 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/clientset.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/clientset.go @@ -22,10 +22,6 @@ import ( fmt "fmt" http "net/http" - discovery "k8s.io/client-go/discovery" - rest "k8s.io/client-go/rest" - flowcontrol "k8s.io/client-go/util/flowcontrol" - examplev1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1" examplev1alpha1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1alpha1" examplev1beta1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1beta1" @@ -34,6 +30,10 @@ import ( exampledashedv1 "acme.corp/pkg/generated/clientset/versioned/typed/exampledashed/v1" existinginterfacesv1 "acme.corp/pkg/generated/clientset/versioned/typed/existinginterfaces/v1" secondexamplev1 "acme.corp/pkg/generated/clientset/versioned/typed/secondexample/v1" + + discovery "k8s.io/client-go/discovery" + rest "k8s.io/client-go/rest" + flowcontrol "k8s.io/client-go/util/flowcontrol" ) type Interface interface { diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/fake/clientset_generated.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/fake/clientset_generated.go index ff69983847b..31254267b3b 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/fake/clientset_generated.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/fake/clientset_generated.go @@ -19,13 +19,6 @@ limitations under the License. package fake import ( - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - "k8s.io/apimachinery/pkg/runtime" - "k8s.io/apimachinery/pkg/watch" - "k8s.io/client-go/discovery" - fakediscovery "k8s.io/client-go/discovery/fake" - "k8s.io/client-go/testing" - applyconfigurations "acme.corp/pkg/generated/applyconfigurations" clientset "acme.corp/pkg/generated/clientset/versioned" examplev1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1" @@ -44,6 +37,13 @@ import ( fakeexistinginterfacesv1 "acme.corp/pkg/generated/clientset/versioned/typed/existinginterfaces/v1/fake" secondexamplev1 "acme.corp/pkg/generated/clientset/versioned/typed/secondexample/v1" fakesecondexamplev1 "acme.corp/pkg/generated/clientset/versioned/typed/secondexample/v1/fake" + + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + "k8s.io/apimachinery/pkg/runtime" + "k8s.io/apimachinery/pkg/watch" + "k8s.io/client-go/discovery" + fakediscovery "k8s.io/client-go/discovery/fake" + "k8s.io/client-go/testing" ) // NewSimpleClientset returns a clientset that will respond with the provided objects. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/fake/register.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/fake/register.go index 8af22696009..70dffd2b9e8 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/fake/register.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/fake/register.go @@ -19,12 +19,6 @@ limitations under the License. package fake import ( - v1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - schema "k8s.io/apimachinery/pkg/runtime/schema" - serializer "k8s.io/apimachinery/pkg/runtime/serializer" - utilruntime "k8s.io/apimachinery/pkg/util/runtime" - examplev1 "acme.corp/pkg/apis/example/v1" examplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" examplev1beta1 "acme.corp/pkg/apis/example/v1beta1" @@ -33,6 +27,12 @@ import ( exampledashedv1 "acme.corp/pkg/apis/exampledashed/v1" existinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" secondexamplev1 "acme.corp/pkg/apis/secondexample/v1" + + v1 "k8s.io/apimachinery/pkg/apis/meta/v1" + runtime "k8s.io/apimachinery/pkg/runtime" + schema "k8s.io/apimachinery/pkg/runtime/schema" + serializer "k8s.io/apimachinery/pkg/runtime/serializer" + utilruntime "k8s.io/apimachinery/pkg/util/runtime" ) var scheme = runtime.NewScheme() diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/scheme/register.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/scheme/register.go index b1627ebff46..e6d28263e27 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/scheme/register.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/scheme/register.go @@ -19,12 +19,6 @@ limitations under the License. package scheme import ( - v1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - schema "k8s.io/apimachinery/pkg/runtime/schema" - serializer "k8s.io/apimachinery/pkg/runtime/serializer" - utilruntime "k8s.io/apimachinery/pkg/util/runtime" - examplev1 "acme.corp/pkg/apis/example/v1" examplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" examplev1beta1 "acme.corp/pkg/apis/example/v1beta1" @@ -33,6 +27,12 @@ import ( exampledashedv1 "acme.corp/pkg/apis/exampledashed/v1" existinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" secondexamplev1 "acme.corp/pkg/apis/secondexample/v1" + + v1 "k8s.io/apimachinery/pkg/apis/meta/v1" + runtime "k8s.io/apimachinery/pkg/runtime" + schema "k8s.io/apimachinery/pkg/runtime/schema" + serializer "k8s.io/apimachinery/pkg/runtime/serializer" + utilruntime "k8s.io/apimachinery/pkg/util/runtime" ) var Scheme = runtime.NewScheme() diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1/clustertesttype.go index fd2a9021d57..48ecfa3cfd6 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1/clustertesttype.go @@ -21,14 +21,14 @@ package v1 import ( context "context" + examplev1 "acme.corp/pkg/apis/example/v1" + applyconfigurationsexamplev1 "acme.corp/pkg/generated/applyconfigurations/example/v1" + scheme "acme.corp/pkg/generated/clientset/versioned/scheme" + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" watch "k8s.io/apimachinery/pkg/watch" gentype "k8s.io/client-go/gentype" - - examplev1 "acme.corp/pkg/apis/example/v1" - applyconfigurationsexamplev1 "acme.corp/pkg/generated/applyconfigurations/example/v1" - scheme "acme.corp/pkg/generated/clientset/versioned/scheme" ) // ClusterTestTypesGetter has a method to return a ClusterTestTypeInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1/example_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1/example_client.go index 8f14f20ce94..6b30f8bb5c4 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1/example_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1/example_client.go @@ -21,10 +21,10 @@ package v1 import ( http "net/http" - rest "k8s.io/client-go/rest" - examplev1 "acme.corp/pkg/apis/example/v1" scheme "acme.corp/pkg/generated/clientset/versioned/scheme" + + rest "k8s.io/client-go/rest" ) type ExampleV1Interface interface { diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1/fake/fake_clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1/fake/fake_clustertesttype.go index 7faf2fbd0b8..a277f46b2db 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1/fake/fake_clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1/fake/fake_clustertesttype.go @@ -19,11 +19,11 @@ limitations under the License. package fake import ( - gentype "k8s.io/client-go/gentype" - v1 "acme.corp/pkg/apis/example/v1" examplev1 "acme.corp/pkg/generated/applyconfigurations/example/v1" typedexamplev1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1" + + gentype "k8s.io/client-go/gentype" ) // fakeClusterTestTypes implements ClusterTestTypeInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1/fake/fake_example_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1/fake/fake_example_client.go index bde4c56e672..be3832ab05b 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1/fake/fake_example_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1/fake/fake_example_client.go @@ -19,10 +19,10 @@ limitations under the License. package fake import ( + v1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1" + rest "k8s.io/client-go/rest" testing "k8s.io/client-go/testing" - - v1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1" ) type FakeExampleV1 struct { diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1/fake/fake_testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1/fake/fake_testtype.go index e5200d787a1..77a33ca0d97 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1/fake/fake_testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1/fake/fake_testtype.go @@ -21,13 +21,13 @@ package fake import ( context "context" - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - gentype "k8s.io/client-go/gentype" - testing "k8s.io/client-go/testing" - v1 "acme.corp/pkg/apis/example/v1" examplev1 "acme.corp/pkg/generated/applyconfigurations/example/v1" typedexamplev1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1" + + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + gentype "k8s.io/client-go/gentype" + testing "k8s.io/client-go/testing" ) // fakeTestTypes implements TestTypeInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1/fake/fake_withoutverbtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1/fake/fake_withoutverbtype.go index f82a07b84b1..3fb5540323e 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1/fake/fake_withoutverbtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1/fake/fake_withoutverbtype.go @@ -19,10 +19,10 @@ limitations under the License. package fake import ( - gentype "k8s.io/client-go/gentype" - v1 "acme.corp/pkg/apis/example/v1" examplev1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1" + + gentype "k8s.io/client-go/gentype" ) // fakeWithoutVerbTypes implements WithoutVerbTypeInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1/testtype.go index c9b6dc7f3c7..ce44c3e4343 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1/testtype.go @@ -21,14 +21,14 @@ package v1 import ( context "context" + examplev1 "acme.corp/pkg/apis/example/v1" + applyconfigurationsexamplev1 "acme.corp/pkg/generated/applyconfigurations/example/v1" + scheme "acme.corp/pkg/generated/clientset/versioned/scheme" + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" watch "k8s.io/apimachinery/pkg/watch" gentype "k8s.io/client-go/gentype" - - examplev1 "acme.corp/pkg/apis/example/v1" - applyconfigurationsexamplev1 "acme.corp/pkg/generated/applyconfigurations/example/v1" - scheme "acme.corp/pkg/generated/clientset/versioned/scheme" ) // TestTypesGetter has a method to return a TestTypeInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1/withoutverbtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1/withoutverbtype.go index e8317cf6ea4..b9f74fe5629 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1/withoutverbtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1/withoutverbtype.go @@ -19,10 +19,10 @@ limitations under the License. package v1 import ( - gentype "k8s.io/client-go/gentype" - examplev1 "acme.corp/pkg/apis/example/v1" scheme "acme.corp/pkg/generated/clientset/versioned/scheme" + + gentype "k8s.io/client-go/gentype" ) // WithoutVerbTypesGetter has a method to return a WithoutVerbTypeInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1alpha1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1alpha1/clustertesttype.go index ac8813a67fb..d81c3789ae8 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1alpha1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1alpha1/clustertesttype.go @@ -21,14 +21,14 @@ package v1alpha1 import ( context "context" + examplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" + applyconfigurationsexamplev1alpha1 "acme.corp/pkg/generated/applyconfigurations/example/v1alpha1" + scheme "acme.corp/pkg/generated/clientset/versioned/scheme" + v1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" watch "k8s.io/apimachinery/pkg/watch" gentype "k8s.io/client-go/gentype" - - examplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" - applyconfigurationsexamplev1alpha1 "acme.corp/pkg/generated/applyconfigurations/example/v1alpha1" - scheme "acme.corp/pkg/generated/clientset/versioned/scheme" ) // ClusterTestTypesGetter has a method to return a ClusterTestTypeInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1alpha1/example_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1alpha1/example_client.go index 243db3f2f17..c0bc38e21f3 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1alpha1/example_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1alpha1/example_client.go @@ -21,10 +21,10 @@ package v1alpha1 import ( http "net/http" - rest "k8s.io/client-go/rest" - examplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" scheme "acme.corp/pkg/generated/clientset/versioned/scheme" + + rest "k8s.io/client-go/rest" ) type ExampleV1alpha1Interface interface { diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1alpha1/fake/fake_clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1alpha1/fake/fake_clustertesttype.go index c816d1c1f03..2e30b9398a8 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1alpha1/fake/fake_clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1alpha1/fake/fake_clustertesttype.go @@ -19,11 +19,11 @@ limitations under the License. package fake import ( - gentype "k8s.io/client-go/gentype" - v1alpha1 "acme.corp/pkg/apis/example/v1alpha1" examplev1alpha1 "acme.corp/pkg/generated/applyconfigurations/example/v1alpha1" typedexamplev1alpha1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1alpha1" + + gentype "k8s.io/client-go/gentype" ) // fakeClusterTestTypes implements ClusterTestTypeInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1alpha1/fake/fake_example_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1alpha1/fake/fake_example_client.go index d0684eef267..232cc084637 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1alpha1/fake/fake_example_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1alpha1/fake/fake_example_client.go @@ -19,10 +19,10 @@ limitations under the License. package fake import ( + v1alpha1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1alpha1" + rest "k8s.io/client-go/rest" testing "k8s.io/client-go/testing" - - v1alpha1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1alpha1" ) type FakeExampleV1alpha1 struct { diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1alpha1/fake/fake_testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1alpha1/fake/fake_testtype.go index e18bad8a140..31e70ec795c 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1alpha1/fake/fake_testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1alpha1/fake/fake_testtype.go @@ -19,11 +19,11 @@ limitations under the License. package fake import ( - gentype "k8s.io/client-go/gentype" - v1alpha1 "acme.corp/pkg/apis/example/v1alpha1" examplev1alpha1 "acme.corp/pkg/generated/applyconfigurations/example/v1alpha1" typedexamplev1alpha1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1alpha1" + + gentype "k8s.io/client-go/gentype" ) // fakeTestTypes implements TestTypeInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1alpha1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1alpha1/testtype.go index 2425760a215..3234713c17d 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1alpha1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1alpha1/testtype.go @@ -21,14 +21,14 @@ package v1alpha1 import ( context "context" + examplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" + applyconfigurationsexamplev1alpha1 "acme.corp/pkg/generated/applyconfigurations/example/v1alpha1" + scheme "acme.corp/pkg/generated/clientset/versioned/scheme" + v1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" watch "k8s.io/apimachinery/pkg/watch" gentype "k8s.io/client-go/gentype" - - examplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" - applyconfigurationsexamplev1alpha1 "acme.corp/pkg/generated/applyconfigurations/example/v1alpha1" - scheme "acme.corp/pkg/generated/clientset/versioned/scheme" ) // TestTypesGetter has a method to return a TestTypeInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1beta1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1beta1/clustertesttype.go index b2a28fb7141..bb82d7a7a34 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1beta1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1beta1/clustertesttype.go @@ -21,14 +21,14 @@ package v1beta1 import ( context "context" + examplev1beta1 "acme.corp/pkg/apis/example/v1beta1" + applyconfigurationsexamplev1beta1 "acme.corp/pkg/generated/applyconfigurations/example/v1beta1" + scheme "acme.corp/pkg/generated/clientset/versioned/scheme" + v1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" watch "k8s.io/apimachinery/pkg/watch" gentype "k8s.io/client-go/gentype" - - examplev1beta1 "acme.corp/pkg/apis/example/v1beta1" - applyconfigurationsexamplev1beta1 "acme.corp/pkg/generated/applyconfigurations/example/v1beta1" - scheme "acme.corp/pkg/generated/clientset/versioned/scheme" ) // ClusterTestTypesGetter has a method to return a ClusterTestTypeInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1beta1/example_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1beta1/example_client.go index ff875a8d617..299bf93a60e 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1beta1/example_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1beta1/example_client.go @@ -21,10 +21,10 @@ package v1beta1 import ( http "net/http" - rest "k8s.io/client-go/rest" - examplev1beta1 "acme.corp/pkg/apis/example/v1beta1" scheme "acme.corp/pkg/generated/clientset/versioned/scheme" + + rest "k8s.io/client-go/rest" ) type ExampleV1beta1Interface interface { diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1beta1/fake/fake_clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1beta1/fake/fake_clustertesttype.go index ed25f0305fb..3452c9f6a5d 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1beta1/fake/fake_clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1beta1/fake/fake_clustertesttype.go @@ -19,11 +19,11 @@ limitations under the License. package fake import ( - gentype "k8s.io/client-go/gentype" - v1beta1 "acme.corp/pkg/apis/example/v1beta1" examplev1beta1 "acme.corp/pkg/generated/applyconfigurations/example/v1beta1" typedexamplev1beta1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1beta1" + + gentype "k8s.io/client-go/gentype" ) // fakeClusterTestTypes implements ClusterTestTypeInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1beta1/fake/fake_example_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1beta1/fake/fake_example_client.go index 3da890bb77f..ee5c425cdf7 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1beta1/fake/fake_example_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1beta1/fake/fake_example_client.go @@ -19,10 +19,10 @@ limitations under the License. package fake import ( + v1beta1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1beta1" + rest "k8s.io/client-go/rest" testing "k8s.io/client-go/testing" - - v1beta1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1beta1" ) type FakeExampleV1beta1 struct { diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1beta1/fake/fake_testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1beta1/fake/fake_testtype.go index 656f9fe9b0e..c8f6344685e 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1beta1/fake/fake_testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1beta1/fake/fake_testtype.go @@ -19,11 +19,11 @@ limitations under the License. package fake import ( - gentype "k8s.io/client-go/gentype" - v1beta1 "acme.corp/pkg/apis/example/v1beta1" examplev1beta1 "acme.corp/pkg/generated/applyconfigurations/example/v1beta1" typedexamplev1beta1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1beta1" + + gentype "k8s.io/client-go/gentype" ) // fakeTestTypes implements TestTypeInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1beta1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1beta1/testtype.go index 0db68286cc6..35ad821f954 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1beta1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v1beta1/testtype.go @@ -21,14 +21,14 @@ package v1beta1 import ( context "context" + examplev1beta1 "acme.corp/pkg/apis/example/v1beta1" + applyconfigurationsexamplev1beta1 "acme.corp/pkg/generated/applyconfigurations/example/v1beta1" + scheme "acme.corp/pkg/generated/clientset/versioned/scheme" + v1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" watch "k8s.io/apimachinery/pkg/watch" gentype "k8s.io/client-go/gentype" - - examplev1beta1 "acme.corp/pkg/apis/example/v1beta1" - applyconfigurationsexamplev1beta1 "acme.corp/pkg/generated/applyconfigurations/example/v1beta1" - scheme "acme.corp/pkg/generated/clientset/versioned/scheme" ) // TestTypesGetter has a method to return a TestTypeInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v2/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v2/clustertesttype.go index 1b291ec2e89..42c0b700c32 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v2/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v2/clustertesttype.go @@ -21,14 +21,14 @@ package v2 import ( context "context" + examplev2 "acme.corp/pkg/apis/example/v2" + applyconfigurationsexamplev2 "acme.corp/pkg/generated/applyconfigurations/example/v2" + scheme "acme.corp/pkg/generated/clientset/versioned/scheme" + v1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" watch "k8s.io/apimachinery/pkg/watch" gentype "k8s.io/client-go/gentype" - - examplev2 "acme.corp/pkg/apis/example/v2" - applyconfigurationsexamplev2 "acme.corp/pkg/generated/applyconfigurations/example/v2" - scheme "acme.corp/pkg/generated/clientset/versioned/scheme" ) // ClusterTestTypesGetter has a method to return a ClusterTestTypeInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v2/example_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v2/example_client.go index 929e5ca01a1..f1d508a6793 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v2/example_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v2/example_client.go @@ -21,10 +21,10 @@ package v2 import ( http "net/http" - rest "k8s.io/client-go/rest" - examplev2 "acme.corp/pkg/apis/example/v2" scheme "acme.corp/pkg/generated/clientset/versioned/scheme" + + rest "k8s.io/client-go/rest" ) type ExampleV2Interface interface { diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v2/fake/fake_clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v2/fake/fake_clustertesttype.go index 9194f0c5dc6..c76612bba91 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v2/fake/fake_clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v2/fake/fake_clustertesttype.go @@ -19,11 +19,11 @@ limitations under the License. package fake import ( - gentype "k8s.io/client-go/gentype" - v2 "acme.corp/pkg/apis/example/v2" examplev2 "acme.corp/pkg/generated/applyconfigurations/example/v2" typedexamplev2 "acme.corp/pkg/generated/clientset/versioned/typed/example/v2" + + gentype "k8s.io/client-go/gentype" ) // fakeClusterTestTypes implements ClusterTestTypeInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v2/fake/fake_example_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v2/fake/fake_example_client.go index 8a41c7e00a3..788bec8adff 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v2/fake/fake_example_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v2/fake/fake_example_client.go @@ -19,10 +19,10 @@ limitations under the License. package fake import ( + v2 "acme.corp/pkg/generated/clientset/versioned/typed/example/v2" + rest "k8s.io/client-go/rest" testing "k8s.io/client-go/testing" - - v2 "acme.corp/pkg/generated/clientset/versioned/typed/example/v2" ) type FakeExampleV2 struct { diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v2/fake/fake_testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v2/fake/fake_testtype.go index 102cc8f078f..369a9381f7e 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v2/fake/fake_testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v2/fake/fake_testtype.go @@ -19,11 +19,11 @@ limitations under the License. package fake import ( - gentype "k8s.io/client-go/gentype" - v2 "acme.corp/pkg/apis/example/v2" examplev2 "acme.corp/pkg/generated/applyconfigurations/example/v2" typedexamplev2 "acme.corp/pkg/generated/clientset/versioned/typed/example/v2" + + gentype "k8s.io/client-go/gentype" ) // fakeTestTypes implements TestTypeInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v2/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v2/testtype.go index 17dab8605b2..1cca47bf7ed 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v2/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example/v2/testtype.go @@ -21,14 +21,14 @@ package v2 import ( context "context" + examplev2 "acme.corp/pkg/apis/example/v2" + applyconfigurationsexamplev2 "acme.corp/pkg/generated/applyconfigurations/example/v2" + scheme "acme.corp/pkg/generated/clientset/versioned/scheme" + v1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" watch "k8s.io/apimachinery/pkg/watch" gentype "k8s.io/client-go/gentype" - - examplev2 "acme.corp/pkg/apis/example/v2" - applyconfigurationsexamplev2 "acme.corp/pkg/generated/applyconfigurations/example/v2" - scheme "acme.corp/pkg/generated/clientset/versioned/scheme" ) // TestTypesGetter has a method to return a TestTypeInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example3/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example3/v1/clustertesttype.go index 4a3ac8f8387..cdb1e09305b 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example3/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example3/v1/clustertesttype.go @@ -21,14 +21,14 @@ package v1 import ( context "context" + example3v1 "acme.corp/pkg/apis/example3/v1" + applyconfigurationsexample3v1 "acme.corp/pkg/generated/applyconfigurations/example3/v1" + scheme "acme.corp/pkg/generated/clientset/versioned/scheme" + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" watch "k8s.io/apimachinery/pkg/watch" gentype "k8s.io/client-go/gentype" - - example3v1 "acme.corp/pkg/apis/example3/v1" - applyconfigurationsexample3v1 "acme.corp/pkg/generated/applyconfigurations/example3/v1" - scheme "acme.corp/pkg/generated/clientset/versioned/scheme" ) // ClusterTestTypesGetter has a method to return a ClusterTestTypeInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example3/v1/example3_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example3/v1/example3_client.go index ba84c226eea..f5d153dd27f 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example3/v1/example3_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example3/v1/example3_client.go @@ -21,10 +21,10 @@ package v1 import ( http "net/http" - rest "k8s.io/client-go/rest" - example3v1 "acme.corp/pkg/apis/example3/v1" scheme "acme.corp/pkg/generated/clientset/versioned/scheme" + + rest "k8s.io/client-go/rest" ) type Example3V1Interface interface { diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example3/v1/fake/fake_clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example3/v1/fake/fake_clustertesttype.go index c67d612eef2..63c16b98665 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example3/v1/fake/fake_clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example3/v1/fake/fake_clustertesttype.go @@ -19,11 +19,11 @@ limitations under the License. package fake import ( - gentype "k8s.io/client-go/gentype" - v1 "acme.corp/pkg/apis/example3/v1" example3v1 "acme.corp/pkg/generated/applyconfigurations/example3/v1" typedexample3v1 "acme.corp/pkg/generated/clientset/versioned/typed/example3/v1" + + gentype "k8s.io/client-go/gentype" ) // fakeClusterTestTypes implements ClusterTestTypeInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example3/v1/fake/fake_example3_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example3/v1/fake/fake_example3_client.go index ce769852eed..cec86f86699 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example3/v1/fake/fake_example3_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example3/v1/fake/fake_example3_client.go @@ -19,10 +19,10 @@ limitations under the License. package fake import ( + v1 "acme.corp/pkg/generated/clientset/versioned/typed/example3/v1" + rest "k8s.io/client-go/rest" testing "k8s.io/client-go/testing" - - v1 "acme.corp/pkg/generated/clientset/versioned/typed/example3/v1" ) type FakeExample3V1 struct { diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example3/v1/fake/fake_testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example3/v1/fake/fake_testtype.go index b155f2d5c89..95eb67bf005 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example3/v1/fake/fake_testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example3/v1/fake/fake_testtype.go @@ -21,14 +21,14 @@ package fake import ( context "context" - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - gentype "k8s.io/client-go/gentype" - testing "k8s.io/client-go/testing" - examplev1 "acme.corp/pkg/apis/example/v1" v1 "acme.corp/pkg/apis/example3/v1" example3v1 "acme.corp/pkg/generated/applyconfigurations/example3/v1" typedexample3v1 "acme.corp/pkg/generated/clientset/versioned/typed/example3/v1" + + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + gentype "k8s.io/client-go/gentype" + testing "k8s.io/client-go/testing" ) // fakeTestTypes implements TestTypeInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example3/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example3/v1/testtype.go index 9be19097e9c..cc3ee725cec 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example3/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/example3/v1/testtype.go @@ -21,15 +21,15 @@ package v1 import ( context "context" - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - types "k8s.io/apimachinery/pkg/types" - watch "k8s.io/apimachinery/pkg/watch" - gentype "k8s.io/client-go/gentype" - examplev1 "acme.corp/pkg/apis/example/v1" example3v1 "acme.corp/pkg/apis/example3/v1" applyconfigurationsexample3v1 "acme.corp/pkg/generated/applyconfigurations/example3/v1" scheme "acme.corp/pkg/generated/clientset/versioned/scheme" + + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + types "k8s.io/apimachinery/pkg/types" + watch "k8s.io/apimachinery/pkg/watch" + gentype "k8s.io/client-go/gentype" ) // TestTypesGetter has a method to return a TestTypeInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/exampledashed/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/exampledashed/v1/clustertesttype.go index 310442fe8ac..a86a3a3b750 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/exampledashed/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/exampledashed/v1/clustertesttype.go @@ -21,14 +21,14 @@ package v1 import ( context "context" + exampledashedv1 "acme.corp/pkg/apis/exampledashed/v1" + applyconfigurationsexampledashedv1 "acme.corp/pkg/generated/applyconfigurations/exampledashed/v1" + scheme "acme.corp/pkg/generated/clientset/versioned/scheme" + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" watch "k8s.io/apimachinery/pkg/watch" gentype "k8s.io/client-go/gentype" - - exampledashedv1 "acme.corp/pkg/apis/exampledashed/v1" - applyconfigurationsexampledashedv1 "acme.corp/pkg/generated/applyconfigurations/exampledashed/v1" - scheme "acme.corp/pkg/generated/clientset/versioned/scheme" ) // ClusterTestTypesGetter has a method to return a ClusterTestTypeInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/exampledashed/v1/exampledashed_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/exampledashed/v1/exampledashed_client.go index 78c61dcfdcb..2272cf7699c 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/exampledashed/v1/exampledashed_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/exampledashed/v1/exampledashed_client.go @@ -21,10 +21,10 @@ package v1 import ( http "net/http" - rest "k8s.io/client-go/rest" - exampledashedv1 "acme.corp/pkg/apis/exampledashed/v1" scheme "acme.corp/pkg/generated/clientset/versioned/scheme" + + rest "k8s.io/client-go/rest" ) type ExampleDashedV1Interface interface { diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/exampledashed/v1/fake/fake_clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/exampledashed/v1/fake/fake_clustertesttype.go index 132de6245f6..11c4202bd93 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/exampledashed/v1/fake/fake_clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/exampledashed/v1/fake/fake_clustertesttype.go @@ -19,11 +19,11 @@ limitations under the License. package fake import ( - gentype "k8s.io/client-go/gentype" - v1 "acme.corp/pkg/apis/exampledashed/v1" exampledashedv1 "acme.corp/pkg/generated/applyconfigurations/exampledashed/v1" typedexampledashedv1 "acme.corp/pkg/generated/clientset/versioned/typed/exampledashed/v1" + + gentype "k8s.io/client-go/gentype" ) // fakeClusterTestTypes implements ClusterTestTypeInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/exampledashed/v1/fake/fake_exampledashed_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/exampledashed/v1/fake/fake_exampledashed_client.go index 237b4ba1032..01b7fb98874 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/exampledashed/v1/fake/fake_exampledashed_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/exampledashed/v1/fake/fake_exampledashed_client.go @@ -19,10 +19,10 @@ limitations under the License. package fake import ( + v1 "acme.corp/pkg/generated/clientset/versioned/typed/exampledashed/v1" + rest "k8s.io/client-go/rest" testing "k8s.io/client-go/testing" - - v1 "acme.corp/pkg/generated/clientset/versioned/typed/exampledashed/v1" ) type FakeExampleDashedV1 struct { diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/exampledashed/v1/fake/fake_testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/exampledashed/v1/fake/fake_testtype.go index df07fef261a..acfb0bc626c 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/exampledashed/v1/fake/fake_testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/exampledashed/v1/fake/fake_testtype.go @@ -21,14 +21,14 @@ package fake import ( context "context" - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - gentype "k8s.io/client-go/gentype" - testing "k8s.io/client-go/testing" - examplev1 "acme.corp/pkg/apis/example/v1" v1 "acme.corp/pkg/apis/exampledashed/v1" exampledashedv1 "acme.corp/pkg/generated/applyconfigurations/exampledashed/v1" typedexampledashedv1 "acme.corp/pkg/generated/clientset/versioned/typed/exampledashed/v1" + + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + gentype "k8s.io/client-go/gentype" + testing "k8s.io/client-go/testing" ) // fakeTestTypes implements TestTypeInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/exampledashed/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/exampledashed/v1/testtype.go index f30d9701267..516bddc0558 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/exampledashed/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/exampledashed/v1/testtype.go @@ -21,15 +21,15 @@ package v1 import ( context "context" - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - types "k8s.io/apimachinery/pkg/types" - watch "k8s.io/apimachinery/pkg/watch" - gentype "k8s.io/client-go/gentype" - examplev1 "acme.corp/pkg/apis/example/v1" exampledashedv1 "acme.corp/pkg/apis/exampledashed/v1" applyconfigurationsexampledashedv1 "acme.corp/pkg/generated/applyconfigurations/exampledashed/v1" scheme "acme.corp/pkg/generated/clientset/versioned/scheme" + + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + types "k8s.io/apimachinery/pkg/types" + watch "k8s.io/apimachinery/pkg/watch" + gentype "k8s.io/client-go/gentype" ) // TestTypesGetter has a method to return a TestTypeInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/existinginterfaces/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/existinginterfaces/v1/clustertesttype.go index 13d17c8bd14..aefc4b82185 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/existinginterfaces/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/existinginterfaces/v1/clustertesttype.go @@ -21,14 +21,14 @@ package v1 import ( context "context" + existinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" + applyconfigurationsexistinginterfacesv1 "acme.corp/pkg/generated/applyconfigurations/existinginterfaces/v1" + scheme "acme.corp/pkg/generated/clientset/versioned/scheme" + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" watch "k8s.io/apimachinery/pkg/watch" gentype "k8s.io/client-go/gentype" - - existinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" - applyconfigurationsexistinginterfacesv1 "acme.corp/pkg/generated/applyconfigurations/existinginterfaces/v1" - scheme "acme.corp/pkg/generated/clientset/versioned/scheme" ) // ClusterTestTypesGetter has a method to return a ClusterTestTypeInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/existinginterfaces/v1/existinginterfaces_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/existinginterfaces/v1/existinginterfaces_client.go index 5fdd377f13b..7eb3174b5cf 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/existinginterfaces/v1/existinginterfaces_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/existinginterfaces/v1/existinginterfaces_client.go @@ -21,10 +21,10 @@ package v1 import ( http "net/http" - rest "k8s.io/client-go/rest" - existinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" scheme "acme.corp/pkg/generated/clientset/versioned/scheme" + + rest "k8s.io/client-go/rest" ) type ExistinginterfacesV1Interface interface { diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/existinginterfaces/v1/fake/fake_clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/existinginterfaces/v1/fake/fake_clustertesttype.go index a6d14549e06..5c9be5c5b5a 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/existinginterfaces/v1/fake/fake_clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/existinginterfaces/v1/fake/fake_clustertesttype.go @@ -19,11 +19,11 @@ limitations under the License. package fake import ( - gentype "k8s.io/client-go/gentype" - v1 "acme.corp/pkg/apis/existinginterfaces/v1" existinginterfacesv1 "acme.corp/pkg/generated/applyconfigurations/existinginterfaces/v1" typedexistinginterfacesv1 "acme.corp/pkg/generated/clientset/versioned/typed/existinginterfaces/v1" + + gentype "k8s.io/client-go/gentype" ) // fakeClusterTestTypes implements ClusterTestTypeInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/existinginterfaces/v1/fake/fake_existinginterfaces_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/existinginterfaces/v1/fake/fake_existinginterfaces_client.go index 7833c706885..7a528c36b56 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/existinginterfaces/v1/fake/fake_existinginterfaces_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/existinginterfaces/v1/fake/fake_existinginterfaces_client.go @@ -19,10 +19,10 @@ limitations under the License. package fake import ( + v1 "acme.corp/pkg/generated/clientset/versioned/typed/existinginterfaces/v1" + rest "k8s.io/client-go/rest" testing "k8s.io/client-go/testing" - - v1 "acme.corp/pkg/generated/clientset/versioned/typed/existinginterfaces/v1" ) type FakeExistinginterfacesV1 struct { diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/existinginterfaces/v1/fake/fake_testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/existinginterfaces/v1/fake/fake_testtype.go index 6d238ec7f09..97182dcb737 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/existinginterfaces/v1/fake/fake_testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/existinginterfaces/v1/fake/fake_testtype.go @@ -19,11 +19,11 @@ limitations under the License. package fake import ( - gentype "k8s.io/client-go/gentype" - v1 "acme.corp/pkg/apis/existinginterfaces/v1" existinginterfacesv1 "acme.corp/pkg/generated/applyconfigurations/existinginterfaces/v1" typedexistinginterfacesv1 "acme.corp/pkg/generated/clientset/versioned/typed/existinginterfaces/v1" + + gentype "k8s.io/client-go/gentype" ) // fakeTestTypes implements TestTypeInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/existinginterfaces/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/existinginterfaces/v1/testtype.go index 26af8117442..3b0f72ef3e4 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/existinginterfaces/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/existinginterfaces/v1/testtype.go @@ -21,14 +21,14 @@ package v1 import ( context "context" + existinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" + applyconfigurationsexistinginterfacesv1 "acme.corp/pkg/generated/applyconfigurations/existinginterfaces/v1" + scheme "acme.corp/pkg/generated/clientset/versioned/scheme" + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" watch "k8s.io/apimachinery/pkg/watch" gentype "k8s.io/client-go/gentype" - - existinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" - applyconfigurationsexistinginterfacesv1 "acme.corp/pkg/generated/applyconfigurations/existinginterfaces/v1" - scheme "acme.corp/pkg/generated/clientset/versioned/scheme" ) // TestTypesGetter has a method to return a TestTypeInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/secondexample/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/secondexample/v1/clustertesttype.go index 913792c595c..a44d981186b 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/secondexample/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/secondexample/v1/clustertesttype.go @@ -21,14 +21,14 @@ package v1 import ( context "context" + secondexamplev1 "acme.corp/pkg/apis/secondexample/v1" + applyconfigurationssecondexamplev1 "acme.corp/pkg/generated/applyconfigurations/secondexample/v1" + scheme "acme.corp/pkg/generated/clientset/versioned/scheme" + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" watch "k8s.io/apimachinery/pkg/watch" gentype "k8s.io/client-go/gentype" - - secondexamplev1 "acme.corp/pkg/apis/secondexample/v1" - applyconfigurationssecondexamplev1 "acme.corp/pkg/generated/applyconfigurations/secondexample/v1" - scheme "acme.corp/pkg/generated/clientset/versioned/scheme" ) // ClusterTestTypesGetter has a method to return a ClusterTestTypeInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/secondexample/v1/fake/fake_clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/secondexample/v1/fake/fake_clustertesttype.go index ac8f8c15750..fde4b197755 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/secondexample/v1/fake/fake_clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/secondexample/v1/fake/fake_clustertesttype.go @@ -19,11 +19,11 @@ limitations under the License. package fake import ( - gentype "k8s.io/client-go/gentype" - v1 "acme.corp/pkg/apis/secondexample/v1" secondexamplev1 "acme.corp/pkg/generated/applyconfigurations/secondexample/v1" typedsecondexamplev1 "acme.corp/pkg/generated/clientset/versioned/typed/secondexample/v1" + + gentype "k8s.io/client-go/gentype" ) // fakeClusterTestTypes implements ClusterTestTypeInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/secondexample/v1/fake/fake_secondexample_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/secondexample/v1/fake/fake_secondexample_client.go index 218a87d2b60..3bbfb8677e4 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/secondexample/v1/fake/fake_secondexample_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/secondexample/v1/fake/fake_secondexample_client.go @@ -19,10 +19,10 @@ limitations under the License. package fake import ( + v1 "acme.corp/pkg/generated/clientset/versioned/typed/secondexample/v1" + rest "k8s.io/client-go/rest" testing "k8s.io/client-go/testing" - - v1 "acme.corp/pkg/generated/clientset/versioned/typed/secondexample/v1" ) type FakeSecondexampleV1 struct { diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/secondexample/v1/fake/fake_testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/secondexample/v1/fake/fake_testtype.go index 0d70e2a6c9e..0623cc9a263 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/secondexample/v1/fake/fake_testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/secondexample/v1/fake/fake_testtype.go @@ -19,11 +19,11 @@ limitations under the License. package fake import ( - gentype "k8s.io/client-go/gentype" - v1 "acme.corp/pkg/apis/secondexample/v1" secondexamplev1 "acme.corp/pkg/generated/applyconfigurations/secondexample/v1" typedsecondexamplev1 "acme.corp/pkg/generated/clientset/versioned/typed/secondexample/v1" + + gentype "k8s.io/client-go/gentype" ) // fakeTestTypes implements TestTypeInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/secondexample/v1/secondexample_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/secondexample/v1/secondexample_client.go index 022cd26e932..fb378726719 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/secondexample/v1/secondexample_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/secondexample/v1/secondexample_client.go @@ -21,10 +21,10 @@ package v1 import ( http "net/http" - rest "k8s.io/client-go/rest" - secondexamplev1 "acme.corp/pkg/apis/secondexample/v1" scheme "acme.corp/pkg/generated/clientset/versioned/scheme" + + rest "k8s.io/client-go/rest" ) type SecondexampleV1Interface interface { diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/secondexample/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/secondexample/v1/testtype.go index d8e6cfea4d6..d2630cff550 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/secondexample/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/clientset/versioned/typed/secondexample/v1/testtype.go @@ -21,14 +21,14 @@ package v1 import ( context "context" + secondexamplev1 "acme.corp/pkg/apis/secondexample/v1" + applyconfigurationssecondexamplev1 "acme.corp/pkg/generated/applyconfigurations/secondexample/v1" + scheme "acme.corp/pkg/generated/clientset/versioned/scheme" + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" watch "k8s.io/apimachinery/pkg/watch" gentype "k8s.io/client-go/gentype" - - secondexamplev1 "acme.corp/pkg/apis/secondexample/v1" - applyconfigurationssecondexamplev1 "acme.corp/pkg/generated/applyconfigurations/secondexample/v1" - scheme "acme.corp/pkg/generated/clientset/versioned/scheme" ) // TestTypesGetter has a method to return a TestTypeInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/example/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/example/v1/clustertesttype.go index fff6de257a0..f124ccb5488 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/example/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/example/v1/clustertesttype.go @@ -22,15 +22,15 @@ import ( context "context" time "time" - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - watch "k8s.io/apimachinery/pkg/watch" - cache "k8s.io/client-go/tools/cache" - apisexamplev1 "acme.corp/pkg/apis/example/v1" versioned "acme.corp/pkg/generated/clientset/versioned" internalinterfaces "acme.corp/pkg/generated/informers/externalversions/internalinterfaces" examplev1 "acme.corp/pkg/generated/listers/example/v1" + + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + runtime "k8s.io/apimachinery/pkg/runtime" + watch "k8s.io/apimachinery/pkg/watch" + cache "k8s.io/client-go/tools/cache" ) // ClusterTestTypeInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/example/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/example/v1/testtype.go index 1bf2c951245..d5dbd31c0da 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/example/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/example/v1/testtype.go @@ -22,15 +22,15 @@ import ( context "context" time "time" - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - watch "k8s.io/apimachinery/pkg/watch" - cache "k8s.io/client-go/tools/cache" - apisexamplev1 "acme.corp/pkg/apis/example/v1" versioned "acme.corp/pkg/generated/clientset/versioned" internalinterfaces "acme.corp/pkg/generated/informers/externalversions/internalinterfaces" examplev1 "acme.corp/pkg/generated/listers/example/v1" + + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + runtime "k8s.io/apimachinery/pkg/runtime" + watch "k8s.io/apimachinery/pkg/watch" + cache "k8s.io/client-go/tools/cache" ) // TestTypeInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/example/v1alpha1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/example/v1alpha1/clustertesttype.go index 31420e7681f..8d2ced28982 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/example/v1alpha1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/example/v1alpha1/clustertesttype.go @@ -22,15 +22,15 @@ import ( context "context" time "time" - v1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - watch "k8s.io/apimachinery/pkg/watch" - cache "k8s.io/client-go/tools/cache" - apisexamplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" versioned "acme.corp/pkg/generated/clientset/versioned" internalinterfaces "acme.corp/pkg/generated/informers/externalversions/internalinterfaces" examplev1alpha1 "acme.corp/pkg/generated/listers/example/v1alpha1" + + v1 "k8s.io/apimachinery/pkg/apis/meta/v1" + runtime "k8s.io/apimachinery/pkg/runtime" + watch "k8s.io/apimachinery/pkg/watch" + cache "k8s.io/client-go/tools/cache" ) // ClusterTestTypeInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/example/v1alpha1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/example/v1alpha1/testtype.go index afd6ddf01c1..d56fee2f9b7 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/example/v1alpha1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/example/v1alpha1/testtype.go @@ -22,15 +22,15 @@ import ( context "context" time "time" - v1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - watch "k8s.io/apimachinery/pkg/watch" - cache "k8s.io/client-go/tools/cache" - apisexamplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" versioned "acme.corp/pkg/generated/clientset/versioned" internalinterfaces "acme.corp/pkg/generated/informers/externalversions/internalinterfaces" examplev1alpha1 "acme.corp/pkg/generated/listers/example/v1alpha1" + + v1 "k8s.io/apimachinery/pkg/apis/meta/v1" + runtime "k8s.io/apimachinery/pkg/runtime" + watch "k8s.io/apimachinery/pkg/watch" + cache "k8s.io/client-go/tools/cache" ) // TestTypeInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/example/v1beta1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/example/v1beta1/clustertesttype.go index 482651b7eec..53606d43d26 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/example/v1beta1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/example/v1beta1/clustertesttype.go @@ -22,15 +22,15 @@ import ( context "context" time "time" - v1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - watch "k8s.io/apimachinery/pkg/watch" - cache "k8s.io/client-go/tools/cache" - apisexamplev1beta1 "acme.corp/pkg/apis/example/v1beta1" versioned "acme.corp/pkg/generated/clientset/versioned" internalinterfaces "acme.corp/pkg/generated/informers/externalversions/internalinterfaces" examplev1beta1 "acme.corp/pkg/generated/listers/example/v1beta1" + + v1 "k8s.io/apimachinery/pkg/apis/meta/v1" + runtime "k8s.io/apimachinery/pkg/runtime" + watch "k8s.io/apimachinery/pkg/watch" + cache "k8s.io/client-go/tools/cache" ) // ClusterTestTypeInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/example/v1beta1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/example/v1beta1/testtype.go index 3e8ee531db5..b4c960252d7 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/example/v1beta1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/example/v1beta1/testtype.go @@ -22,15 +22,15 @@ import ( context "context" time "time" - v1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - watch "k8s.io/apimachinery/pkg/watch" - cache "k8s.io/client-go/tools/cache" - apisexamplev1beta1 "acme.corp/pkg/apis/example/v1beta1" versioned "acme.corp/pkg/generated/clientset/versioned" internalinterfaces "acme.corp/pkg/generated/informers/externalversions/internalinterfaces" examplev1beta1 "acme.corp/pkg/generated/listers/example/v1beta1" + + v1 "k8s.io/apimachinery/pkg/apis/meta/v1" + runtime "k8s.io/apimachinery/pkg/runtime" + watch "k8s.io/apimachinery/pkg/watch" + cache "k8s.io/client-go/tools/cache" ) // TestTypeInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/example/v2/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/example/v2/clustertesttype.go index a19f6794381..455e7dc8afe 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/example/v2/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/example/v2/clustertesttype.go @@ -22,15 +22,15 @@ import ( context "context" time "time" - v1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - watch "k8s.io/apimachinery/pkg/watch" - cache "k8s.io/client-go/tools/cache" - apisexamplev2 "acme.corp/pkg/apis/example/v2" versioned "acme.corp/pkg/generated/clientset/versioned" internalinterfaces "acme.corp/pkg/generated/informers/externalversions/internalinterfaces" examplev2 "acme.corp/pkg/generated/listers/example/v2" + + v1 "k8s.io/apimachinery/pkg/apis/meta/v1" + runtime "k8s.io/apimachinery/pkg/runtime" + watch "k8s.io/apimachinery/pkg/watch" + cache "k8s.io/client-go/tools/cache" ) // ClusterTestTypeInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/example/v2/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/example/v2/testtype.go index 096f2ac169b..9482b6fa20a 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/example/v2/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/example/v2/testtype.go @@ -22,15 +22,15 @@ import ( context "context" time "time" - v1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - watch "k8s.io/apimachinery/pkg/watch" - cache "k8s.io/client-go/tools/cache" - apisexamplev2 "acme.corp/pkg/apis/example/v2" versioned "acme.corp/pkg/generated/clientset/versioned" internalinterfaces "acme.corp/pkg/generated/informers/externalversions/internalinterfaces" examplev2 "acme.corp/pkg/generated/listers/example/v2" + + v1 "k8s.io/apimachinery/pkg/apis/meta/v1" + runtime "k8s.io/apimachinery/pkg/runtime" + watch "k8s.io/apimachinery/pkg/watch" + cache "k8s.io/client-go/tools/cache" ) // TestTypeInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/example3/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/example3/v1/clustertesttype.go index 07eb435265b..7b084a3676d 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/example3/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/example3/v1/clustertesttype.go @@ -22,15 +22,15 @@ import ( context "context" time "time" - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - watch "k8s.io/apimachinery/pkg/watch" - cache "k8s.io/client-go/tools/cache" - apisexample3v1 "acme.corp/pkg/apis/example3/v1" versioned "acme.corp/pkg/generated/clientset/versioned" internalinterfaces "acme.corp/pkg/generated/informers/externalversions/internalinterfaces" example3v1 "acme.corp/pkg/generated/listers/example3/v1" + + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + runtime "k8s.io/apimachinery/pkg/runtime" + watch "k8s.io/apimachinery/pkg/watch" + cache "k8s.io/client-go/tools/cache" ) // ClusterTestTypeInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/example3/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/example3/v1/testtype.go index da5ae597175..1c374114da6 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/example3/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/example3/v1/testtype.go @@ -22,15 +22,15 @@ import ( context "context" time "time" - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - watch "k8s.io/apimachinery/pkg/watch" - cache "k8s.io/client-go/tools/cache" - apisexample3v1 "acme.corp/pkg/apis/example3/v1" versioned "acme.corp/pkg/generated/clientset/versioned" internalinterfaces "acme.corp/pkg/generated/informers/externalversions/internalinterfaces" example3v1 "acme.corp/pkg/generated/listers/example3/v1" + + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + runtime "k8s.io/apimachinery/pkg/runtime" + watch "k8s.io/apimachinery/pkg/watch" + cache "k8s.io/client-go/tools/cache" ) // TestTypeInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/exampledashed/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/exampledashed/v1/clustertesttype.go index 5a36d08371d..19b83eb8bee 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/exampledashed/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/exampledashed/v1/clustertesttype.go @@ -22,15 +22,15 @@ import ( context "context" time "time" - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - watch "k8s.io/apimachinery/pkg/watch" - cache "k8s.io/client-go/tools/cache" - apisexampledashedv1 "acme.corp/pkg/apis/exampledashed/v1" versioned "acme.corp/pkg/generated/clientset/versioned" internalinterfaces "acme.corp/pkg/generated/informers/externalversions/internalinterfaces" exampledashedv1 "acme.corp/pkg/generated/listers/exampledashed/v1" + + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + runtime "k8s.io/apimachinery/pkg/runtime" + watch "k8s.io/apimachinery/pkg/watch" + cache "k8s.io/client-go/tools/cache" ) // ClusterTestTypeInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/exampledashed/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/exampledashed/v1/testtype.go index 005021a0dd2..3b261876a3b 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/exampledashed/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/exampledashed/v1/testtype.go @@ -22,15 +22,15 @@ import ( context "context" time "time" - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - watch "k8s.io/apimachinery/pkg/watch" - cache "k8s.io/client-go/tools/cache" - apisexampledashedv1 "acme.corp/pkg/apis/exampledashed/v1" versioned "acme.corp/pkg/generated/clientset/versioned" internalinterfaces "acme.corp/pkg/generated/informers/externalversions/internalinterfaces" exampledashedv1 "acme.corp/pkg/generated/listers/exampledashed/v1" + + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + runtime "k8s.io/apimachinery/pkg/runtime" + watch "k8s.io/apimachinery/pkg/watch" + cache "k8s.io/client-go/tools/cache" ) // TestTypeInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/existinginterfaces/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/existinginterfaces/v1/clustertesttype.go index a8f7c5af452..025516cb3e9 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/existinginterfaces/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/existinginterfaces/v1/clustertesttype.go @@ -22,15 +22,15 @@ import ( context "context" time "time" - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - watch "k8s.io/apimachinery/pkg/watch" - cache "k8s.io/client-go/tools/cache" - apisexistinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" versioned "acme.corp/pkg/generated/clientset/versioned" internalinterfaces "acme.corp/pkg/generated/informers/externalversions/internalinterfaces" existinginterfacesv1 "acme.corp/pkg/generated/listers/existinginterfaces/v1" + + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + runtime "k8s.io/apimachinery/pkg/runtime" + watch "k8s.io/apimachinery/pkg/watch" + cache "k8s.io/client-go/tools/cache" ) // ClusterTestTypeInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/existinginterfaces/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/existinginterfaces/v1/testtype.go index c6802e42f0c..d823f60c96c 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/existinginterfaces/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/existinginterfaces/v1/testtype.go @@ -22,15 +22,15 @@ import ( context "context" time "time" - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - watch "k8s.io/apimachinery/pkg/watch" - cache "k8s.io/client-go/tools/cache" - apisexistinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" versioned "acme.corp/pkg/generated/clientset/versioned" internalinterfaces "acme.corp/pkg/generated/informers/externalversions/internalinterfaces" existinginterfacesv1 "acme.corp/pkg/generated/listers/existinginterfaces/v1" + + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + runtime "k8s.io/apimachinery/pkg/runtime" + watch "k8s.io/apimachinery/pkg/watch" + cache "k8s.io/client-go/tools/cache" ) // TestTypeInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/factory.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/factory.go index 4fde47a96b3..aee5eaa7f7b 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/factory.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/factory.go @@ -23,11 +23,6 @@ import ( sync "sync" time "time" - v1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - schema "k8s.io/apimachinery/pkg/runtime/schema" - cache "k8s.io/client-go/tools/cache" - versioned "acme.corp/pkg/generated/clientset/versioned" example "acme.corp/pkg/generated/informers/externalversions/example" example3 "acme.corp/pkg/generated/informers/externalversions/example3" @@ -35,6 +30,11 @@ import ( existinginterfaces "acme.corp/pkg/generated/informers/externalversions/existinginterfaces" internalinterfaces "acme.corp/pkg/generated/informers/externalversions/internalinterfaces" secondexample "acme.corp/pkg/generated/informers/externalversions/secondexample" + + v1 "k8s.io/apimachinery/pkg/apis/meta/v1" + runtime "k8s.io/apimachinery/pkg/runtime" + schema "k8s.io/apimachinery/pkg/runtime/schema" + cache "k8s.io/client-go/tools/cache" ) // SharedInformerOption defines the functional option type for SharedInformerFactory. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/generic.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/generic.go index 42fe637b8e0..b875bb45d2f 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/generic.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/generic.go @@ -21,9 +21,6 @@ package externalversions import ( fmt "fmt" - schema "k8s.io/apimachinery/pkg/runtime/schema" - cache "k8s.io/client-go/tools/cache" - examplev1 "acme.corp/pkg/apis/example/v1" v1alpha1 "acme.corp/pkg/apis/example/v1alpha1" v1beta1 "acme.corp/pkg/apis/example/v1beta1" @@ -32,6 +29,9 @@ import ( v1 "acme.corp/pkg/apis/exampledashed/v1" existinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" secondexamplev1 "acme.corp/pkg/apis/secondexample/v1" + + schema "k8s.io/apimachinery/pkg/runtime/schema" + cache "k8s.io/client-go/tools/cache" ) // GenericInformer is type of SharedIndexInformer which will locate and delegate to other diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/internalinterfaces/factory_interfaces.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/internalinterfaces/factory_interfaces.go index 303e1166c10..40343e75a25 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/internalinterfaces/factory_interfaces.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/internalinterfaces/factory_interfaces.go @@ -21,11 +21,11 @@ package internalinterfaces import ( time "time" + versioned "acme.corp/pkg/generated/clientset/versioned" + v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" cache "k8s.io/client-go/tools/cache" - - versioned "acme.corp/pkg/generated/clientset/versioned" ) // NewInformerFunc takes versioned.Interface and time.Duration to return a SharedIndexInformer. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/secondexample/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/secondexample/v1/clustertesttype.go index 578d4fecb49..5d4df3ccbe4 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/secondexample/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/secondexample/v1/clustertesttype.go @@ -22,15 +22,15 @@ import ( context "context" time "time" - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - watch "k8s.io/apimachinery/pkg/watch" - cache "k8s.io/client-go/tools/cache" - apissecondexamplev1 "acme.corp/pkg/apis/secondexample/v1" versioned "acme.corp/pkg/generated/clientset/versioned" internalinterfaces "acme.corp/pkg/generated/informers/externalversions/internalinterfaces" secondexamplev1 "acme.corp/pkg/generated/listers/secondexample/v1" + + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + runtime "k8s.io/apimachinery/pkg/runtime" + watch "k8s.io/apimachinery/pkg/watch" + cache "k8s.io/client-go/tools/cache" ) // ClusterTestTypeInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/secondexample/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/secondexample/v1/testtype.go index c793fc276bb..cdcb809b23c 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/secondexample/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/informers/externalversions/secondexample/v1/testtype.go @@ -22,15 +22,15 @@ import ( context "context" time "time" - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - watch "k8s.io/apimachinery/pkg/watch" - cache "k8s.io/client-go/tools/cache" - apissecondexamplev1 "acme.corp/pkg/apis/secondexample/v1" versioned "acme.corp/pkg/generated/clientset/versioned" internalinterfaces "acme.corp/pkg/generated/informers/externalversions/internalinterfaces" secondexamplev1 "acme.corp/pkg/generated/listers/secondexample/v1" + + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + runtime "k8s.io/apimachinery/pkg/runtime" + watch "k8s.io/apimachinery/pkg/watch" + cache "k8s.io/client-go/tools/cache" ) // TestTypeInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/example/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/example/v1/clustertesttype.go index 5775c071dee..a5c1f6f8259 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/example/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/example/v1/clustertesttype.go @@ -19,11 +19,11 @@ limitations under the License. package v1 import ( + examplev1 "acme.corp/pkg/apis/example/v1" + labels "k8s.io/apimachinery/pkg/labels" listers "k8s.io/client-go/listers" cache "k8s.io/client-go/tools/cache" - - examplev1 "acme.corp/pkg/apis/example/v1" ) // ClusterTestTypeLister helps list ClusterTestTypes. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/example/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/example/v1/testtype.go index 62ed10dd611..5b4c1382d04 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/example/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/example/v1/testtype.go @@ -19,11 +19,11 @@ limitations under the License. package v1 import ( + examplev1 "acme.corp/pkg/apis/example/v1" + labels "k8s.io/apimachinery/pkg/labels" listers "k8s.io/client-go/listers" cache "k8s.io/client-go/tools/cache" - - examplev1 "acme.corp/pkg/apis/example/v1" ) // TestTypeLister helps list TestTypes. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/example/v1/withoutverbtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/example/v1/withoutverbtype.go index afe39a6496c..72fb8fd0360 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/example/v1/withoutverbtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/example/v1/withoutverbtype.go @@ -19,11 +19,11 @@ limitations under the License. package v1 import ( + examplev1 "acme.corp/pkg/apis/example/v1" + labels "k8s.io/apimachinery/pkg/labels" listers "k8s.io/client-go/listers" cache "k8s.io/client-go/tools/cache" - - examplev1 "acme.corp/pkg/apis/example/v1" ) // WithoutVerbTypeLister helps list WithoutVerbTypes. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/example/v1alpha1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/example/v1alpha1/clustertesttype.go index 91dd889b964..3206fa6db6d 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/example/v1alpha1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/example/v1alpha1/clustertesttype.go @@ -19,11 +19,11 @@ limitations under the License. package v1alpha1 import ( + examplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" + labels "k8s.io/apimachinery/pkg/labels" listers "k8s.io/client-go/listers" cache "k8s.io/client-go/tools/cache" - - examplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" ) // ClusterTestTypeLister helps list ClusterTestTypes. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/example/v1alpha1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/example/v1alpha1/testtype.go index 03a099b05ad..ef5ddd6ca8b 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/example/v1alpha1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/example/v1alpha1/testtype.go @@ -19,11 +19,11 @@ limitations under the License. package v1alpha1 import ( + examplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" + labels "k8s.io/apimachinery/pkg/labels" listers "k8s.io/client-go/listers" cache "k8s.io/client-go/tools/cache" - - examplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" ) // TestTypeLister helps list TestTypes. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/example/v1beta1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/example/v1beta1/clustertesttype.go index 8475fc81c2a..ad5041f0472 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/example/v1beta1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/example/v1beta1/clustertesttype.go @@ -19,11 +19,11 @@ limitations under the License. package v1beta1 import ( + examplev1beta1 "acme.corp/pkg/apis/example/v1beta1" + labels "k8s.io/apimachinery/pkg/labels" listers "k8s.io/client-go/listers" cache "k8s.io/client-go/tools/cache" - - examplev1beta1 "acme.corp/pkg/apis/example/v1beta1" ) // ClusterTestTypeLister helps list ClusterTestTypes. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/example/v1beta1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/example/v1beta1/testtype.go index 0ecac7616b3..bf47b5e74c7 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/example/v1beta1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/example/v1beta1/testtype.go @@ -19,11 +19,11 @@ limitations under the License. package v1beta1 import ( + examplev1beta1 "acme.corp/pkg/apis/example/v1beta1" + labels "k8s.io/apimachinery/pkg/labels" listers "k8s.io/client-go/listers" cache "k8s.io/client-go/tools/cache" - - examplev1beta1 "acme.corp/pkg/apis/example/v1beta1" ) // TestTypeLister helps list TestTypes. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/example/v2/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/example/v2/clustertesttype.go index 658dcf79872..ae2dcc7a571 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/example/v2/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/example/v2/clustertesttype.go @@ -19,11 +19,11 @@ limitations under the License. package v2 import ( + examplev2 "acme.corp/pkg/apis/example/v2" + labels "k8s.io/apimachinery/pkg/labels" listers "k8s.io/client-go/listers" cache "k8s.io/client-go/tools/cache" - - examplev2 "acme.corp/pkg/apis/example/v2" ) // ClusterTestTypeLister helps list ClusterTestTypes. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/example/v2/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/example/v2/testtype.go index b351e52865e..a2fa81e978e 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/example/v2/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/example/v2/testtype.go @@ -19,11 +19,11 @@ limitations under the License. package v2 import ( + examplev2 "acme.corp/pkg/apis/example/v2" + labels "k8s.io/apimachinery/pkg/labels" listers "k8s.io/client-go/listers" cache "k8s.io/client-go/tools/cache" - - examplev2 "acme.corp/pkg/apis/example/v2" ) // TestTypeLister helps list TestTypes. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/example3/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/example3/v1/clustertesttype.go index 9cb403a7cad..887d03c5273 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/example3/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/example3/v1/clustertesttype.go @@ -19,11 +19,11 @@ limitations under the License. package v1 import ( + example3v1 "acme.corp/pkg/apis/example3/v1" + labels "k8s.io/apimachinery/pkg/labels" listers "k8s.io/client-go/listers" cache "k8s.io/client-go/tools/cache" - - example3v1 "acme.corp/pkg/apis/example3/v1" ) // ClusterTestTypeLister helps list ClusterTestTypes. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/example3/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/example3/v1/testtype.go index 66bf415a7bf..1ac233f4ac2 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/example3/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/example3/v1/testtype.go @@ -19,11 +19,11 @@ limitations under the License. package v1 import ( + example3v1 "acme.corp/pkg/apis/example3/v1" + labels "k8s.io/apimachinery/pkg/labels" listers "k8s.io/client-go/listers" cache "k8s.io/client-go/tools/cache" - - example3v1 "acme.corp/pkg/apis/example3/v1" ) // TestTypeLister helps list TestTypes. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/exampledashed/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/exampledashed/v1/clustertesttype.go index 57c69342e40..dfc56662438 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/exampledashed/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/exampledashed/v1/clustertesttype.go @@ -19,11 +19,11 @@ limitations under the License. package v1 import ( + exampledashedv1 "acme.corp/pkg/apis/exampledashed/v1" + labels "k8s.io/apimachinery/pkg/labels" listers "k8s.io/client-go/listers" cache "k8s.io/client-go/tools/cache" - - exampledashedv1 "acme.corp/pkg/apis/exampledashed/v1" ) // ClusterTestTypeLister helps list ClusterTestTypes. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/exampledashed/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/exampledashed/v1/testtype.go index 0e05b99cf76..0e1cb9b2e33 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/exampledashed/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/exampledashed/v1/testtype.go @@ -19,11 +19,11 @@ limitations under the License. package v1 import ( + exampledashedv1 "acme.corp/pkg/apis/exampledashed/v1" + labels "k8s.io/apimachinery/pkg/labels" listers "k8s.io/client-go/listers" cache "k8s.io/client-go/tools/cache" - - exampledashedv1 "acme.corp/pkg/apis/exampledashed/v1" ) // TestTypeLister helps list TestTypes. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/existinginterfaces/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/existinginterfaces/v1/clustertesttype.go index 099964da7c0..844fb4cb516 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/existinginterfaces/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/existinginterfaces/v1/clustertesttype.go @@ -19,11 +19,11 @@ limitations under the License. package v1 import ( + existinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" + labels "k8s.io/apimachinery/pkg/labels" listers "k8s.io/client-go/listers" cache "k8s.io/client-go/tools/cache" - - existinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" ) // ClusterTestTypeLister helps list ClusterTestTypes. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/existinginterfaces/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/existinginterfaces/v1/testtype.go index 819c40ecfa6..6aa44aee506 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/existinginterfaces/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/existinginterfaces/v1/testtype.go @@ -19,11 +19,11 @@ limitations under the License. package v1 import ( + existinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" + labels "k8s.io/apimachinery/pkg/labels" listers "k8s.io/client-go/listers" cache "k8s.io/client-go/tools/cache" - - existinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" ) // TestTypeLister helps list TestTypes. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/secondexample/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/secondexample/v1/clustertesttype.go index a8406e5e877..e40bb599efc 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/secondexample/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/secondexample/v1/clustertesttype.go @@ -19,11 +19,11 @@ limitations under the License. package v1 import ( + secondexamplev1 "acme.corp/pkg/apis/secondexample/v1" + labels "k8s.io/apimachinery/pkg/labels" listers "k8s.io/client-go/listers" cache "k8s.io/client-go/tools/cache" - - secondexamplev1 "acme.corp/pkg/apis/secondexample/v1" ) // ClusterTestTypeLister helps list ClusterTestTypes. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/secondexample/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/secondexample/v1/testtype.go index e3ffe088f86..291604c6a7e 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/secondexample/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/generated/listers/secondexample/v1/testtype.go @@ -19,11 +19,11 @@ limitations under the License. package v1 import ( + secondexamplev1 "acme.corp/pkg/apis/secondexample/v1" + labels "k8s.io/apimachinery/pkg/labels" listers "k8s.io/client-go/listers" cache "k8s.io/client-go/tools/cache" - - secondexamplev1 "acme.corp/pkg/apis/secondexample/v1" ) // TestTypeLister helps list TestTypes. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/clientset.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/clientset.go index f2bb5c71146..3c65faf63ba 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/clientset.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/clientset.go @@ -22,13 +22,6 @@ import ( fmt "fmt" http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - - discovery "k8s.io/client-go/discovery" - rest "k8s.io/client-go/rest" - flowcontrol "k8s.io/client-go/util/flowcontrol" - client "acme.corp/pkg/generated/clientset/versioned" examplev1 "acme.corp/pkg/kcp/clients/clientset/versioned/typed/example/v1" examplev1alpha1 "acme.corp/pkg/kcp/clients/clientset/versioned/typed/example/v1alpha1" @@ -38,6 +31,13 @@ import ( exampledashedv1 "acme.corp/pkg/kcp/clients/clientset/versioned/typed/exampledashed/v1" existinginterfacesv1 "acme.corp/pkg/kcp/clients/clientset/versioned/typed/existinginterfaces/v1" secondexamplev1 "acme.corp/pkg/kcp/clients/clientset/versioned/typed/secondexample/v1" + + discovery "k8s.io/client-go/discovery" + rest "k8s.io/client-go/rest" + flowcontrol "k8s.io/client-go/util/flowcontrol" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) type ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/fake/clientset.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/fake/clientset.go index b8f557fa812..5c3ee839fb6 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/fake/clientset.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/fake/clientset.go @@ -19,13 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - - kcpfakediscovery "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/discovery/fake" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" - "k8s.io/apimachinery/pkg/runtime" - "k8s.io/client-go/discovery" - applyconfigurations "acme.corp/pkg/generated/applyconfigurations" clientset "acme.corp/pkg/generated/clientset/versioned" examplev1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1" @@ -54,6 +47,13 @@ import ( kcpfakeexistinginterfacesv1 "acme.corp/pkg/kcp/clients/clientset/versioned/typed/existinginterfaces/v1/fake" kcpsecondexamplev1 "acme.corp/pkg/kcp/clients/clientset/versioned/typed/secondexample/v1" kcpfakesecondexamplev1 "acme.corp/pkg/kcp/clients/clientset/versioned/typed/secondexample/v1/fake" + + "k8s.io/apimachinery/pkg/runtime" + "k8s.io/client-go/discovery" + + kcpfakediscovery "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/discovery/fake" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // NewSimpleClientset returns a clientset that will respond with the provided objects. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/fake/register.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/fake/register.go index c3dc5fe765d..7d674fea452 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/fake/register.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/fake/register.go @@ -19,12 +19,6 @@ limitations under the License. package fake import ( - v1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - schema "k8s.io/apimachinery/pkg/runtime/schema" - serializer "k8s.io/apimachinery/pkg/runtime/serializer" - utilruntime "k8s.io/apimachinery/pkg/util/runtime" - examplev1 "acme.corp/pkg/apis/example/v1" examplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" examplev1beta1 "acme.corp/pkg/apis/example/v1beta1" @@ -33,6 +27,12 @@ import ( exampledashedv1 "acme.corp/pkg/apis/exampledashed/v1" existinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" secondexamplev1 "acme.corp/pkg/apis/secondexample/v1" + + v1 "k8s.io/apimachinery/pkg/apis/meta/v1" + runtime "k8s.io/apimachinery/pkg/runtime" + schema "k8s.io/apimachinery/pkg/runtime/schema" + serializer "k8s.io/apimachinery/pkg/runtime/serializer" + utilruntime "k8s.io/apimachinery/pkg/util/runtime" ) var scheme = runtime.NewScheme() diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/scheme/register.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/scheme/register.go index bd637672b24..203e3b2d606 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/scheme/register.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/scheme/register.go @@ -19,12 +19,6 @@ limitations under the License. package scheme import ( - v1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - schema "k8s.io/apimachinery/pkg/runtime/schema" - serializer "k8s.io/apimachinery/pkg/runtime/serializer" - utilruntime "k8s.io/apimachinery/pkg/util/runtime" - examplev1 "acme.corp/pkg/apis/example/v1" examplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" examplev1beta1 "acme.corp/pkg/apis/example/v1beta1" @@ -33,6 +27,12 @@ import ( exampledashedv1 "acme.corp/pkg/apis/exampledashed/v1" existinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" secondexamplev1 "acme.corp/pkg/apis/secondexample/v1" + + v1 "k8s.io/apimachinery/pkg/apis/meta/v1" + runtime "k8s.io/apimachinery/pkg/runtime" + schema "k8s.io/apimachinery/pkg/runtime/schema" + serializer "k8s.io/apimachinery/pkg/runtime/serializer" + utilruntime "k8s.io/apimachinery/pkg/util/runtime" ) var Scheme = runtime.NewScheme() diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1/clustertesttype.go index b042a2fca72..47ed6e3e686 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1/clustertesttype.go @@ -21,14 +21,14 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" + apisexamplev1 "acme.corp/pkg/apis/example/v1" + examplev1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" - apisexamplev1 "acme.corp/pkg/apis/example/v1" - examplev1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypesClusterGetter has a method to return a ClusterTestTypeClusterInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1/example_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1/example_client.go index 0688ec1f68b..7b447da1fdb 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1/example_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1/example_client.go @@ -21,14 +21,14 @@ package v1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - - rest "k8s.io/client-go/rest" - apisexamplev1 "acme.corp/pkg/apis/example/v1" examplev1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1" scheme "acme.corp/pkg/kcp/clients/clientset/versioned/scheme" + + rest "k8s.io/client-go/rest" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) type ExampleV1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1/fake/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1/fake/clustertesttype.go index 2598f05928d..60bc8754835 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1/fake/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1/fake/clustertesttype.go @@ -19,15 +19,14 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - - kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" - examplev1 "acme.corp/pkg/apis/example/v1" v1 "acme.corp/pkg/generated/applyconfigurations/example/v1" typedexamplev1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1" typedkcpexamplev1 "acme.corp/pkg/kcp/clients/clientset/versioned/typed/example/v1" + + kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // clusterTestTypeClusterClient implements ClusterTestTypeClusterInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1/fake/example_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1/fake/example_client.go index a30d4e3650b..e67ee2d71c1 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1/fake/example_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1/fake/example_client.go @@ -19,13 +19,13 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" + examplev1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1" + kcpexamplev1 "acme.corp/pkg/kcp/clients/clientset/versioned/typed/example/v1" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" rest "k8s.io/client-go/rest" - examplev1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1" - kcpexamplev1 "acme.corp/pkg/kcp/clients/clientset/versioned/typed/example/v1" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpexamplev1.ExampleV1ClusterInterface = (*ExampleV1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1/fake/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1/fake/testtype.go index 9fcd0d04fbb..d9ac537b9f1 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1/fake/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1/fake/testtype.go @@ -21,16 +21,16 @@ package fake import ( context "context" - "github.com/kcp-dev/logicalcluster/v3" - - kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - examplev1 "acme.corp/pkg/apis/example/v1" v1 "acme.corp/pkg/generated/applyconfigurations/example/v1" typedexamplev1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1" typedkcpexamplev1 "acme.corp/pkg/kcp/clients/clientset/versioned/typed/example/v1" + + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + + kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // testTypeClusterClient implements TestTypeClusterInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1/fake/withoutverbtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1/fake/withoutverbtype.go index b860cabe61d..09e5a86a1e8 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1/fake/withoutverbtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1/fake/withoutverbtype.go @@ -19,14 +19,13 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - - kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" - examplev1 "acme.corp/pkg/apis/example/v1" typedexamplev1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1" typedkcpexamplev1 "acme.corp/pkg/kcp/clients/clientset/versioned/typed/example/v1" + + kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // withoutVerbTypeClusterClient implements WithoutVerbTypeClusterInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1/testtype.go index edd177a1ca6..42521942e1d 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1/testtype.go @@ -21,14 +21,14 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" + examplev1 "acme.corp/pkg/apis/example/v1" + typedexamplev1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" - examplev1 "acme.corp/pkg/apis/example/v1" - typedexamplev1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // TestTypesClusterGetter has a method to return a TestTypeClusterInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1/withoutverbtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1/withoutverbtype.go index 24c84c0187e..e17b7629c48 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1/withoutverbtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1/withoutverbtype.go @@ -19,10 +19,10 @@ limitations under the License. package v1 import ( + examplev1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" "github.com/kcp-dev/logicalcluster/v3" - - examplev1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1" ) // WithoutVerbTypesClusterGetter has a method to return a WithoutVerbTypeClusterInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1alpha1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1alpha1/clustertesttype.go index 9eb94dd6e1c..b426fa385c8 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1alpha1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1alpha1/clustertesttype.go @@ -21,14 +21,14 @@ package v1alpha1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" + apisexamplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" + examplev1alpha1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" - apisexamplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" - examplev1alpha1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1alpha1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypesClusterGetter has a method to return a ClusterTestTypeClusterInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1alpha1/example_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1alpha1/example_client.go index 55266843aa1..060006f0133 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1alpha1/example_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1alpha1/example_client.go @@ -21,14 +21,14 @@ package v1alpha1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - - rest "k8s.io/client-go/rest" - apisexamplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" examplev1alpha1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1alpha1" scheme "acme.corp/pkg/kcp/clients/clientset/versioned/scheme" + + rest "k8s.io/client-go/rest" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) type ExampleV1alpha1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1alpha1/fake/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1alpha1/fake/clustertesttype.go index 0600facf24c..1083415f319 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1alpha1/fake/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1alpha1/fake/clustertesttype.go @@ -19,15 +19,14 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - - kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" - examplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" v1alpha1 "acme.corp/pkg/generated/applyconfigurations/example/v1alpha1" typedexamplev1alpha1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1alpha1" typedkcpexamplev1alpha1 "acme.corp/pkg/kcp/clients/clientset/versioned/typed/example/v1alpha1" + + kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // clusterTestTypeClusterClient implements ClusterTestTypeClusterInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1alpha1/fake/example_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1alpha1/fake/example_client.go index d68bce28e44..3f49c05b446 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1alpha1/fake/example_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1alpha1/fake/example_client.go @@ -19,13 +19,13 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" + examplev1alpha1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1alpha1" + kcpexamplev1alpha1 "acme.corp/pkg/kcp/clients/clientset/versioned/typed/example/v1alpha1" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" rest "k8s.io/client-go/rest" - examplev1alpha1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1alpha1" - kcpexamplev1alpha1 "acme.corp/pkg/kcp/clients/clientset/versioned/typed/example/v1alpha1" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpexamplev1alpha1.ExampleV1alpha1ClusterInterface = (*ExampleV1alpha1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1alpha1/fake/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1alpha1/fake/testtype.go index 7ebc0937bbd..07b5abbe217 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1alpha1/fake/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1alpha1/fake/testtype.go @@ -19,15 +19,14 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - - kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" - examplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" v1alpha1 "acme.corp/pkg/generated/applyconfigurations/example/v1alpha1" typedexamplev1alpha1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1alpha1" typedkcpexamplev1alpha1 "acme.corp/pkg/kcp/clients/clientset/versioned/typed/example/v1alpha1" + + kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // testTypeClusterClient implements TestTypeClusterInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1alpha1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1alpha1/testtype.go index d57b0023853..ca4bc2048a0 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1alpha1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1alpha1/testtype.go @@ -21,14 +21,14 @@ package v1alpha1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" + examplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" + typedexamplev1alpha1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" - examplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" - typedexamplev1alpha1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1alpha1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // TestTypesClusterGetter has a method to return a TestTypeClusterInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1beta1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1beta1/clustertesttype.go index a28bd75de43..6dd9f85bbb1 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1beta1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1beta1/clustertesttype.go @@ -21,14 +21,14 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" + apisexamplev1beta1 "acme.corp/pkg/apis/example/v1beta1" + examplev1beta1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" - apisexamplev1beta1 "acme.corp/pkg/apis/example/v1beta1" - examplev1beta1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1beta1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypesClusterGetter has a method to return a ClusterTestTypeClusterInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1beta1/example_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1beta1/example_client.go index 16f74f53097..faa9e3d8cd6 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1beta1/example_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1beta1/example_client.go @@ -21,14 +21,14 @@ package v1beta1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - - rest "k8s.io/client-go/rest" - apisexamplev1beta1 "acme.corp/pkg/apis/example/v1beta1" examplev1beta1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1beta1" scheme "acme.corp/pkg/kcp/clients/clientset/versioned/scheme" + + rest "k8s.io/client-go/rest" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) type ExampleV1beta1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1beta1/fake/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1beta1/fake/clustertesttype.go index 48d43b21263..fc5a78f8b8f 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1beta1/fake/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1beta1/fake/clustertesttype.go @@ -19,15 +19,14 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - - kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" - examplev1beta1 "acme.corp/pkg/apis/example/v1beta1" v1beta1 "acme.corp/pkg/generated/applyconfigurations/example/v1beta1" typedexamplev1beta1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1beta1" typedkcpexamplev1beta1 "acme.corp/pkg/kcp/clients/clientset/versioned/typed/example/v1beta1" + + kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // clusterTestTypeClusterClient implements ClusterTestTypeClusterInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1beta1/fake/example_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1beta1/fake/example_client.go index 87bcf8f6c0e..32616a2283f 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1beta1/fake/example_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1beta1/fake/example_client.go @@ -19,13 +19,13 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" + examplev1beta1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1beta1" + kcpexamplev1beta1 "acme.corp/pkg/kcp/clients/clientset/versioned/typed/example/v1beta1" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" rest "k8s.io/client-go/rest" - examplev1beta1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1beta1" - kcpexamplev1beta1 "acme.corp/pkg/kcp/clients/clientset/versioned/typed/example/v1beta1" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpexamplev1beta1.ExampleV1beta1ClusterInterface = (*ExampleV1beta1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1beta1/fake/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1beta1/fake/testtype.go index 9df6d033ba7..ca1bfd3fcc3 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1beta1/fake/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1beta1/fake/testtype.go @@ -19,15 +19,14 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - - kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" - examplev1beta1 "acme.corp/pkg/apis/example/v1beta1" v1beta1 "acme.corp/pkg/generated/applyconfigurations/example/v1beta1" typedexamplev1beta1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1beta1" typedkcpexamplev1beta1 "acme.corp/pkg/kcp/clients/clientset/versioned/typed/example/v1beta1" + + kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // testTypeClusterClient implements TestTypeClusterInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1beta1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1beta1/testtype.go index e09ff9e1e0c..e0be632350f 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1beta1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v1beta1/testtype.go @@ -21,14 +21,14 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" + examplev1beta1 "acme.corp/pkg/apis/example/v1beta1" + typedexamplev1beta1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" - examplev1beta1 "acme.corp/pkg/apis/example/v1beta1" - typedexamplev1beta1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1beta1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // TestTypesClusterGetter has a method to return a TestTypeClusterInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v2/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v2/clustertesttype.go index d989e5334ac..2960a392503 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v2/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v2/clustertesttype.go @@ -21,14 +21,14 @@ package v2 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" + apisexamplev2 "acme.corp/pkg/apis/example/v2" + examplev2 "acme.corp/pkg/generated/clientset/versioned/typed/example/v2" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" - apisexamplev2 "acme.corp/pkg/apis/example/v2" - examplev2 "acme.corp/pkg/generated/clientset/versioned/typed/example/v2" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypesClusterGetter has a method to return a ClusterTestTypeClusterInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v2/example_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v2/example_client.go index 10c4e553fd2..58cf509a38e 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v2/example_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v2/example_client.go @@ -21,14 +21,14 @@ package v2 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - - rest "k8s.io/client-go/rest" - apisexamplev2 "acme.corp/pkg/apis/example/v2" examplev2 "acme.corp/pkg/generated/clientset/versioned/typed/example/v2" scheme "acme.corp/pkg/kcp/clients/clientset/versioned/scheme" + + rest "k8s.io/client-go/rest" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) type ExampleV2ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v2/fake/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v2/fake/clustertesttype.go index 165c25d5eef..492fa83ee70 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v2/fake/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v2/fake/clustertesttype.go @@ -19,15 +19,14 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - - kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" - examplev2 "acme.corp/pkg/apis/example/v2" v2 "acme.corp/pkg/generated/applyconfigurations/example/v2" typedexamplev2 "acme.corp/pkg/generated/clientset/versioned/typed/example/v2" typedkcpexamplev2 "acme.corp/pkg/kcp/clients/clientset/versioned/typed/example/v2" + + kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // clusterTestTypeClusterClient implements ClusterTestTypeClusterInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v2/fake/example_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v2/fake/example_client.go index 1a59451a72e..d0db31ca77a 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v2/fake/example_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v2/fake/example_client.go @@ -19,13 +19,13 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" + examplev2 "acme.corp/pkg/generated/clientset/versioned/typed/example/v2" + kcpexamplev2 "acme.corp/pkg/kcp/clients/clientset/versioned/typed/example/v2" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" rest "k8s.io/client-go/rest" - examplev2 "acme.corp/pkg/generated/clientset/versioned/typed/example/v2" - kcpexamplev2 "acme.corp/pkg/kcp/clients/clientset/versioned/typed/example/v2" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpexamplev2.ExampleV2ClusterInterface = (*ExampleV2ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v2/fake/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v2/fake/testtype.go index 91e6c3e9c0d..5fa081412c0 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v2/fake/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v2/fake/testtype.go @@ -19,15 +19,14 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - - kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" - examplev2 "acme.corp/pkg/apis/example/v2" v2 "acme.corp/pkg/generated/applyconfigurations/example/v2" typedexamplev2 "acme.corp/pkg/generated/clientset/versioned/typed/example/v2" typedkcpexamplev2 "acme.corp/pkg/kcp/clients/clientset/versioned/typed/example/v2" + + kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // testTypeClusterClient implements TestTypeClusterInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v2/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v2/testtype.go index c6af25a9638..2efdd705875 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v2/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example/v2/testtype.go @@ -21,14 +21,14 @@ package v2 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" + examplev2 "acme.corp/pkg/apis/example/v2" + typedexamplev2 "acme.corp/pkg/generated/clientset/versioned/typed/example/v2" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" - examplev2 "acme.corp/pkg/apis/example/v2" - typedexamplev2 "acme.corp/pkg/generated/clientset/versioned/typed/example/v2" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // TestTypesClusterGetter has a method to return a TestTypeClusterInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example3/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example3/v1/clustertesttype.go index 8bc1aca5a9c..b03688276f7 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example3/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example3/v1/clustertesttype.go @@ -21,14 +21,14 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" + apisexample3v1 "acme.corp/pkg/apis/example3/v1" + example3v1 "acme.corp/pkg/generated/clientset/versioned/typed/example3/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" - apisexample3v1 "acme.corp/pkg/apis/example3/v1" - example3v1 "acme.corp/pkg/generated/clientset/versioned/typed/example3/v1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypesClusterGetter has a method to return a ClusterTestTypeClusterInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example3/v1/example3_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example3/v1/example3_client.go index 58714d50c4c..5978dec464b 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example3/v1/example3_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example3/v1/example3_client.go @@ -21,14 +21,14 @@ package v1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - - rest "k8s.io/client-go/rest" - apisexample3v1 "acme.corp/pkg/apis/example3/v1" example3v1 "acme.corp/pkg/generated/clientset/versioned/typed/example3/v1" scheme "acme.corp/pkg/kcp/clients/clientset/versioned/scheme" + + rest "k8s.io/client-go/rest" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) type Example3V1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example3/v1/fake/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example3/v1/fake/clustertesttype.go index d76631cdb15..01af25efca1 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example3/v1/fake/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example3/v1/fake/clustertesttype.go @@ -19,15 +19,14 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - - kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" - example3v1 "acme.corp/pkg/apis/example3/v1" v1 "acme.corp/pkg/generated/applyconfigurations/example3/v1" typedexample3v1 "acme.corp/pkg/generated/clientset/versioned/typed/example3/v1" typedkcpexample3v1 "acme.corp/pkg/kcp/clients/clientset/versioned/typed/example3/v1" + + kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // clusterTestTypeClusterClient implements ClusterTestTypeClusterInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example3/v1/fake/example3_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example3/v1/fake/example3_client.go index f3663a736b7..8f44329dc5c 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example3/v1/fake/example3_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example3/v1/fake/example3_client.go @@ -19,13 +19,13 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" + example3v1 "acme.corp/pkg/generated/clientset/versioned/typed/example3/v1" + kcpexample3v1 "acme.corp/pkg/kcp/clients/clientset/versioned/typed/example3/v1" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" rest "k8s.io/client-go/rest" - example3v1 "acme.corp/pkg/generated/clientset/versioned/typed/example3/v1" - kcpexample3v1 "acme.corp/pkg/kcp/clients/clientset/versioned/typed/example3/v1" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpexample3v1.Example3V1ClusterInterface = (*Example3V1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example3/v1/fake/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example3/v1/fake/testtype.go index b3147914134..fa780e1483f 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example3/v1/fake/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example3/v1/fake/testtype.go @@ -21,17 +21,17 @@ package fake import ( context "context" - "github.com/kcp-dev/logicalcluster/v3" - - kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - examplev1 "acme.corp/pkg/apis/example/v1" example3v1 "acme.corp/pkg/apis/example3/v1" v1 "acme.corp/pkg/generated/applyconfigurations/example3/v1" typedexample3v1 "acme.corp/pkg/generated/clientset/versioned/typed/example3/v1" typedkcpexample3v1 "acme.corp/pkg/kcp/clients/clientset/versioned/typed/example3/v1" + + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + + kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // testTypeClusterClient implements TestTypeClusterInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example3/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example3/v1/testtype.go index 68c63b02a6e..6a28c0f86f5 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example3/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/example3/v1/testtype.go @@ -21,14 +21,14 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" + example3v1 "acme.corp/pkg/apis/example3/v1" + typedexample3v1 "acme.corp/pkg/generated/clientset/versioned/typed/example3/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" - example3v1 "acme.corp/pkg/apis/example3/v1" - typedexample3v1 "acme.corp/pkg/generated/clientset/versioned/typed/example3/v1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // TestTypesClusterGetter has a method to return a TestTypeClusterInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/exampledashed/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/exampledashed/v1/clustertesttype.go index c3a731a3ce2..f3c907ebab2 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/exampledashed/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/exampledashed/v1/clustertesttype.go @@ -21,14 +21,14 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" + apisexampledashedv1 "acme.corp/pkg/apis/exampledashed/v1" + exampledashedv1 "acme.corp/pkg/generated/clientset/versioned/typed/exampledashed/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" - apisexampledashedv1 "acme.corp/pkg/apis/exampledashed/v1" - exampledashedv1 "acme.corp/pkg/generated/clientset/versioned/typed/exampledashed/v1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypesClusterGetter has a method to return a ClusterTestTypeClusterInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/exampledashed/v1/exampledashed_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/exampledashed/v1/exampledashed_client.go index 4bef98503bb..86b51039a48 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/exampledashed/v1/exampledashed_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/exampledashed/v1/exampledashed_client.go @@ -21,14 +21,14 @@ package v1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - - rest "k8s.io/client-go/rest" - apisexampledashedv1 "acme.corp/pkg/apis/exampledashed/v1" exampledashedv1 "acme.corp/pkg/generated/clientset/versioned/typed/exampledashed/v1" scheme "acme.corp/pkg/kcp/clients/clientset/versioned/scheme" + + rest "k8s.io/client-go/rest" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) type ExampleDashedV1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/exampledashed/v1/fake/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/exampledashed/v1/fake/clustertesttype.go index 4923a3dad34..cbc88e0d061 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/exampledashed/v1/fake/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/exampledashed/v1/fake/clustertesttype.go @@ -19,15 +19,14 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - - kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" - exampledashedv1 "acme.corp/pkg/apis/exampledashed/v1" v1 "acme.corp/pkg/generated/applyconfigurations/exampledashed/v1" typedexampledashedv1 "acme.corp/pkg/generated/clientset/versioned/typed/exampledashed/v1" typedkcpexampledashedv1 "acme.corp/pkg/kcp/clients/clientset/versioned/typed/exampledashed/v1" + + kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // clusterTestTypeClusterClient implements ClusterTestTypeClusterInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/exampledashed/v1/fake/exampledashed_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/exampledashed/v1/fake/exampledashed_client.go index 28c8ca3c4c3..ee952fd9ac0 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/exampledashed/v1/fake/exampledashed_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/exampledashed/v1/fake/exampledashed_client.go @@ -19,13 +19,13 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" + exampledashedv1 "acme.corp/pkg/generated/clientset/versioned/typed/exampledashed/v1" + kcpexampledashedv1 "acme.corp/pkg/kcp/clients/clientset/versioned/typed/exampledashed/v1" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" rest "k8s.io/client-go/rest" - exampledashedv1 "acme.corp/pkg/generated/clientset/versioned/typed/exampledashed/v1" - kcpexampledashedv1 "acme.corp/pkg/kcp/clients/clientset/versioned/typed/exampledashed/v1" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpexampledashedv1.ExampleDashedV1ClusterInterface = (*ExampleDashedV1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/exampledashed/v1/fake/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/exampledashed/v1/fake/testtype.go index 0d914990ad1..1a1383a0c04 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/exampledashed/v1/fake/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/exampledashed/v1/fake/testtype.go @@ -21,17 +21,17 @@ package fake import ( context "context" - "github.com/kcp-dev/logicalcluster/v3" - - kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - examplev1 "acme.corp/pkg/apis/example/v1" exampledashedv1 "acme.corp/pkg/apis/exampledashed/v1" v1 "acme.corp/pkg/generated/applyconfigurations/exampledashed/v1" typedexampledashedv1 "acme.corp/pkg/generated/clientset/versioned/typed/exampledashed/v1" typedkcpexampledashedv1 "acme.corp/pkg/kcp/clients/clientset/versioned/typed/exampledashed/v1" + + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + + kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // testTypeClusterClient implements TestTypeClusterInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/exampledashed/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/exampledashed/v1/testtype.go index b44856e3bec..286c876239b 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/exampledashed/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/exampledashed/v1/testtype.go @@ -21,14 +21,14 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" + exampledashedv1 "acme.corp/pkg/apis/exampledashed/v1" + typedexampledashedv1 "acme.corp/pkg/generated/clientset/versioned/typed/exampledashed/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" - exampledashedv1 "acme.corp/pkg/apis/exampledashed/v1" - typedexampledashedv1 "acme.corp/pkg/generated/clientset/versioned/typed/exampledashed/v1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // TestTypesClusterGetter has a method to return a TestTypeClusterInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/existinginterfaces/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/existinginterfaces/v1/clustertesttype.go index 244e5f76d39..d829a5546e1 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/existinginterfaces/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/existinginterfaces/v1/clustertesttype.go @@ -21,14 +21,14 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" + apisexistinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" + existinginterfacesv1 "acme.corp/pkg/generated/clientset/versioned/typed/existinginterfaces/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" - apisexistinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" - existinginterfacesv1 "acme.corp/pkg/generated/clientset/versioned/typed/existinginterfaces/v1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypesClusterGetter has a method to return a ClusterTestTypeClusterInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/existinginterfaces/v1/existinginterfaces_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/existinginterfaces/v1/existinginterfaces_client.go index 0a9e167a718..c2b520e6c47 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/existinginterfaces/v1/existinginterfaces_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/existinginterfaces/v1/existinginterfaces_client.go @@ -21,14 +21,14 @@ package v1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - - rest "k8s.io/client-go/rest" - apisexistinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" existinginterfacesv1 "acme.corp/pkg/generated/clientset/versioned/typed/existinginterfaces/v1" scheme "acme.corp/pkg/kcp/clients/clientset/versioned/scheme" + + rest "k8s.io/client-go/rest" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) type ExistinginterfacesV1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/existinginterfaces/v1/fake/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/existinginterfaces/v1/fake/clustertesttype.go index 7f1b2be76b3..ce5ffa993a1 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/existinginterfaces/v1/fake/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/existinginterfaces/v1/fake/clustertesttype.go @@ -19,15 +19,14 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - - kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" - existinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" v1 "acme.corp/pkg/generated/applyconfigurations/existinginterfaces/v1" typedexistinginterfacesv1 "acme.corp/pkg/generated/clientset/versioned/typed/existinginterfaces/v1" typedkcpexistinginterfacesv1 "acme.corp/pkg/kcp/clients/clientset/versioned/typed/existinginterfaces/v1" + + kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // clusterTestTypeClusterClient implements ClusterTestTypeClusterInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/existinginterfaces/v1/fake/existinginterfaces_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/existinginterfaces/v1/fake/existinginterfaces_client.go index ac89dd8efc8..878d1e1daa6 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/existinginterfaces/v1/fake/existinginterfaces_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/existinginterfaces/v1/fake/existinginterfaces_client.go @@ -19,13 +19,13 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" + existinginterfacesv1 "acme.corp/pkg/generated/clientset/versioned/typed/existinginterfaces/v1" + kcpexistinginterfacesv1 "acme.corp/pkg/kcp/clients/clientset/versioned/typed/existinginterfaces/v1" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" rest "k8s.io/client-go/rest" - existinginterfacesv1 "acme.corp/pkg/generated/clientset/versioned/typed/existinginterfaces/v1" - kcpexistinginterfacesv1 "acme.corp/pkg/kcp/clients/clientset/versioned/typed/existinginterfaces/v1" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpexistinginterfacesv1.ExistinginterfacesV1ClusterInterface = (*ExistinginterfacesV1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/existinginterfaces/v1/fake/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/existinginterfaces/v1/fake/testtype.go index 58968ea3d11..8d42b4580d1 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/existinginterfaces/v1/fake/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/existinginterfaces/v1/fake/testtype.go @@ -19,15 +19,14 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - - kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" - existinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" v1 "acme.corp/pkg/generated/applyconfigurations/existinginterfaces/v1" typedexistinginterfacesv1 "acme.corp/pkg/generated/clientset/versioned/typed/existinginterfaces/v1" typedkcpexistinginterfacesv1 "acme.corp/pkg/kcp/clients/clientset/versioned/typed/existinginterfaces/v1" + + kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // testTypeClusterClient implements TestTypeClusterInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/existinginterfaces/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/existinginterfaces/v1/testtype.go index 783b6b16aa6..8adce2827d4 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/existinginterfaces/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/existinginterfaces/v1/testtype.go @@ -21,14 +21,14 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" + existinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" + typedexistinginterfacesv1 "acme.corp/pkg/generated/clientset/versioned/typed/existinginterfaces/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" - existinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" - typedexistinginterfacesv1 "acme.corp/pkg/generated/clientset/versioned/typed/existinginterfaces/v1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // TestTypesClusterGetter has a method to return a TestTypeClusterInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/secondexample/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/secondexample/v1/clustertesttype.go index 1f646905cf0..861ce3c8ce3 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/secondexample/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/secondexample/v1/clustertesttype.go @@ -21,14 +21,14 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" + apissecondexamplev1 "acme.corp/pkg/apis/secondexample/v1" + secondexamplev1 "acme.corp/pkg/generated/clientset/versioned/typed/secondexample/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" - apissecondexamplev1 "acme.corp/pkg/apis/secondexample/v1" - secondexamplev1 "acme.corp/pkg/generated/clientset/versioned/typed/secondexample/v1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypesClusterGetter has a method to return a ClusterTestTypeClusterInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/secondexample/v1/fake/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/secondexample/v1/fake/clustertesttype.go index 262d9ebb29c..868d6acf57e 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/secondexample/v1/fake/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/secondexample/v1/fake/clustertesttype.go @@ -19,15 +19,14 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - - kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" - secondexamplev1 "acme.corp/pkg/apis/secondexample/v1" v1 "acme.corp/pkg/generated/applyconfigurations/secondexample/v1" typedsecondexamplev1 "acme.corp/pkg/generated/clientset/versioned/typed/secondexample/v1" typedkcpsecondexamplev1 "acme.corp/pkg/kcp/clients/clientset/versioned/typed/secondexample/v1" + + kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // clusterTestTypeClusterClient implements ClusterTestTypeClusterInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/secondexample/v1/fake/secondexample_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/secondexample/v1/fake/secondexample_client.go index 779e2a31859..4ab6a926948 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/secondexample/v1/fake/secondexample_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/secondexample/v1/fake/secondexample_client.go @@ -19,13 +19,13 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" + secondexamplev1 "acme.corp/pkg/generated/clientset/versioned/typed/secondexample/v1" + kcpsecondexamplev1 "acme.corp/pkg/kcp/clients/clientset/versioned/typed/secondexample/v1" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" rest "k8s.io/client-go/rest" - secondexamplev1 "acme.corp/pkg/generated/clientset/versioned/typed/secondexample/v1" - kcpsecondexamplev1 "acme.corp/pkg/kcp/clients/clientset/versioned/typed/secondexample/v1" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpsecondexamplev1.SecondexampleV1ClusterInterface = (*SecondexampleV1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/secondexample/v1/fake/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/secondexample/v1/fake/testtype.go index 2a8d1d92cea..41a76e9e5d5 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/secondexample/v1/fake/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/secondexample/v1/fake/testtype.go @@ -19,15 +19,14 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - - kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" - secondexamplev1 "acme.corp/pkg/apis/secondexample/v1" v1 "acme.corp/pkg/generated/applyconfigurations/secondexample/v1" typedsecondexamplev1 "acme.corp/pkg/generated/clientset/versioned/typed/secondexample/v1" typedkcpsecondexamplev1 "acme.corp/pkg/kcp/clients/clientset/versioned/typed/secondexample/v1" + + kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // testTypeClusterClient implements TestTypeClusterInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/secondexample/v1/secondexample_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/secondexample/v1/secondexample_client.go index 4faeed22b4a..0a27f0d9f93 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/secondexample/v1/secondexample_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/secondexample/v1/secondexample_client.go @@ -21,14 +21,14 @@ package v1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - - rest "k8s.io/client-go/rest" - apissecondexamplev1 "acme.corp/pkg/apis/secondexample/v1" secondexamplev1 "acme.corp/pkg/generated/clientset/versioned/typed/secondexample/v1" scheme "acme.corp/pkg/kcp/clients/clientset/versioned/scheme" + + rest "k8s.io/client-go/rest" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) type SecondexampleV1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/secondexample/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/secondexample/v1/testtype.go index f2bcb27b2e0..beb003f72a8 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/secondexample/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/clientset/versioned/typed/secondexample/v1/testtype.go @@ -21,14 +21,14 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" + secondexamplev1 "acme.corp/pkg/apis/secondexample/v1" + typedsecondexamplev1 "acme.corp/pkg/generated/clientset/versioned/typed/secondexample/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" - secondexamplev1 "acme.corp/pkg/apis/secondexample/v1" - typedsecondexamplev1 "acme.corp/pkg/generated/clientset/versioned/typed/secondexample/v1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // TestTypesClusterGetter has a method to return a TestTypeClusterInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/example/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/example/v1/clustertesttype.go index d39fabba411..77f6ed3f8d1 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/example/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/example/v1/clustertesttype.go @@ -22,20 +22,20 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" + apisexamplev1 "acme.corp/pkg/apis/example/v1" + clientsetversioned "acme.corp/pkg/generated/clientset/versioned" + versioned "acme.corp/pkg/kcp/clients/clientset/versioned" + internalinterfaces "acme.corp/pkg/kcp/clients/informers/externalversions/internalinterfaces" + examplev1 "acme.corp/pkg/kcp/clients/listers/example/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" watch "k8s.io/apimachinery/pkg/watch" cache "k8s.io/client-go/tools/cache" - apisexamplev1 "acme.corp/pkg/apis/example/v1" - clientsetversioned "acme.corp/pkg/generated/clientset/versioned" - versioned "acme.corp/pkg/kcp/clients/clientset/versioned" - internalinterfaces "acme.corp/pkg/kcp/clients/informers/externalversions/internalinterfaces" - examplev1 "acme.corp/pkg/kcp/clients/listers/example/v1" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypeClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/example/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/example/v1/testtype.go index 5896b82f7dd..2c672c1b40a 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/example/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/example/v1/testtype.go @@ -22,20 +22,20 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" + apisexamplev1 "acme.corp/pkg/apis/example/v1" + clientsetversioned "acme.corp/pkg/generated/clientset/versioned" + versioned "acme.corp/pkg/kcp/clients/clientset/versioned" + internalinterfaces "acme.corp/pkg/kcp/clients/informers/externalversions/internalinterfaces" + examplev1 "acme.corp/pkg/kcp/clients/listers/example/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" watch "k8s.io/apimachinery/pkg/watch" cache "k8s.io/client-go/tools/cache" - apisexamplev1 "acme.corp/pkg/apis/example/v1" - clientsetversioned "acme.corp/pkg/generated/clientset/versioned" - versioned "acme.corp/pkg/kcp/clients/clientset/versioned" - internalinterfaces "acme.corp/pkg/kcp/clients/informers/externalversions/internalinterfaces" - examplev1 "acme.corp/pkg/kcp/clients/listers/example/v1" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // TestTypeClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/example/v1alpha1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/example/v1alpha1/clustertesttype.go index 6ffc3eb56ac..0648999a58c 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/example/v1alpha1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/example/v1alpha1/clustertesttype.go @@ -22,20 +22,20 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" + apisexamplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" + clientsetversioned "acme.corp/pkg/generated/clientset/versioned" + versioned "acme.corp/pkg/kcp/clients/clientset/versioned" + internalinterfaces "acme.corp/pkg/kcp/clients/informers/externalversions/internalinterfaces" + examplev1alpha1 "acme.corp/pkg/kcp/clients/listers/example/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" watch "k8s.io/apimachinery/pkg/watch" cache "k8s.io/client-go/tools/cache" - apisexamplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" - clientsetversioned "acme.corp/pkg/generated/clientset/versioned" - versioned "acme.corp/pkg/kcp/clients/clientset/versioned" - internalinterfaces "acme.corp/pkg/kcp/clients/informers/externalversions/internalinterfaces" - examplev1alpha1 "acme.corp/pkg/kcp/clients/listers/example/v1alpha1" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypeClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/example/v1alpha1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/example/v1alpha1/testtype.go index 2a0ffd0d43b..e90c6522598 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/example/v1alpha1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/example/v1alpha1/testtype.go @@ -22,20 +22,20 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" + apisexamplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" + clientsetversioned "acme.corp/pkg/generated/clientset/versioned" + versioned "acme.corp/pkg/kcp/clients/clientset/versioned" + internalinterfaces "acme.corp/pkg/kcp/clients/informers/externalversions/internalinterfaces" + examplev1alpha1 "acme.corp/pkg/kcp/clients/listers/example/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" watch "k8s.io/apimachinery/pkg/watch" cache "k8s.io/client-go/tools/cache" - apisexamplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" - clientsetversioned "acme.corp/pkg/generated/clientset/versioned" - versioned "acme.corp/pkg/kcp/clients/clientset/versioned" - internalinterfaces "acme.corp/pkg/kcp/clients/informers/externalversions/internalinterfaces" - examplev1alpha1 "acme.corp/pkg/kcp/clients/listers/example/v1alpha1" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // TestTypeClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/example/v1beta1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/example/v1beta1/clustertesttype.go index a593d7550bf..302c3833cb1 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/example/v1beta1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/example/v1beta1/clustertesttype.go @@ -22,20 +22,20 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" + apisexamplev1beta1 "acme.corp/pkg/apis/example/v1beta1" + clientsetversioned "acme.corp/pkg/generated/clientset/versioned" + versioned "acme.corp/pkg/kcp/clients/clientset/versioned" + internalinterfaces "acme.corp/pkg/kcp/clients/informers/externalversions/internalinterfaces" + examplev1beta1 "acme.corp/pkg/kcp/clients/listers/example/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" watch "k8s.io/apimachinery/pkg/watch" cache "k8s.io/client-go/tools/cache" - apisexamplev1beta1 "acme.corp/pkg/apis/example/v1beta1" - clientsetversioned "acme.corp/pkg/generated/clientset/versioned" - versioned "acme.corp/pkg/kcp/clients/clientset/versioned" - internalinterfaces "acme.corp/pkg/kcp/clients/informers/externalversions/internalinterfaces" - examplev1beta1 "acme.corp/pkg/kcp/clients/listers/example/v1beta1" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypeClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/example/v1beta1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/example/v1beta1/testtype.go index bdfb6132c62..b94b41a2bdd 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/example/v1beta1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/example/v1beta1/testtype.go @@ -22,20 +22,20 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" + apisexamplev1beta1 "acme.corp/pkg/apis/example/v1beta1" + clientsetversioned "acme.corp/pkg/generated/clientset/versioned" + versioned "acme.corp/pkg/kcp/clients/clientset/versioned" + internalinterfaces "acme.corp/pkg/kcp/clients/informers/externalversions/internalinterfaces" + examplev1beta1 "acme.corp/pkg/kcp/clients/listers/example/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" watch "k8s.io/apimachinery/pkg/watch" cache "k8s.io/client-go/tools/cache" - apisexamplev1beta1 "acme.corp/pkg/apis/example/v1beta1" - clientsetversioned "acme.corp/pkg/generated/clientset/versioned" - versioned "acme.corp/pkg/kcp/clients/clientset/versioned" - internalinterfaces "acme.corp/pkg/kcp/clients/informers/externalversions/internalinterfaces" - examplev1beta1 "acme.corp/pkg/kcp/clients/listers/example/v1beta1" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // TestTypeClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/example/v2/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/example/v2/clustertesttype.go index 5ef6762529c..0eb23536898 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/example/v2/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/example/v2/clustertesttype.go @@ -22,20 +22,20 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" + apisexamplev2 "acme.corp/pkg/apis/example/v2" + clientsetversioned "acme.corp/pkg/generated/clientset/versioned" + versioned "acme.corp/pkg/kcp/clients/clientset/versioned" + internalinterfaces "acme.corp/pkg/kcp/clients/informers/externalversions/internalinterfaces" + examplev2 "acme.corp/pkg/kcp/clients/listers/example/v2" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" watch "k8s.io/apimachinery/pkg/watch" cache "k8s.io/client-go/tools/cache" - apisexamplev2 "acme.corp/pkg/apis/example/v2" - clientsetversioned "acme.corp/pkg/generated/clientset/versioned" - versioned "acme.corp/pkg/kcp/clients/clientset/versioned" - internalinterfaces "acme.corp/pkg/kcp/clients/informers/externalversions/internalinterfaces" - examplev2 "acme.corp/pkg/kcp/clients/listers/example/v2" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypeClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/example/v2/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/example/v2/testtype.go index a15181b39c4..02c17d0fb3b 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/example/v2/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/example/v2/testtype.go @@ -22,20 +22,20 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" + apisexamplev2 "acme.corp/pkg/apis/example/v2" + clientsetversioned "acme.corp/pkg/generated/clientset/versioned" + versioned "acme.corp/pkg/kcp/clients/clientset/versioned" + internalinterfaces "acme.corp/pkg/kcp/clients/informers/externalversions/internalinterfaces" + examplev2 "acme.corp/pkg/kcp/clients/listers/example/v2" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" watch "k8s.io/apimachinery/pkg/watch" cache "k8s.io/client-go/tools/cache" - apisexamplev2 "acme.corp/pkg/apis/example/v2" - clientsetversioned "acme.corp/pkg/generated/clientset/versioned" - versioned "acme.corp/pkg/kcp/clients/clientset/versioned" - internalinterfaces "acme.corp/pkg/kcp/clients/informers/externalversions/internalinterfaces" - examplev2 "acme.corp/pkg/kcp/clients/listers/example/v2" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // TestTypeClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/example3/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/example3/v1/clustertesttype.go index c5ecc345f84..b99a0822f27 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/example3/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/example3/v1/clustertesttype.go @@ -22,20 +22,20 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" + apisexample3v1 "acme.corp/pkg/apis/example3/v1" + clientsetversioned "acme.corp/pkg/generated/clientset/versioned" + versioned "acme.corp/pkg/kcp/clients/clientset/versioned" + internalinterfaces "acme.corp/pkg/kcp/clients/informers/externalversions/internalinterfaces" + example3v1 "acme.corp/pkg/kcp/clients/listers/example3/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" watch "k8s.io/apimachinery/pkg/watch" cache "k8s.io/client-go/tools/cache" - apisexample3v1 "acme.corp/pkg/apis/example3/v1" - clientsetversioned "acme.corp/pkg/generated/clientset/versioned" - versioned "acme.corp/pkg/kcp/clients/clientset/versioned" - internalinterfaces "acme.corp/pkg/kcp/clients/informers/externalversions/internalinterfaces" - example3v1 "acme.corp/pkg/kcp/clients/listers/example3/v1" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypeClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/example3/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/example3/v1/testtype.go index 59b3f7d152d..78a4b59c893 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/example3/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/example3/v1/testtype.go @@ -22,20 +22,20 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" + apisexample3v1 "acme.corp/pkg/apis/example3/v1" + clientsetversioned "acme.corp/pkg/generated/clientset/versioned" + versioned "acme.corp/pkg/kcp/clients/clientset/versioned" + internalinterfaces "acme.corp/pkg/kcp/clients/informers/externalversions/internalinterfaces" + example3v1 "acme.corp/pkg/kcp/clients/listers/example3/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" watch "k8s.io/apimachinery/pkg/watch" cache "k8s.io/client-go/tools/cache" - apisexample3v1 "acme.corp/pkg/apis/example3/v1" - clientsetversioned "acme.corp/pkg/generated/clientset/versioned" - versioned "acme.corp/pkg/kcp/clients/clientset/versioned" - internalinterfaces "acme.corp/pkg/kcp/clients/informers/externalversions/internalinterfaces" - example3v1 "acme.corp/pkg/kcp/clients/listers/example3/v1" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // TestTypeClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/exampledashed/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/exampledashed/v1/clustertesttype.go index 032b39f5eab..fb30b30caeb 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/exampledashed/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/exampledashed/v1/clustertesttype.go @@ -22,20 +22,20 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" + apisexampledashedv1 "acme.corp/pkg/apis/exampledashed/v1" + clientsetversioned "acme.corp/pkg/generated/clientset/versioned" + versioned "acme.corp/pkg/kcp/clients/clientset/versioned" + internalinterfaces "acme.corp/pkg/kcp/clients/informers/externalversions/internalinterfaces" + exampledashedv1 "acme.corp/pkg/kcp/clients/listers/exampledashed/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" watch "k8s.io/apimachinery/pkg/watch" cache "k8s.io/client-go/tools/cache" - apisexampledashedv1 "acme.corp/pkg/apis/exampledashed/v1" - clientsetversioned "acme.corp/pkg/generated/clientset/versioned" - versioned "acme.corp/pkg/kcp/clients/clientset/versioned" - internalinterfaces "acme.corp/pkg/kcp/clients/informers/externalversions/internalinterfaces" - exampledashedv1 "acme.corp/pkg/kcp/clients/listers/exampledashed/v1" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypeClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/exampledashed/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/exampledashed/v1/testtype.go index a2d793c8a6f..eba52923cff 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/exampledashed/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/exampledashed/v1/testtype.go @@ -22,20 +22,20 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" + apisexampledashedv1 "acme.corp/pkg/apis/exampledashed/v1" + clientsetversioned "acme.corp/pkg/generated/clientset/versioned" + versioned "acme.corp/pkg/kcp/clients/clientset/versioned" + internalinterfaces "acme.corp/pkg/kcp/clients/informers/externalversions/internalinterfaces" + exampledashedv1 "acme.corp/pkg/kcp/clients/listers/exampledashed/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" watch "k8s.io/apimachinery/pkg/watch" cache "k8s.io/client-go/tools/cache" - apisexampledashedv1 "acme.corp/pkg/apis/exampledashed/v1" - clientsetversioned "acme.corp/pkg/generated/clientset/versioned" - versioned "acme.corp/pkg/kcp/clients/clientset/versioned" - internalinterfaces "acme.corp/pkg/kcp/clients/informers/externalversions/internalinterfaces" - exampledashedv1 "acme.corp/pkg/kcp/clients/listers/exampledashed/v1" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // TestTypeClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/existinginterfaces/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/existinginterfaces/v1/clustertesttype.go index 2190b0caa65..9eb4b16590e 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/existinginterfaces/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/existinginterfaces/v1/clustertesttype.go @@ -22,20 +22,20 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" + apisexistinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" + clientsetversioned "acme.corp/pkg/generated/clientset/versioned" + versioned "acme.corp/pkg/kcp/clients/clientset/versioned" + internalinterfaces "acme.corp/pkg/kcp/clients/informers/externalversions/internalinterfaces" + existinginterfacesv1 "acme.corp/pkg/kcp/clients/listers/existinginterfaces/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" watch "k8s.io/apimachinery/pkg/watch" cache "k8s.io/client-go/tools/cache" - apisexistinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" - clientsetversioned "acme.corp/pkg/generated/clientset/versioned" - versioned "acme.corp/pkg/kcp/clients/clientset/versioned" - internalinterfaces "acme.corp/pkg/kcp/clients/informers/externalversions/internalinterfaces" - existinginterfacesv1 "acme.corp/pkg/kcp/clients/listers/existinginterfaces/v1" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypeClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/existinginterfaces/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/existinginterfaces/v1/testtype.go index 93af98a845a..75807a57a91 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/existinginterfaces/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/existinginterfaces/v1/testtype.go @@ -22,20 +22,20 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" + apisexistinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" + clientsetversioned "acme.corp/pkg/generated/clientset/versioned" + versioned "acme.corp/pkg/kcp/clients/clientset/versioned" + internalinterfaces "acme.corp/pkg/kcp/clients/informers/externalversions/internalinterfaces" + existinginterfacesv1 "acme.corp/pkg/kcp/clients/listers/existinginterfaces/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" watch "k8s.io/apimachinery/pkg/watch" cache "k8s.io/client-go/tools/cache" - apisexistinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" - clientsetversioned "acme.corp/pkg/generated/clientset/versioned" - versioned "acme.corp/pkg/kcp/clients/clientset/versioned" - internalinterfaces "acme.corp/pkg/kcp/clients/informers/externalversions/internalinterfaces" - existinginterfacesv1 "acme.corp/pkg/kcp/clients/listers/existinginterfaces/v1" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // TestTypeClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/factory.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/factory.go index a436e49fc37..1b46a70c7b1 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/factory.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/factory.go @@ -23,14 +23,6 @@ import ( sync "sync" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - - v1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - schema "k8s.io/apimachinery/pkg/runtime/schema" - cache "k8s.io/client-go/tools/cache" - clientsetversioned "acme.corp/pkg/generated/clientset/versioned" versioned "acme.corp/pkg/kcp/clients/clientset/versioned" example "acme.corp/pkg/kcp/clients/informers/externalversions/example" @@ -39,6 +31,14 @@ import ( existinginterfaces "acme.corp/pkg/kcp/clients/informers/externalversions/existinginterfaces" internalinterfaces "acme.corp/pkg/kcp/clients/informers/externalversions/internalinterfaces" secondexample "acme.corp/pkg/kcp/clients/informers/externalversions/secondexample" + + v1 "k8s.io/apimachinery/pkg/apis/meta/v1" + runtime "k8s.io/apimachinery/pkg/runtime" + schema "k8s.io/apimachinery/pkg/runtime/schema" + cache "k8s.io/client-go/tools/cache" + + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // SharedInformerOption defines the functional option type for SharedInformerFactory. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/generic.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/generic.go index 54a5c0a293c..31294636788 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/generic.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/generic.go @@ -22,12 +22,6 @@ import ( context "context" fmt "fmt" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - - schema "k8s.io/apimachinery/pkg/runtime/schema" - cache "k8s.io/client-go/tools/cache" - examplev1 "acme.corp/pkg/apis/example/v1" v1alpha1 "acme.corp/pkg/apis/example/v1alpha1" v1beta1 "acme.corp/pkg/apis/example/v1beta1" @@ -36,6 +30,12 @@ import ( v1 "acme.corp/pkg/apis/exampledashed/v1" existinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" secondexamplev1 "acme.corp/pkg/apis/secondexample/v1" + + schema "k8s.io/apimachinery/pkg/runtime/schema" + cache "k8s.io/client-go/tools/cache" + + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) type GenericClusterInformer interface { diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/internalinterfaces/factory_interfaces.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/internalinterfaces/factory_interfaces.go index 905e2dece5e..4c872a55e8e 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/internalinterfaces/factory_interfaces.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/internalinterfaces/factory_interfaces.go @@ -21,14 +21,14 @@ package internalinterfaces import ( time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + clientsetversioned "acme.corp/pkg/generated/clientset/versioned" + versioned "acme.corp/pkg/kcp/clients/clientset/versioned" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" cache "k8s.io/client-go/tools/cache" - clientsetversioned "acme.corp/pkg/generated/clientset/versioned" - versioned "acme.corp/pkg/kcp/clients/clientset/versioned" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" ) // TweakListOptionsFunc is a function that transforms a v1.ListOptions. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/secondexample/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/secondexample/v1/clustertesttype.go index ee0f6a65718..8ebabdd585e 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/secondexample/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/secondexample/v1/clustertesttype.go @@ -22,20 +22,20 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" + apissecondexamplev1 "acme.corp/pkg/apis/secondexample/v1" + clientsetversioned "acme.corp/pkg/generated/clientset/versioned" + versioned "acme.corp/pkg/kcp/clients/clientset/versioned" + internalinterfaces "acme.corp/pkg/kcp/clients/informers/externalversions/internalinterfaces" + secondexamplev1 "acme.corp/pkg/kcp/clients/listers/secondexample/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" watch "k8s.io/apimachinery/pkg/watch" cache "k8s.io/client-go/tools/cache" - apissecondexamplev1 "acme.corp/pkg/apis/secondexample/v1" - clientsetversioned "acme.corp/pkg/generated/clientset/versioned" - versioned "acme.corp/pkg/kcp/clients/clientset/versioned" - internalinterfaces "acme.corp/pkg/kcp/clients/informers/externalversions/internalinterfaces" - secondexamplev1 "acme.corp/pkg/kcp/clients/listers/secondexample/v1" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypeClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/secondexample/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/secondexample/v1/testtype.go index 0b7a0f3daf9..503309e51aa 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/secondexample/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/informers/externalversions/secondexample/v1/testtype.go @@ -22,20 +22,20 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" + apissecondexamplev1 "acme.corp/pkg/apis/secondexample/v1" + clientsetversioned "acme.corp/pkg/generated/clientset/versioned" + versioned "acme.corp/pkg/kcp/clients/clientset/versioned" + internalinterfaces "acme.corp/pkg/kcp/clients/informers/externalversions/internalinterfaces" + secondexamplev1 "acme.corp/pkg/kcp/clients/listers/secondexample/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" watch "k8s.io/apimachinery/pkg/watch" cache "k8s.io/client-go/tools/cache" - apissecondexamplev1 "acme.corp/pkg/apis/secondexample/v1" - clientsetversioned "acme.corp/pkg/generated/clientset/versioned" - versioned "acme.corp/pkg/kcp/clients/clientset/versioned" - internalinterfaces "acme.corp/pkg/kcp/clients/informers/externalversions/internalinterfaces" - secondexamplev1 "acme.corp/pkg/kcp/clients/listers/secondexample/v1" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // TestTypeClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/example/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/example/v1/clustertesttype.go index 9b21e44df5c..1f62e40931b 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/example/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/example/v1/clustertesttype.go @@ -19,13 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" + examplev1 "acme.corp/pkg/apis/example/v1" - kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" "k8s.io/apimachinery/pkg/labels" "k8s.io/client-go/tools/cache" - examplev1 "acme.corp/pkg/apis/example/v1" + kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypeClusterLister helps list ClusterTestTypes across all workspaces, diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/example/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/example/v1/testtype.go index cd844756487..de7aaa728c4 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/example/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/example/v1/testtype.go @@ -19,13 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" + examplev1 "acme.corp/pkg/apis/example/v1" - kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" "k8s.io/apimachinery/pkg/labels" "k8s.io/client-go/tools/cache" - examplev1 "acme.corp/pkg/apis/example/v1" + kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // TestTypeClusterLister helps list TestTypes across all workspaces, diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/example/v1/withoutverbtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/example/v1/withoutverbtype.go index a9ff28b55eb..f5cced56a6d 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/example/v1/withoutverbtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/example/v1/withoutverbtype.go @@ -19,13 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" + examplev1 "acme.corp/pkg/apis/example/v1" - kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" "k8s.io/apimachinery/pkg/labels" "k8s.io/client-go/tools/cache" - examplev1 "acme.corp/pkg/apis/example/v1" + kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // WithoutVerbTypeClusterLister helps list WithoutVerbTypes across all workspaces, diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/example/v1alpha1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/example/v1alpha1/clustertesttype.go index 746615f2344..7b17851dcb2 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/example/v1alpha1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/example/v1alpha1/clustertesttype.go @@ -19,13 +19,13 @@ limitations under the License. package v1alpha1 import ( - "github.com/kcp-dev/logicalcluster/v3" + examplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" - kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" "k8s.io/apimachinery/pkg/labels" "k8s.io/client-go/tools/cache" - examplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" + kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypeClusterLister helps list ClusterTestTypes across all workspaces, diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/example/v1alpha1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/example/v1alpha1/testtype.go index b72d06ef056..e6b7b5bb5f0 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/example/v1alpha1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/example/v1alpha1/testtype.go @@ -19,13 +19,13 @@ limitations under the License. package v1alpha1 import ( - "github.com/kcp-dev/logicalcluster/v3" + examplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" - kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" "k8s.io/apimachinery/pkg/labels" "k8s.io/client-go/tools/cache" - examplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" + kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // TestTypeClusterLister helps list TestTypes across all workspaces, diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/example/v1beta1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/example/v1beta1/clustertesttype.go index 6035fb713a9..65f3068ae75 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/example/v1beta1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/example/v1beta1/clustertesttype.go @@ -19,13 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" + examplev1beta1 "acme.corp/pkg/apis/example/v1beta1" - kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" "k8s.io/apimachinery/pkg/labels" "k8s.io/client-go/tools/cache" - examplev1beta1 "acme.corp/pkg/apis/example/v1beta1" + kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypeClusterLister helps list ClusterTestTypes across all workspaces, diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/example/v1beta1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/example/v1beta1/testtype.go index 1d00d48e595..c32e5547e6a 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/example/v1beta1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/example/v1beta1/testtype.go @@ -19,13 +19,13 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" + examplev1beta1 "acme.corp/pkg/apis/example/v1beta1" - kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" "k8s.io/apimachinery/pkg/labels" "k8s.io/client-go/tools/cache" - examplev1beta1 "acme.corp/pkg/apis/example/v1beta1" + kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // TestTypeClusterLister helps list TestTypes across all workspaces, diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/example/v2/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/example/v2/clustertesttype.go index aaa87965b23..09c3d18df15 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/example/v2/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/example/v2/clustertesttype.go @@ -19,13 +19,13 @@ limitations under the License. package v2 import ( - "github.com/kcp-dev/logicalcluster/v3" + examplev2 "acme.corp/pkg/apis/example/v2" - kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" "k8s.io/apimachinery/pkg/labels" "k8s.io/client-go/tools/cache" - examplev2 "acme.corp/pkg/apis/example/v2" + kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypeClusterLister helps list ClusterTestTypes across all workspaces, diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/example/v2/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/example/v2/testtype.go index 83751d8fab4..069c2c140d9 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/example/v2/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/example/v2/testtype.go @@ -19,13 +19,13 @@ limitations under the License. package v2 import ( - "github.com/kcp-dev/logicalcluster/v3" + examplev2 "acme.corp/pkg/apis/example/v2" - kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" "k8s.io/apimachinery/pkg/labels" "k8s.io/client-go/tools/cache" - examplev2 "acme.corp/pkg/apis/example/v2" + kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // TestTypeClusterLister helps list TestTypes across all workspaces, diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/example3/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/example3/v1/clustertesttype.go index 6d51f65edec..c36421fce83 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/example3/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/example3/v1/clustertesttype.go @@ -19,13 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" + example3v1 "acme.corp/pkg/apis/example3/v1" - kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" "k8s.io/apimachinery/pkg/labels" "k8s.io/client-go/tools/cache" - example3v1 "acme.corp/pkg/apis/example3/v1" + kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypeClusterLister helps list ClusterTestTypes across all workspaces, diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/example3/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/example3/v1/testtype.go index a7ed247ec80..45c5945efa2 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/example3/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/example3/v1/testtype.go @@ -19,13 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" + example3v1 "acme.corp/pkg/apis/example3/v1" - kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" "k8s.io/apimachinery/pkg/labels" "k8s.io/client-go/tools/cache" - example3v1 "acme.corp/pkg/apis/example3/v1" + kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // TestTypeClusterLister helps list TestTypes across all workspaces, diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/exampledashed/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/exampledashed/v1/clustertesttype.go index 9c33be44b31..10ca8dfd878 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/exampledashed/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/exampledashed/v1/clustertesttype.go @@ -19,13 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" + exampledashedv1 "acme.corp/pkg/apis/exampledashed/v1" - kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" "k8s.io/apimachinery/pkg/labels" "k8s.io/client-go/tools/cache" - exampledashedv1 "acme.corp/pkg/apis/exampledashed/v1" + kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypeClusterLister helps list ClusterTestTypes across all workspaces, diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/exampledashed/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/exampledashed/v1/testtype.go index fa30d6058e6..da17fabc31a 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/exampledashed/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/exampledashed/v1/testtype.go @@ -19,13 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" + exampledashedv1 "acme.corp/pkg/apis/exampledashed/v1" - kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" "k8s.io/apimachinery/pkg/labels" "k8s.io/client-go/tools/cache" - exampledashedv1 "acme.corp/pkg/apis/exampledashed/v1" + kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // TestTypeClusterLister helps list TestTypes across all workspaces, diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/existinginterfaces/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/existinginterfaces/v1/clustertesttype.go index 5b4c54303f1..4d96f163037 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/existinginterfaces/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/existinginterfaces/v1/clustertesttype.go @@ -19,13 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" + existinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" - kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" "k8s.io/apimachinery/pkg/labels" "k8s.io/client-go/tools/cache" - existinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" + kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypeClusterLister helps list ClusterTestTypes across all workspaces, diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/existinginterfaces/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/existinginterfaces/v1/testtype.go index 517637ec3c0..30c95e27c5f 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/existinginterfaces/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/existinginterfaces/v1/testtype.go @@ -19,13 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" + existinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" - kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" "k8s.io/apimachinery/pkg/labels" "k8s.io/client-go/tools/cache" - existinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" + kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // TestTypeClusterLister helps list TestTypes across all workspaces, diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/secondexample/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/secondexample/v1/clustertesttype.go index f97e118a154..d28191bc99d 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/secondexample/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/secondexample/v1/clustertesttype.go @@ -19,13 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" + secondexamplev1 "acme.corp/pkg/apis/secondexample/v1" - kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" "k8s.io/apimachinery/pkg/labels" "k8s.io/client-go/tools/cache" - secondexamplev1 "acme.corp/pkg/apis/secondexample/v1" + kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypeClusterLister helps list ClusterTestTypes across all workspaces, diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/secondexample/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/secondexample/v1/testtype.go index 106772d5f4e..697b34d1974 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/secondexample/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcp/clients/listers/secondexample/v1/testtype.go @@ -19,13 +19,13 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" + secondexamplev1 "acme.corp/pkg/apis/secondexample/v1" - kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" "k8s.io/apimachinery/pkg/labels" "k8s.io/client-go/tools/cache" - secondexamplev1 "acme.corp/pkg/apis/secondexample/v1" + kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // TestTypeClusterLister helps list TestTypes across all workspaces, diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/clientset.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/clientset.go index 0ff22d75747..99943d9d1f3 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/clientset.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/clientset.go @@ -22,13 +22,6 @@ import ( fmt "fmt" http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - - discovery "k8s.io/client-go/discovery" - rest "k8s.io/client-go/rest" - flowcontrol "k8s.io/client-go/util/flowcontrol" - client "acme.corp/pkg/generated/clientset/versioned" examplev1 "acme.corp/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1" examplev1alpha1 "acme.corp/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1alpha1" @@ -38,6 +31,13 @@ import ( exampledashedv1 "acme.corp/pkg/kcpexisting/clients/clientset/versioned/typed/exampledashed/v1" existinginterfacesv1 "acme.corp/pkg/kcpexisting/clients/clientset/versioned/typed/existinginterfaces/v1" secondexamplev1 "acme.corp/pkg/kcpexisting/clients/clientset/versioned/typed/secondexample/v1" + + discovery "k8s.io/client-go/discovery" + rest "k8s.io/client-go/rest" + flowcontrol "k8s.io/client-go/util/flowcontrol" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) type ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/fake/clientset.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/fake/clientset.go index a6e7c237425..531cdcc3663 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/fake/clientset.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/fake/clientset.go @@ -19,13 +19,6 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - - kcpfakediscovery "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/discovery/fake" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" - "k8s.io/apimachinery/pkg/runtime" - "k8s.io/client-go/discovery" - applyconfigurations "acme.corp/pkg/generated/applyconfigurations" clientset "acme.corp/pkg/generated/clientset/versioned" examplev1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1" @@ -54,6 +47,13 @@ import ( kcpfakeexistinginterfacesv1 "acme.corp/pkg/kcpexisting/clients/clientset/versioned/typed/existinginterfaces/v1/fake" kcpsecondexamplev1 "acme.corp/pkg/kcpexisting/clients/clientset/versioned/typed/secondexample/v1" kcpfakesecondexamplev1 "acme.corp/pkg/kcpexisting/clients/clientset/versioned/typed/secondexample/v1/fake" + + "k8s.io/apimachinery/pkg/runtime" + "k8s.io/client-go/discovery" + + kcpfakediscovery "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/discovery/fake" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // NewSimpleClientset returns a clientset that will respond with the provided objects. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/fake/register.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/fake/register.go index c3dc5fe765d..7d674fea452 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/fake/register.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/fake/register.go @@ -19,12 +19,6 @@ limitations under the License. package fake import ( - v1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - schema "k8s.io/apimachinery/pkg/runtime/schema" - serializer "k8s.io/apimachinery/pkg/runtime/serializer" - utilruntime "k8s.io/apimachinery/pkg/util/runtime" - examplev1 "acme.corp/pkg/apis/example/v1" examplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" examplev1beta1 "acme.corp/pkg/apis/example/v1beta1" @@ -33,6 +27,12 @@ import ( exampledashedv1 "acme.corp/pkg/apis/exampledashed/v1" existinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" secondexamplev1 "acme.corp/pkg/apis/secondexample/v1" + + v1 "k8s.io/apimachinery/pkg/apis/meta/v1" + runtime "k8s.io/apimachinery/pkg/runtime" + schema "k8s.io/apimachinery/pkg/runtime/schema" + serializer "k8s.io/apimachinery/pkg/runtime/serializer" + utilruntime "k8s.io/apimachinery/pkg/util/runtime" ) var scheme = runtime.NewScheme() diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/scheme/register.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/scheme/register.go index bd637672b24..203e3b2d606 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/scheme/register.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/scheme/register.go @@ -19,12 +19,6 @@ limitations under the License. package scheme import ( - v1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - schema "k8s.io/apimachinery/pkg/runtime/schema" - serializer "k8s.io/apimachinery/pkg/runtime/serializer" - utilruntime "k8s.io/apimachinery/pkg/util/runtime" - examplev1 "acme.corp/pkg/apis/example/v1" examplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" examplev1beta1 "acme.corp/pkg/apis/example/v1beta1" @@ -33,6 +27,12 @@ import ( exampledashedv1 "acme.corp/pkg/apis/exampledashed/v1" existinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" secondexamplev1 "acme.corp/pkg/apis/secondexample/v1" + + v1 "k8s.io/apimachinery/pkg/apis/meta/v1" + runtime "k8s.io/apimachinery/pkg/runtime" + schema "k8s.io/apimachinery/pkg/runtime/schema" + serializer "k8s.io/apimachinery/pkg/runtime/serializer" + utilruntime "k8s.io/apimachinery/pkg/util/runtime" ) var Scheme = runtime.NewScheme() diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1/clustertesttype.go index b042a2fca72..47ed6e3e686 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1/clustertesttype.go @@ -21,14 +21,14 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" + apisexamplev1 "acme.corp/pkg/apis/example/v1" + examplev1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" - apisexamplev1 "acme.corp/pkg/apis/example/v1" - examplev1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypesClusterGetter has a method to return a ClusterTestTypeClusterInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1/example_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1/example_client.go index d788ec76e01..7fed4fa0531 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1/example_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1/example_client.go @@ -21,14 +21,14 @@ package v1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - - rest "k8s.io/client-go/rest" - apisexamplev1 "acme.corp/pkg/apis/example/v1" examplev1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1" scheme "acme.corp/pkg/kcpexisting/clients/clientset/versioned/scheme" + + rest "k8s.io/client-go/rest" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) type ExampleV1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1/fake/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1/fake/clustertesttype.go index 152e40e03df..78ae615a828 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1/fake/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1/fake/clustertesttype.go @@ -19,15 +19,14 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - - kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" - examplev1 "acme.corp/pkg/apis/example/v1" v1 "acme.corp/pkg/generated/applyconfigurations/example/v1" typedexamplev1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1" typedkcpexamplev1 "acme.corp/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1" + + kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // clusterTestTypeClusterClient implements ClusterTestTypeClusterInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1/fake/example_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1/fake/example_client.go index 064b1f1bb46..2ebcb2a8b28 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1/fake/example_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1/fake/example_client.go @@ -19,13 +19,13 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" + examplev1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1" + kcpexamplev1 "acme.corp/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" rest "k8s.io/client-go/rest" - examplev1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1" - kcpexamplev1 "acme.corp/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpexamplev1.ExampleV1ClusterInterface = (*ExampleV1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1/fake/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1/fake/testtype.go index de50558481f..6e61e46ec5e 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1/fake/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1/fake/testtype.go @@ -21,16 +21,16 @@ package fake import ( context "context" - "github.com/kcp-dev/logicalcluster/v3" - - kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - examplev1 "acme.corp/pkg/apis/example/v1" v1 "acme.corp/pkg/generated/applyconfigurations/example/v1" typedexamplev1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1" typedkcpexamplev1 "acme.corp/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1" + + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + + kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // testTypeClusterClient implements TestTypeClusterInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1/fake/withoutverbtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1/fake/withoutverbtype.go index 3bb0c392cad..dbba160af8a 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1/fake/withoutverbtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1/fake/withoutverbtype.go @@ -19,14 +19,13 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - - kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" - examplev1 "acme.corp/pkg/apis/example/v1" typedexamplev1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1" typedkcpexamplev1 "acme.corp/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1" + + kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // withoutVerbTypeClusterClient implements WithoutVerbTypeClusterInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1/testtype.go index edd177a1ca6..42521942e1d 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1/testtype.go @@ -21,14 +21,14 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" + examplev1 "acme.corp/pkg/apis/example/v1" + typedexamplev1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" - examplev1 "acme.corp/pkg/apis/example/v1" - typedexamplev1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // TestTypesClusterGetter has a method to return a TestTypeClusterInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1/withoutverbtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1/withoutverbtype.go index 24c84c0187e..e17b7629c48 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1/withoutverbtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1/withoutverbtype.go @@ -19,10 +19,10 @@ limitations under the License. package v1 import ( + examplev1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" "github.com/kcp-dev/logicalcluster/v3" - - examplev1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1" ) // WithoutVerbTypesClusterGetter has a method to return a WithoutVerbTypeClusterInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1alpha1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1alpha1/clustertesttype.go index 9eb94dd6e1c..b426fa385c8 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1alpha1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1alpha1/clustertesttype.go @@ -21,14 +21,14 @@ package v1alpha1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" + apisexamplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" + examplev1alpha1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" - apisexamplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" - examplev1alpha1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1alpha1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypesClusterGetter has a method to return a ClusterTestTypeClusterInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1alpha1/example_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1alpha1/example_client.go index 2531a32561f..d903e1e46b0 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1alpha1/example_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1alpha1/example_client.go @@ -21,14 +21,14 @@ package v1alpha1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - - rest "k8s.io/client-go/rest" - apisexamplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" examplev1alpha1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1alpha1" scheme "acme.corp/pkg/kcpexisting/clients/clientset/versioned/scheme" + + rest "k8s.io/client-go/rest" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) type ExampleV1alpha1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1alpha1/fake/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1alpha1/fake/clustertesttype.go index 9c329613d08..7f5e7a1f2a4 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1alpha1/fake/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1alpha1/fake/clustertesttype.go @@ -19,15 +19,14 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - - kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" - examplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" v1alpha1 "acme.corp/pkg/generated/applyconfigurations/example/v1alpha1" typedexamplev1alpha1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1alpha1" typedkcpexamplev1alpha1 "acme.corp/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1alpha1" + + kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // clusterTestTypeClusterClient implements ClusterTestTypeClusterInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1alpha1/fake/example_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1alpha1/fake/example_client.go index eab9b0befa6..816d31263c8 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1alpha1/fake/example_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1alpha1/fake/example_client.go @@ -19,13 +19,13 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" + examplev1alpha1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1alpha1" + kcpexamplev1alpha1 "acme.corp/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1alpha1" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" rest "k8s.io/client-go/rest" - examplev1alpha1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1alpha1" - kcpexamplev1alpha1 "acme.corp/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1alpha1" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpexamplev1alpha1.ExampleV1alpha1ClusterInterface = (*ExampleV1alpha1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1alpha1/fake/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1alpha1/fake/testtype.go index 6aa3d1350e5..aa710a37dae 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1alpha1/fake/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1alpha1/fake/testtype.go @@ -19,15 +19,14 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - - kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" - examplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" v1alpha1 "acme.corp/pkg/generated/applyconfigurations/example/v1alpha1" typedexamplev1alpha1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1alpha1" typedkcpexamplev1alpha1 "acme.corp/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1alpha1" + + kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // testTypeClusterClient implements TestTypeClusterInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1alpha1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1alpha1/testtype.go index d57b0023853..ca4bc2048a0 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1alpha1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1alpha1/testtype.go @@ -21,14 +21,14 @@ package v1alpha1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" + examplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" + typedexamplev1alpha1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" - examplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" - typedexamplev1alpha1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1alpha1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // TestTypesClusterGetter has a method to return a TestTypeClusterInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1beta1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1beta1/clustertesttype.go index a28bd75de43..6dd9f85bbb1 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1beta1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1beta1/clustertesttype.go @@ -21,14 +21,14 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" + apisexamplev1beta1 "acme.corp/pkg/apis/example/v1beta1" + examplev1beta1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" - apisexamplev1beta1 "acme.corp/pkg/apis/example/v1beta1" - examplev1beta1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1beta1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypesClusterGetter has a method to return a ClusterTestTypeClusterInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1beta1/example_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1beta1/example_client.go index 7c108079491..5b2fa47874f 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1beta1/example_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1beta1/example_client.go @@ -21,14 +21,14 @@ package v1beta1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - - rest "k8s.io/client-go/rest" - apisexamplev1beta1 "acme.corp/pkg/apis/example/v1beta1" examplev1beta1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1beta1" scheme "acme.corp/pkg/kcpexisting/clients/clientset/versioned/scheme" + + rest "k8s.io/client-go/rest" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) type ExampleV1beta1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1beta1/fake/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1beta1/fake/clustertesttype.go index d200c66d5d3..31eec3f7dc7 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1beta1/fake/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1beta1/fake/clustertesttype.go @@ -19,15 +19,14 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - - kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" - examplev1beta1 "acme.corp/pkg/apis/example/v1beta1" v1beta1 "acme.corp/pkg/generated/applyconfigurations/example/v1beta1" typedexamplev1beta1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1beta1" typedkcpexamplev1beta1 "acme.corp/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1beta1" + + kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // clusterTestTypeClusterClient implements ClusterTestTypeClusterInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1beta1/fake/example_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1beta1/fake/example_client.go index 8617f4a8eb9..de032ad31e2 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1beta1/fake/example_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1beta1/fake/example_client.go @@ -19,13 +19,13 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" + examplev1beta1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1beta1" + kcpexamplev1beta1 "acme.corp/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1beta1" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" rest "k8s.io/client-go/rest" - examplev1beta1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1beta1" - kcpexamplev1beta1 "acme.corp/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1beta1" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpexamplev1beta1.ExampleV1beta1ClusterInterface = (*ExampleV1beta1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1beta1/fake/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1beta1/fake/testtype.go index 0cf43b95073..c19e272df6d 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1beta1/fake/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1beta1/fake/testtype.go @@ -19,15 +19,14 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - - kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" - examplev1beta1 "acme.corp/pkg/apis/example/v1beta1" v1beta1 "acme.corp/pkg/generated/applyconfigurations/example/v1beta1" typedexamplev1beta1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1beta1" typedkcpexamplev1beta1 "acme.corp/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1beta1" + + kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // testTypeClusterClient implements TestTypeClusterInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1beta1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1beta1/testtype.go index e09ff9e1e0c..e0be632350f 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1beta1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v1beta1/testtype.go @@ -21,14 +21,14 @@ package v1beta1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" + examplev1beta1 "acme.corp/pkg/apis/example/v1beta1" + typedexamplev1beta1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1beta1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" - examplev1beta1 "acme.corp/pkg/apis/example/v1beta1" - typedexamplev1beta1 "acme.corp/pkg/generated/clientset/versioned/typed/example/v1beta1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // TestTypesClusterGetter has a method to return a TestTypeClusterInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v2/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v2/clustertesttype.go index d989e5334ac..2960a392503 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v2/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v2/clustertesttype.go @@ -21,14 +21,14 @@ package v2 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" + apisexamplev2 "acme.corp/pkg/apis/example/v2" + examplev2 "acme.corp/pkg/generated/clientset/versioned/typed/example/v2" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" - apisexamplev2 "acme.corp/pkg/apis/example/v2" - examplev2 "acme.corp/pkg/generated/clientset/versioned/typed/example/v2" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypesClusterGetter has a method to return a ClusterTestTypeClusterInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v2/example_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v2/example_client.go index 3941e4486e4..cbbc8f9f61c 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v2/example_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v2/example_client.go @@ -21,14 +21,14 @@ package v2 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - - rest "k8s.io/client-go/rest" - apisexamplev2 "acme.corp/pkg/apis/example/v2" examplev2 "acme.corp/pkg/generated/clientset/versioned/typed/example/v2" scheme "acme.corp/pkg/kcpexisting/clients/clientset/versioned/scheme" + + rest "k8s.io/client-go/rest" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) type ExampleV2ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v2/fake/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v2/fake/clustertesttype.go index 144507f6ce4..f61577af0ad 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v2/fake/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v2/fake/clustertesttype.go @@ -19,15 +19,14 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - - kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" - examplev2 "acme.corp/pkg/apis/example/v2" v2 "acme.corp/pkg/generated/applyconfigurations/example/v2" typedexamplev2 "acme.corp/pkg/generated/clientset/versioned/typed/example/v2" typedkcpexamplev2 "acme.corp/pkg/kcpexisting/clients/clientset/versioned/typed/example/v2" + + kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // clusterTestTypeClusterClient implements ClusterTestTypeClusterInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v2/fake/example_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v2/fake/example_client.go index 8a7a17a06b5..b9faa452b96 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v2/fake/example_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v2/fake/example_client.go @@ -19,13 +19,13 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" + examplev2 "acme.corp/pkg/generated/clientset/versioned/typed/example/v2" + kcpexamplev2 "acme.corp/pkg/kcpexisting/clients/clientset/versioned/typed/example/v2" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" rest "k8s.io/client-go/rest" - examplev2 "acme.corp/pkg/generated/clientset/versioned/typed/example/v2" - kcpexamplev2 "acme.corp/pkg/kcpexisting/clients/clientset/versioned/typed/example/v2" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpexamplev2.ExampleV2ClusterInterface = (*ExampleV2ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v2/fake/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v2/fake/testtype.go index 40346e4cab9..3ae4710184e 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v2/fake/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v2/fake/testtype.go @@ -19,15 +19,14 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - - kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" - examplev2 "acme.corp/pkg/apis/example/v2" v2 "acme.corp/pkg/generated/applyconfigurations/example/v2" typedexamplev2 "acme.corp/pkg/generated/clientset/versioned/typed/example/v2" typedkcpexamplev2 "acme.corp/pkg/kcpexisting/clients/clientset/versioned/typed/example/v2" + + kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // testTypeClusterClient implements TestTypeClusterInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v2/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v2/testtype.go index c6af25a9638..2efdd705875 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v2/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example/v2/testtype.go @@ -21,14 +21,14 @@ package v2 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" + examplev2 "acme.corp/pkg/apis/example/v2" + typedexamplev2 "acme.corp/pkg/generated/clientset/versioned/typed/example/v2" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" - examplev2 "acme.corp/pkg/apis/example/v2" - typedexamplev2 "acme.corp/pkg/generated/clientset/versioned/typed/example/v2" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // TestTypesClusterGetter has a method to return a TestTypeClusterInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example3/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example3/v1/clustertesttype.go index 8bc1aca5a9c..b03688276f7 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example3/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example3/v1/clustertesttype.go @@ -21,14 +21,14 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" + apisexample3v1 "acme.corp/pkg/apis/example3/v1" + example3v1 "acme.corp/pkg/generated/clientset/versioned/typed/example3/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" - apisexample3v1 "acme.corp/pkg/apis/example3/v1" - example3v1 "acme.corp/pkg/generated/clientset/versioned/typed/example3/v1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypesClusterGetter has a method to return a ClusterTestTypeClusterInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example3/v1/example3_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example3/v1/example3_client.go index 6d271a4c4e2..7553d4bd76c 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example3/v1/example3_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example3/v1/example3_client.go @@ -21,14 +21,14 @@ package v1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - - rest "k8s.io/client-go/rest" - apisexample3v1 "acme.corp/pkg/apis/example3/v1" example3v1 "acme.corp/pkg/generated/clientset/versioned/typed/example3/v1" scheme "acme.corp/pkg/kcpexisting/clients/clientset/versioned/scheme" + + rest "k8s.io/client-go/rest" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) type Example3V1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example3/v1/fake/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example3/v1/fake/clustertesttype.go index efd6be85f64..0aa111291f9 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example3/v1/fake/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example3/v1/fake/clustertesttype.go @@ -19,15 +19,14 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - - kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" - example3v1 "acme.corp/pkg/apis/example3/v1" v1 "acme.corp/pkg/generated/applyconfigurations/example3/v1" typedexample3v1 "acme.corp/pkg/generated/clientset/versioned/typed/example3/v1" typedkcpexample3v1 "acme.corp/pkg/kcpexisting/clients/clientset/versioned/typed/example3/v1" + + kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // clusterTestTypeClusterClient implements ClusterTestTypeClusterInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example3/v1/fake/example3_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example3/v1/fake/example3_client.go index 8fc8d96e028..4ae4c01213b 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example3/v1/fake/example3_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example3/v1/fake/example3_client.go @@ -19,13 +19,13 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" + example3v1 "acme.corp/pkg/generated/clientset/versioned/typed/example3/v1" + kcpexample3v1 "acme.corp/pkg/kcpexisting/clients/clientset/versioned/typed/example3/v1" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" rest "k8s.io/client-go/rest" - example3v1 "acme.corp/pkg/generated/clientset/versioned/typed/example3/v1" - kcpexample3v1 "acme.corp/pkg/kcpexisting/clients/clientset/versioned/typed/example3/v1" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpexample3v1.Example3V1ClusterInterface = (*Example3V1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example3/v1/fake/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example3/v1/fake/testtype.go index ac70947805f..226060dc654 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example3/v1/fake/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example3/v1/fake/testtype.go @@ -21,17 +21,17 @@ package fake import ( context "context" - "github.com/kcp-dev/logicalcluster/v3" - - kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - examplev1 "acme.corp/pkg/apis/example/v1" example3v1 "acme.corp/pkg/apis/example3/v1" v1 "acme.corp/pkg/generated/applyconfigurations/example3/v1" typedexample3v1 "acme.corp/pkg/generated/clientset/versioned/typed/example3/v1" typedkcpexample3v1 "acme.corp/pkg/kcpexisting/clients/clientset/versioned/typed/example3/v1" + + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + + kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // testTypeClusterClient implements TestTypeClusterInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example3/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example3/v1/testtype.go index 68c63b02a6e..6a28c0f86f5 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example3/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/example3/v1/testtype.go @@ -21,14 +21,14 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" + example3v1 "acme.corp/pkg/apis/example3/v1" + typedexample3v1 "acme.corp/pkg/generated/clientset/versioned/typed/example3/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" - example3v1 "acme.corp/pkg/apis/example3/v1" - typedexample3v1 "acme.corp/pkg/generated/clientset/versioned/typed/example3/v1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // TestTypesClusterGetter has a method to return a TestTypeClusterInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/exampledashed/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/exampledashed/v1/clustertesttype.go index c3a731a3ce2..f3c907ebab2 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/exampledashed/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/exampledashed/v1/clustertesttype.go @@ -21,14 +21,14 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" + apisexampledashedv1 "acme.corp/pkg/apis/exampledashed/v1" + exampledashedv1 "acme.corp/pkg/generated/clientset/versioned/typed/exampledashed/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" - apisexampledashedv1 "acme.corp/pkg/apis/exampledashed/v1" - exampledashedv1 "acme.corp/pkg/generated/clientset/versioned/typed/exampledashed/v1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypesClusterGetter has a method to return a ClusterTestTypeClusterInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/exampledashed/v1/exampledashed_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/exampledashed/v1/exampledashed_client.go index 2f122b26100..b37b0b10ecf 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/exampledashed/v1/exampledashed_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/exampledashed/v1/exampledashed_client.go @@ -21,14 +21,14 @@ package v1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - - rest "k8s.io/client-go/rest" - apisexampledashedv1 "acme.corp/pkg/apis/exampledashed/v1" exampledashedv1 "acme.corp/pkg/generated/clientset/versioned/typed/exampledashed/v1" scheme "acme.corp/pkg/kcpexisting/clients/clientset/versioned/scheme" + + rest "k8s.io/client-go/rest" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) type ExampleDashedV1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/exampledashed/v1/fake/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/exampledashed/v1/fake/clustertesttype.go index a90b149f03c..922d3db635b 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/exampledashed/v1/fake/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/exampledashed/v1/fake/clustertesttype.go @@ -19,15 +19,14 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - - kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" - exampledashedv1 "acme.corp/pkg/apis/exampledashed/v1" v1 "acme.corp/pkg/generated/applyconfigurations/exampledashed/v1" typedexampledashedv1 "acme.corp/pkg/generated/clientset/versioned/typed/exampledashed/v1" typedkcpexampledashedv1 "acme.corp/pkg/kcpexisting/clients/clientset/versioned/typed/exampledashed/v1" + + kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // clusterTestTypeClusterClient implements ClusterTestTypeClusterInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/exampledashed/v1/fake/exampledashed_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/exampledashed/v1/fake/exampledashed_client.go index 8d4f2387a7c..07e1775cc82 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/exampledashed/v1/fake/exampledashed_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/exampledashed/v1/fake/exampledashed_client.go @@ -19,13 +19,13 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" + exampledashedv1 "acme.corp/pkg/generated/clientset/versioned/typed/exampledashed/v1" + kcpexampledashedv1 "acme.corp/pkg/kcpexisting/clients/clientset/versioned/typed/exampledashed/v1" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" rest "k8s.io/client-go/rest" - exampledashedv1 "acme.corp/pkg/generated/clientset/versioned/typed/exampledashed/v1" - kcpexampledashedv1 "acme.corp/pkg/kcpexisting/clients/clientset/versioned/typed/exampledashed/v1" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpexampledashedv1.ExampleDashedV1ClusterInterface = (*ExampleDashedV1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/exampledashed/v1/fake/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/exampledashed/v1/fake/testtype.go index 62a58b4984e..d116eae280a 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/exampledashed/v1/fake/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/exampledashed/v1/fake/testtype.go @@ -21,17 +21,17 @@ package fake import ( context "context" - "github.com/kcp-dev/logicalcluster/v3" - - kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - examplev1 "acme.corp/pkg/apis/example/v1" exampledashedv1 "acme.corp/pkg/apis/exampledashed/v1" v1 "acme.corp/pkg/generated/applyconfigurations/exampledashed/v1" typedexampledashedv1 "acme.corp/pkg/generated/clientset/versioned/typed/exampledashed/v1" typedkcpexampledashedv1 "acme.corp/pkg/kcpexisting/clients/clientset/versioned/typed/exampledashed/v1" + + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + + kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // testTypeClusterClient implements TestTypeClusterInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/exampledashed/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/exampledashed/v1/testtype.go index b44856e3bec..286c876239b 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/exampledashed/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/exampledashed/v1/testtype.go @@ -21,14 +21,14 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" + exampledashedv1 "acme.corp/pkg/apis/exampledashed/v1" + typedexampledashedv1 "acme.corp/pkg/generated/clientset/versioned/typed/exampledashed/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" - exampledashedv1 "acme.corp/pkg/apis/exampledashed/v1" - typedexampledashedv1 "acme.corp/pkg/generated/clientset/versioned/typed/exampledashed/v1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // TestTypesClusterGetter has a method to return a TestTypeClusterInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/existinginterfaces/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/existinginterfaces/v1/clustertesttype.go index 244e5f76d39..d829a5546e1 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/existinginterfaces/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/existinginterfaces/v1/clustertesttype.go @@ -21,14 +21,14 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" + apisexistinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" + existinginterfacesv1 "acme.corp/pkg/generated/clientset/versioned/typed/existinginterfaces/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" - apisexistinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" - existinginterfacesv1 "acme.corp/pkg/generated/clientset/versioned/typed/existinginterfaces/v1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypesClusterGetter has a method to return a ClusterTestTypeClusterInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/existinginterfaces/v1/existinginterfaces_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/existinginterfaces/v1/existinginterfaces_client.go index 0e598bb4f7a..817a375d885 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/existinginterfaces/v1/existinginterfaces_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/existinginterfaces/v1/existinginterfaces_client.go @@ -21,14 +21,14 @@ package v1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - - rest "k8s.io/client-go/rest" - apisexistinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" existinginterfacesv1 "acme.corp/pkg/generated/clientset/versioned/typed/existinginterfaces/v1" scheme "acme.corp/pkg/kcpexisting/clients/clientset/versioned/scheme" + + rest "k8s.io/client-go/rest" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) type ExistinginterfacesV1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/existinginterfaces/v1/fake/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/existinginterfaces/v1/fake/clustertesttype.go index 04757db3a18..8932e726235 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/existinginterfaces/v1/fake/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/existinginterfaces/v1/fake/clustertesttype.go @@ -19,15 +19,14 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - - kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" - existinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" v1 "acme.corp/pkg/generated/applyconfigurations/existinginterfaces/v1" typedexistinginterfacesv1 "acme.corp/pkg/generated/clientset/versioned/typed/existinginterfaces/v1" typedkcpexistinginterfacesv1 "acme.corp/pkg/kcpexisting/clients/clientset/versioned/typed/existinginterfaces/v1" + + kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // clusterTestTypeClusterClient implements ClusterTestTypeClusterInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/existinginterfaces/v1/fake/existinginterfaces_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/existinginterfaces/v1/fake/existinginterfaces_client.go index 664873184d4..f6df5102ce3 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/existinginterfaces/v1/fake/existinginterfaces_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/existinginterfaces/v1/fake/existinginterfaces_client.go @@ -19,13 +19,13 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" + existinginterfacesv1 "acme.corp/pkg/generated/clientset/versioned/typed/existinginterfaces/v1" + kcpexistinginterfacesv1 "acme.corp/pkg/kcpexisting/clients/clientset/versioned/typed/existinginterfaces/v1" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" rest "k8s.io/client-go/rest" - existinginterfacesv1 "acme.corp/pkg/generated/clientset/versioned/typed/existinginterfaces/v1" - kcpexistinginterfacesv1 "acme.corp/pkg/kcpexisting/clients/clientset/versioned/typed/existinginterfaces/v1" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpexistinginterfacesv1.ExistinginterfacesV1ClusterInterface = (*ExistinginterfacesV1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/existinginterfaces/v1/fake/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/existinginterfaces/v1/fake/testtype.go index 849d0959366..541ba68994b 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/existinginterfaces/v1/fake/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/existinginterfaces/v1/fake/testtype.go @@ -19,15 +19,14 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - - kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" - existinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" v1 "acme.corp/pkg/generated/applyconfigurations/existinginterfaces/v1" typedexistinginterfacesv1 "acme.corp/pkg/generated/clientset/versioned/typed/existinginterfaces/v1" typedkcpexistinginterfacesv1 "acme.corp/pkg/kcpexisting/clients/clientset/versioned/typed/existinginterfaces/v1" + + kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // testTypeClusterClient implements TestTypeClusterInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/existinginterfaces/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/existinginterfaces/v1/testtype.go index 783b6b16aa6..8adce2827d4 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/existinginterfaces/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/existinginterfaces/v1/testtype.go @@ -21,14 +21,14 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" + existinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" + typedexistinginterfacesv1 "acme.corp/pkg/generated/clientset/versioned/typed/existinginterfaces/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" - existinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" - typedexistinginterfacesv1 "acme.corp/pkg/generated/clientset/versioned/typed/existinginterfaces/v1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // TestTypesClusterGetter has a method to return a TestTypeClusterInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/secondexample/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/secondexample/v1/clustertesttype.go index 1f646905cf0..861ce3c8ce3 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/secondexample/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/secondexample/v1/clustertesttype.go @@ -21,14 +21,14 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" + apissecondexamplev1 "acme.corp/pkg/apis/secondexample/v1" + secondexamplev1 "acme.corp/pkg/generated/clientset/versioned/typed/secondexample/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" - apissecondexamplev1 "acme.corp/pkg/apis/secondexample/v1" - secondexamplev1 "acme.corp/pkg/generated/clientset/versioned/typed/secondexample/v1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypesClusterGetter has a method to return a ClusterTestTypeClusterInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/secondexample/v1/fake/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/secondexample/v1/fake/clustertesttype.go index a49a9548fcd..0648dfef31b 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/secondexample/v1/fake/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/secondexample/v1/fake/clustertesttype.go @@ -19,15 +19,14 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - - kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" - secondexamplev1 "acme.corp/pkg/apis/secondexample/v1" v1 "acme.corp/pkg/generated/applyconfigurations/secondexample/v1" typedsecondexamplev1 "acme.corp/pkg/generated/clientset/versioned/typed/secondexample/v1" typedkcpsecondexamplev1 "acme.corp/pkg/kcpexisting/clients/clientset/versioned/typed/secondexample/v1" + + kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // clusterTestTypeClusterClient implements ClusterTestTypeClusterInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/secondexample/v1/fake/secondexample_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/secondexample/v1/fake/secondexample_client.go index 459b468689c..625e20a68d2 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/secondexample/v1/fake/secondexample_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/secondexample/v1/fake/secondexample_client.go @@ -19,13 +19,13 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" + secondexamplev1 "acme.corp/pkg/generated/clientset/versioned/typed/secondexample/v1" + kcpsecondexamplev1 "acme.corp/pkg/kcpexisting/clients/clientset/versioned/typed/secondexample/v1" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" rest "k8s.io/client-go/rest" - secondexamplev1 "acme.corp/pkg/generated/clientset/versioned/typed/secondexample/v1" - kcpsecondexamplev1 "acme.corp/pkg/kcpexisting/clients/clientset/versioned/typed/secondexample/v1" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) var _ kcpsecondexamplev1.SecondexampleV1ClusterInterface = (*SecondexampleV1ClusterClient)(nil) diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/secondexample/v1/fake/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/secondexample/v1/fake/testtype.go index 97616242aa1..71632f737ef 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/secondexample/v1/fake/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/secondexample/v1/fake/testtype.go @@ -19,15 +19,14 @@ limitations under the License. package fake import ( - "github.com/kcp-dev/logicalcluster/v3" - - kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" - kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" - secondexamplev1 "acme.corp/pkg/apis/secondexample/v1" v1 "acme.corp/pkg/generated/applyconfigurations/secondexample/v1" typedsecondexamplev1 "acme.corp/pkg/generated/clientset/versioned/typed/secondexample/v1" typedkcpsecondexamplev1 "acme.corp/pkg/kcpexisting/clients/clientset/versioned/typed/secondexample/v1" + + kcpgentype "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/gentype" + kcptesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // testTypeClusterClient implements TestTypeClusterInterface diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/secondexample/v1/secondexample_client.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/secondexample/v1/secondexample_client.go index 58dcc70acbf..b82303464c2 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/secondexample/v1/secondexample_client.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/secondexample/v1/secondexample_client.go @@ -21,14 +21,14 @@ package v1 import ( http "net/http" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" - - rest "k8s.io/client-go/rest" - apissecondexamplev1 "acme.corp/pkg/apis/secondexample/v1" secondexamplev1 "acme.corp/pkg/generated/clientset/versioned/typed/secondexample/v1" scheme "acme.corp/pkg/kcpexisting/clients/clientset/versioned/scheme" + + rest "k8s.io/client-go/rest" + + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) type SecondexampleV1ClusterInterface interface { diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/secondexample/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/secondexample/v1/testtype.go index f2bcb27b2e0..beb003f72a8 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/secondexample/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/clientset/versioned/typed/secondexample/v1/testtype.go @@ -21,14 +21,14 @@ package v1 import ( context "context" - kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" - "github.com/kcp-dev/logicalcluster/v3" + secondexamplev1 "acme.corp/pkg/apis/secondexample/v1" + typedsecondexamplev1 "acme.corp/pkg/generated/clientset/versioned/typed/secondexample/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" watch "k8s.io/apimachinery/pkg/watch" - secondexamplev1 "acme.corp/pkg/apis/secondexample/v1" - typedsecondexamplev1 "acme.corp/pkg/generated/clientset/versioned/typed/secondexample/v1" + kcpclient "github.com/kcp-dev/apimachinery/v2/pkg/client" + "github.com/kcp-dev/logicalcluster/v3" ) // TestTypesClusterGetter has a method to return a TestTypeClusterInterface. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/example/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/example/v1/clustertesttype.go index bc6a570ea4e..103d6665c85 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/example/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/example/v1/clustertesttype.go @@ -22,21 +22,21 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - watch "k8s.io/apimachinery/pkg/watch" - cache "k8s.io/client-go/tools/cache" - apisexamplev1 "acme.corp/pkg/apis/example/v1" examplev1 "acme.corp/pkg/generated/informers/externalversions/example/v1" generatedlistersexamplev1 "acme.corp/pkg/generated/listers/example/v1" versioned "acme.corp/pkg/kcpexisting/clients/clientset/versioned" internalinterfaces "acme.corp/pkg/kcpexisting/clients/informers/externalversions/internalinterfaces" listersexamplev1 "acme.corp/pkg/kcpexisting/clients/listers/example/v1" + + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + runtime "k8s.io/apimachinery/pkg/runtime" + watch "k8s.io/apimachinery/pkg/watch" + cache "k8s.io/client-go/tools/cache" + + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypeClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/example/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/example/v1/testtype.go index c1446bb517d..db3da7c3c11 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/example/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/example/v1/testtype.go @@ -22,21 +22,21 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - watch "k8s.io/apimachinery/pkg/watch" - cache "k8s.io/client-go/tools/cache" - apisexamplev1 "acme.corp/pkg/apis/example/v1" examplev1 "acme.corp/pkg/generated/informers/externalversions/example/v1" generatedlistersexamplev1 "acme.corp/pkg/generated/listers/example/v1" versioned "acme.corp/pkg/kcpexisting/clients/clientset/versioned" internalinterfaces "acme.corp/pkg/kcpexisting/clients/informers/externalversions/internalinterfaces" listersexamplev1 "acme.corp/pkg/kcpexisting/clients/listers/example/v1" + + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + runtime "k8s.io/apimachinery/pkg/runtime" + watch "k8s.io/apimachinery/pkg/watch" + cache "k8s.io/client-go/tools/cache" + + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // TestTypeClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/example/v1alpha1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/example/v1alpha1/clustertesttype.go index 98f25a10517..66c9358eab7 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/example/v1alpha1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/example/v1alpha1/clustertesttype.go @@ -22,21 +22,21 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - - v1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - watch "k8s.io/apimachinery/pkg/watch" - cache "k8s.io/client-go/tools/cache" - apisexamplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" examplev1alpha1 "acme.corp/pkg/generated/informers/externalversions/example/v1alpha1" generatedlistersexamplev1alpha1 "acme.corp/pkg/generated/listers/example/v1alpha1" versioned "acme.corp/pkg/kcpexisting/clients/clientset/versioned" internalinterfaces "acme.corp/pkg/kcpexisting/clients/informers/externalversions/internalinterfaces" listersexamplev1alpha1 "acme.corp/pkg/kcpexisting/clients/listers/example/v1alpha1" + + v1 "k8s.io/apimachinery/pkg/apis/meta/v1" + runtime "k8s.io/apimachinery/pkg/runtime" + watch "k8s.io/apimachinery/pkg/watch" + cache "k8s.io/client-go/tools/cache" + + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypeClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/example/v1alpha1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/example/v1alpha1/testtype.go index b3db7d34b54..7a50c9b6117 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/example/v1alpha1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/example/v1alpha1/testtype.go @@ -22,21 +22,21 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - - v1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - watch "k8s.io/apimachinery/pkg/watch" - cache "k8s.io/client-go/tools/cache" - apisexamplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" examplev1alpha1 "acme.corp/pkg/generated/informers/externalversions/example/v1alpha1" generatedlistersexamplev1alpha1 "acme.corp/pkg/generated/listers/example/v1alpha1" versioned "acme.corp/pkg/kcpexisting/clients/clientset/versioned" internalinterfaces "acme.corp/pkg/kcpexisting/clients/informers/externalversions/internalinterfaces" listersexamplev1alpha1 "acme.corp/pkg/kcpexisting/clients/listers/example/v1alpha1" + + v1 "k8s.io/apimachinery/pkg/apis/meta/v1" + runtime "k8s.io/apimachinery/pkg/runtime" + watch "k8s.io/apimachinery/pkg/watch" + cache "k8s.io/client-go/tools/cache" + + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // TestTypeClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/example/v1beta1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/example/v1beta1/clustertesttype.go index fa174662b85..0a180867c4d 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/example/v1beta1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/example/v1beta1/clustertesttype.go @@ -22,21 +22,21 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - - v1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - watch "k8s.io/apimachinery/pkg/watch" - cache "k8s.io/client-go/tools/cache" - apisexamplev1beta1 "acme.corp/pkg/apis/example/v1beta1" examplev1beta1 "acme.corp/pkg/generated/informers/externalversions/example/v1beta1" generatedlistersexamplev1beta1 "acme.corp/pkg/generated/listers/example/v1beta1" versioned "acme.corp/pkg/kcpexisting/clients/clientset/versioned" internalinterfaces "acme.corp/pkg/kcpexisting/clients/informers/externalversions/internalinterfaces" listersexamplev1beta1 "acme.corp/pkg/kcpexisting/clients/listers/example/v1beta1" + + v1 "k8s.io/apimachinery/pkg/apis/meta/v1" + runtime "k8s.io/apimachinery/pkg/runtime" + watch "k8s.io/apimachinery/pkg/watch" + cache "k8s.io/client-go/tools/cache" + + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypeClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/example/v1beta1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/example/v1beta1/testtype.go index 673a59702df..8e6b9caa559 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/example/v1beta1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/example/v1beta1/testtype.go @@ -22,21 +22,21 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - - v1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - watch "k8s.io/apimachinery/pkg/watch" - cache "k8s.io/client-go/tools/cache" - apisexamplev1beta1 "acme.corp/pkg/apis/example/v1beta1" examplev1beta1 "acme.corp/pkg/generated/informers/externalversions/example/v1beta1" generatedlistersexamplev1beta1 "acme.corp/pkg/generated/listers/example/v1beta1" versioned "acme.corp/pkg/kcpexisting/clients/clientset/versioned" internalinterfaces "acme.corp/pkg/kcpexisting/clients/informers/externalversions/internalinterfaces" listersexamplev1beta1 "acme.corp/pkg/kcpexisting/clients/listers/example/v1beta1" + + v1 "k8s.io/apimachinery/pkg/apis/meta/v1" + runtime "k8s.io/apimachinery/pkg/runtime" + watch "k8s.io/apimachinery/pkg/watch" + cache "k8s.io/client-go/tools/cache" + + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // TestTypeClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/example/v2/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/example/v2/clustertesttype.go index 75c2f392352..e0d9397a071 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/example/v2/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/example/v2/clustertesttype.go @@ -22,21 +22,21 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - - v1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - watch "k8s.io/apimachinery/pkg/watch" - cache "k8s.io/client-go/tools/cache" - apisexamplev2 "acme.corp/pkg/apis/example/v2" examplev2 "acme.corp/pkg/generated/informers/externalversions/example/v2" generatedlistersexamplev2 "acme.corp/pkg/generated/listers/example/v2" versioned "acme.corp/pkg/kcpexisting/clients/clientset/versioned" internalinterfaces "acme.corp/pkg/kcpexisting/clients/informers/externalversions/internalinterfaces" listersexamplev2 "acme.corp/pkg/kcpexisting/clients/listers/example/v2" + + v1 "k8s.io/apimachinery/pkg/apis/meta/v1" + runtime "k8s.io/apimachinery/pkg/runtime" + watch "k8s.io/apimachinery/pkg/watch" + cache "k8s.io/client-go/tools/cache" + + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypeClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/example/v2/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/example/v2/testtype.go index 5c179753fbd..bc783c7b962 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/example/v2/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/example/v2/testtype.go @@ -22,21 +22,21 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - - v1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - watch "k8s.io/apimachinery/pkg/watch" - cache "k8s.io/client-go/tools/cache" - apisexamplev2 "acme.corp/pkg/apis/example/v2" examplev2 "acme.corp/pkg/generated/informers/externalversions/example/v2" generatedlistersexamplev2 "acme.corp/pkg/generated/listers/example/v2" versioned "acme.corp/pkg/kcpexisting/clients/clientset/versioned" internalinterfaces "acme.corp/pkg/kcpexisting/clients/informers/externalversions/internalinterfaces" listersexamplev2 "acme.corp/pkg/kcpexisting/clients/listers/example/v2" + + v1 "k8s.io/apimachinery/pkg/apis/meta/v1" + runtime "k8s.io/apimachinery/pkg/runtime" + watch "k8s.io/apimachinery/pkg/watch" + cache "k8s.io/client-go/tools/cache" + + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // TestTypeClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/example3/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/example3/v1/clustertesttype.go index 47eff47286b..b9bcaf38851 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/example3/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/example3/v1/clustertesttype.go @@ -22,21 +22,21 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - watch "k8s.io/apimachinery/pkg/watch" - cache "k8s.io/client-go/tools/cache" - apisexample3v1 "acme.corp/pkg/apis/example3/v1" example3v1 "acme.corp/pkg/generated/informers/externalversions/example3/v1" generatedlistersexample3v1 "acme.corp/pkg/generated/listers/example3/v1" versioned "acme.corp/pkg/kcpexisting/clients/clientset/versioned" internalinterfaces "acme.corp/pkg/kcpexisting/clients/informers/externalversions/internalinterfaces" listersexample3v1 "acme.corp/pkg/kcpexisting/clients/listers/example3/v1" + + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + runtime "k8s.io/apimachinery/pkg/runtime" + watch "k8s.io/apimachinery/pkg/watch" + cache "k8s.io/client-go/tools/cache" + + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypeClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/example3/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/example3/v1/testtype.go index 03997695155..1e384ce4453 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/example3/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/example3/v1/testtype.go @@ -22,21 +22,21 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - watch "k8s.io/apimachinery/pkg/watch" - cache "k8s.io/client-go/tools/cache" - apisexample3v1 "acme.corp/pkg/apis/example3/v1" example3v1 "acme.corp/pkg/generated/informers/externalversions/example3/v1" generatedlistersexample3v1 "acme.corp/pkg/generated/listers/example3/v1" versioned "acme.corp/pkg/kcpexisting/clients/clientset/versioned" internalinterfaces "acme.corp/pkg/kcpexisting/clients/informers/externalversions/internalinterfaces" listersexample3v1 "acme.corp/pkg/kcpexisting/clients/listers/example3/v1" + + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + runtime "k8s.io/apimachinery/pkg/runtime" + watch "k8s.io/apimachinery/pkg/watch" + cache "k8s.io/client-go/tools/cache" + + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // TestTypeClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/exampledashed/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/exampledashed/v1/clustertesttype.go index d842d6939a4..7ad83b1ea3a 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/exampledashed/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/exampledashed/v1/clustertesttype.go @@ -22,21 +22,21 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - watch "k8s.io/apimachinery/pkg/watch" - cache "k8s.io/client-go/tools/cache" - apisexampledashedv1 "acme.corp/pkg/apis/exampledashed/v1" exampledashedv1 "acme.corp/pkg/generated/informers/externalversions/exampledashed/v1" generatedlistersexampledashedv1 "acme.corp/pkg/generated/listers/exampledashed/v1" versioned "acme.corp/pkg/kcpexisting/clients/clientset/versioned" internalinterfaces "acme.corp/pkg/kcpexisting/clients/informers/externalversions/internalinterfaces" listersexampledashedv1 "acme.corp/pkg/kcpexisting/clients/listers/exampledashed/v1" + + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + runtime "k8s.io/apimachinery/pkg/runtime" + watch "k8s.io/apimachinery/pkg/watch" + cache "k8s.io/client-go/tools/cache" + + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypeClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/exampledashed/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/exampledashed/v1/testtype.go index 0755b1fc577..fe0aa76fd4d 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/exampledashed/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/exampledashed/v1/testtype.go @@ -22,21 +22,21 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - watch "k8s.io/apimachinery/pkg/watch" - cache "k8s.io/client-go/tools/cache" - apisexampledashedv1 "acme.corp/pkg/apis/exampledashed/v1" exampledashedv1 "acme.corp/pkg/generated/informers/externalversions/exampledashed/v1" generatedlistersexampledashedv1 "acme.corp/pkg/generated/listers/exampledashed/v1" versioned "acme.corp/pkg/kcpexisting/clients/clientset/versioned" internalinterfaces "acme.corp/pkg/kcpexisting/clients/informers/externalversions/internalinterfaces" listersexampledashedv1 "acme.corp/pkg/kcpexisting/clients/listers/exampledashed/v1" + + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + runtime "k8s.io/apimachinery/pkg/runtime" + watch "k8s.io/apimachinery/pkg/watch" + cache "k8s.io/client-go/tools/cache" + + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // TestTypeClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/existinginterfaces/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/existinginterfaces/v1/clustertesttype.go index c352eda7474..2f43ebd9e96 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/existinginterfaces/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/existinginterfaces/v1/clustertesttype.go @@ -22,21 +22,21 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - watch "k8s.io/apimachinery/pkg/watch" - cache "k8s.io/client-go/tools/cache" - apisexistinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" existinginterfacesv1 "acme.corp/pkg/generated/informers/externalversions/existinginterfaces/v1" generatedlistersexistinginterfacesv1 "acme.corp/pkg/generated/listers/existinginterfaces/v1" versioned "acme.corp/pkg/kcpexisting/clients/clientset/versioned" internalinterfaces "acme.corp/pkg/kcpexisting/clients/informers/externalversions/internalinterfaces" listersexistinginterfacesv1 "acme.corp/pkg/kcpexisting/clients/listers/existinginterfaces/v1" + + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + runtime "k8s.io/apimachinery/pkg/runtime" + watch "k8s.io/apimachinery/pkg/watch" + cache "k8s.io/client-go/tools/cache" + + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypeClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/existinginterfaces/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/existinginterfaces/v1/testtype.go index e43184d9ab0..515fd7e3eaf 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/existinginterfaces/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/existinginterfaces/v1/testtype.go @@ -22,21 +22,21 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - watch "k8s.io/apimachinery/pkg/watch" - cache "k8s.io/client-go/tools/cache" - apisexistinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" existinginterfacesv1 "acme.corp/pkg/generated/informers/externalversions/existinginterfaces/v1" generatedlistersexistinginterfacesv1 "acme.corp/pkg/generated/listers/existinginterfaces/v1" versioned "acme.corp/pkg/kcpexisting/clients/clientset/versioned" internalinterfaces "acme.corp/pkg/kcpexisting/clients/informers/externalversions/internalinterfaces" listersexistinginterfacesv1 "acme.corp/pkg/kcpexisting/clients/listers/existinginterfaces/v1" + + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + runtime "k8s.io/apimachinery/pkg/runtime" + watch "k8s.io/apimachinery/pkg/watch" + cache "k8s.io/client-go/tools/cache" + + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // TestTypeClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/factory.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/factory.go index d9705e655c1..5c10202db83 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/factory.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/factory.go @@ -23,14 +23,6 @@ import ( sync "sync" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - - v1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - schema "k8s.io/apimachinery/pkg/runtime/schema" - cache "k8s.io/client-go/tools/cache" - informersexternalversions "acme.corp/pkg/generated/informers/externalversions" versioned "acme.corp/pkg/kcpexisting/clients/clientset/versioned" example "acme.corp/pkg/kcpexisting/clients/informers/externalversions/example" @@ -39,6 +31,14 @@ import ( existinginterfaces "acme.corp/pkg/kcpexisting/clients/informers/externalversions/existinginterfaces" internalinterfaces "acme.corp/pkg/kcpexisting/clients/informers/externalversions/internalinterfaces" secondexample "acme.corp/pkg/kcpexisting/clients/informers/externalversions/secondexample" + + v1 "k8s.io/apimachinery/pkg/apis/meta/v1" + runtime "k8s.io/apimachinery/pkg/runtime" + schema "k8s.io/apimachinery/pkg/runtime/schema" + cache "k8s.io/client-go/tools/cache" + + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // SharedInformerOption defines the functional option type for SharedInformerFactory. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/generic.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/generic.go index f565c857129..e21d34f8d6b 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/generic.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/generic.go @@ -22,12 +22,6 @@ import ( context "context" fmt "fmt" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - - schema "k8s.io/apimachinery/pkg/runtime/schema" - cache "k8s.io/client-go/tools/cache" - examplev1 "acme.corp/pkg/apis/example/v1" v1alpha1 "acme.corp/pkg/apis/example/v1alpha1" v1beta1 "acme.corp/pkg/apis/example/v1beta1" @@ -37,6 +31,12 @@ import ( existinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" secondexamplev1 "acme.corp/pkg/apis/secondexample/v1" informersexternalversions "acme.corp/pkg/generated/informers/externalversions" + + schema "k8s.io/apimachinery/pkg/runtime/schema" + cache "k8s.io/client-go/tools/cache" + + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) type GenericClusterInformer interface { diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/internalinterfaces/factory_interfaces.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/internalinterfaces/factory_interfaces.go index 7a34096ee74..e4c66864f2f 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/internalinterfaces/factory_interfaces.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/internalinterfaces/factory_interfaces.go @@ -21,12 +21,12 @@ package internalinterfaces import ( time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + versioned "acme.corp/pkg/kcpexisting/clients/clientset/versioned" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" - versioned "acme.corp/pkg/kcpexisting/clients/clientset/versioned" + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" ) // TweakListOptionsFunc is a function that transforms a v1.ListOptions. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/secondexample/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/secondexample/v1/clustertesttype.go index 0e4668f2776..3f15af72271 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/secondexample/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/secondexample/v1/clustertesttype.go @@ -22,21 +22,21 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - watch "k8s.io/apimachinery/pkg/watch" - cache "k8s.io/client-go/tools/cache" - apissecondexamplev1 "acme.corp/pkg/apis/secondexample/v1" secondexamplev1 "acme.corp/pkg/generated/informers/externalversions/secondexample/v1" generatedlisterssecondexamplev1 "acme.corp/pkg/generated/listers/secondexample/v1" versioned "acme.corp/pkg/kcpexisting/clients/clientset/versioned" internalinterfaces "acme.corp/pkg/kcpexisting/clients/informers/externalversions/internalinterfaces" listerssecondexamplev1 "acme.corp/pkg/kcpexisting/clients/listers/secondexample/v1" + + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + runtime "k8s.io/apimachinery/pkg/runtime" + watch "k8s.io/apimachinery/pkg/watch" + cache "k8s.io/client-go/tools/cache" + + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypeClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/secondexample/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/secondexample/v1/testtype.go index d96c3ac6d8f..e85ed584756 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/secondexample/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/informers/externalversions/secondexample/v1/testtype.go @@ -22,21 +22,21 @@ import ( context "context" time "time" - kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" - kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" - logicalcluster "github.com/kcp-dev/logicalcluster/v3" - - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - watch "k8s.io/apimachinery/pkg/watch" - cache "k8s.io/client-go/tools/cache" - apissecondexamplev1 "acme.corp/pkg/apis/secondexample/v1" secondexamplev1 "acme.corp/pkg/generated/informers/externalversions/secondexample/v1" generatedlisterssecondexamplev1 "acme.corp/pkg/generated/listers/secondexample/v1" versioned "acme.corp/pkg/kcpexisting/clients/clientset/versioned" internalinterfaces "acme.corp/pkg/kcpexisting/clients/informers/externalversions/internalinterfaces" listerssecondexamplev1 "acme.corp/pkg/kcpexisting/clients/listers/secondexample/v1" + + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + runtime "k8s.io/apimachinery/pkg/runtime" + watch "k8s.io/apimachinery/pkg/watch" + cache "k8s.io/client-go/tools/cache" + + kcpcache "github.com/kcp-dev/apimachinery/v2/pkg/cache" + kcpinformers "github.com/kcp-dev/apimachinery/v2/third_party/informers" + logicalcluster "github.com/kcp-dev/logicalcluster/v3" ) // TestTypeClusterInformer provides access to a shared informer and lister for diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/example/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/example/v1/clustertesttype.go index a6d5c294c41..7c789d6c0d1 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/example/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/example/v1/clustertesttype.go @@ -19,14 +19,14 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" + examplev1 "acme.corp/pkg/apis/example/v1" + listersexamplev1 "acme.corp/pkg/generated/listers/example/v1" - kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" "k8s.io/apimachinery/pkg/labels" "k8s.io/client-go/tools/cache" - examplev1 "acme.corp/pkg/apis/example/v1" - listersexamplev1 "acme.corp/pkg/generated/listers/example/v1" + kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypeClusterLister helps list ClusterTestTypes across all workspaces, diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/example/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/example/v1/testtype.go index ff63391bdb1..f316d62f075 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/example/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/example/v1/testtype.go @@ -19,14 +19,14 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" + examplev1 "acme.corp/pkg/apis/example/v1" + listersexamplev1 "acme.corp/pkg/generated/listers/example/v1" - kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" "k8s.io/apimachinery/pkg/labels" "k8s.io/client-go/tools/cache" - examplev1 "acme.corp/pkg/apis/example/v1" - listersexamplev1 "acme.corp/pkg/generated/listers/example/v1" + kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // TestTypeClusterLister helps list TestTypes across all workspaces, diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/example/v1/withoutverbtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/example/v1/withoutverbtype.go index 632caae3815..61e1ef48c54 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/example/v1/withoutverbtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/example/v1/withoutverbtype.go @@ -19,14 +19,14 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" + examplev1 "acme.corp/pkg/apis/example/v1" + listersexamplev1 "acme.corp/pkg/generated/listers/example/v1" - kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" "k8s.io/apimachinery/pkg/labels" "k8s.io/client-go/tools/cache" - examplev1 "acme.corp/pkg/apis/example/v1" - listersexamplev1 "acme.corp/pkg/generated/listers/example/v1" + kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // WithoutVerbTypeClusterLister helps list WithoutVerbTypes across all workspaces, diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/example/v1alpha1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/example/v1alpha1/clustertesttype.go index c81b2666049..a8eb8f226e6 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/example/v1alpha1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/example/v1alpha1/clustertesttype.go @@ -19,14 +19,14 @@ limitations under the License. package v1alpha1 import ( - "github.com/kcp-dev/logicalcluster/v3" + examplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" + listersexamplev1alpha1 "acme.corp/pkg/generated/listers/example/v1alpha1" - kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" "k8s.io/apimachinery/pkg/labels" "k8s.io/client-go/tools/cache" - examplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" - listersexamplev1alpha1 "acme.corp/pkg/generated/listers/example/v1alpha1" + kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypeClusterLister helps list ClusterTestTypes across all workspaces, diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/example/v1alpha1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/example/v1alpha1/testtype.go index 43188a8156e..c6fc02ccac9 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/example/v1alpha1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/example/v1alpha1/testtype.go @@ -19,14 +19,14 @@ limitations under the License. package v1alpha1 import ( - "github.com/kcp-dev/logicalcluster/v3" + examplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" + listersexamplev1alpha1 "acme.corp/pkg/generated/listers/example/v1alpha1" - kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" "k8s.io/apimachinery/pkg/labels" "k8s.io/client-go/tools/cache" - examplev1alpha1 "acme.corp/pkg/apis/example/v1alpha1" - listersexamplev1alpha1 "acme.corp/pkg/generated/listers/example/v1alpha1" + kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // TestTypeClusterLister helps list TestTypes across all workspaces, diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/example/v1beta1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/example/v1beta1/clustertesttype.go index cf92944bb5a..8340fca9414 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/example/v1beta1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/example/v1beta1/clustertesttype.go @@ -19,14 +19,14 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" + examplev1beta1 "acme.corp/pkg/apis/example/v1beta1" + listersexamplev1beta1 "acme.corp/pkg/generated/listers/example/v1beta1" - kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" "k8s.io/apimachinery/pkg/labels" "k8s.io/client-go/tools/cache" - examplev1beta1 "acme.corp/pkg/apis/example/v1beta1" - listersexamplev1beta1 "acme.corp/pkg/generated/listers/example/v1beta1" + kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypeClusterLister helps list ClusterTestTypes across all workspaces, diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/example/v1beta1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/example/v1beta1/testtype.go index f6880ec90f7..236fe719754 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/example/v1beta1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/example/v1beta1/testtype.go @@ -19,14 +19,14 @@ limitations under the License. package v1beta1 import ( - "github.com/kcp-dev/logicalcluster/v3" + examplev1beta1 "acme.corp/pkg/apis/example/v1beta1" + listersexamplev1beta1 "acme.corp/pkg/generated/listers/example/v1beta1" - kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" "k8s.io/apimachinery/pkg/labels" "k8s.io/client-go/tools/cache" - examplev1beta1 "acme.corp/pkg/apis/example/v1beta1" - listersexamplev1beta1 "acme.corp/pkg/generated/listers/example/v1beta1" + kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // TestTypeClusterLister helps list TestTypes across all workspaces, diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/example/v2/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/example/v2/clustertesttype.go index 0b6b973999f..92097363107 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/example/v2/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/example/v2/clustertesttype.go @@ -19,14 +19,14 @@ limitations under the License. package v2 import ( - "github.com/kcp-dev/logicalcluster/v3" + examplev2 "acme.corp/pkg/apis/example/v2" + listersexamplev2 "acme.corp/pkg/generated/listers/example/v2" - kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" "k8s.io/apimachinery/pkg/labels" "k8s.io/client-go/tools/cache" - examplev2 "acme.corp/pkg/apis/example/v2" - listersexamplev2 "acme.corp/pkg/generated/listers/example/v2" + kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypeClusterLister helps list ClusterTestTypes across all workspaces, diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/example/v2/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/example/v2/testtype.go index 7b4f379dd61..e7c306e76a9 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/example/v2/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/example/v2/testtype.go @@ -19,14 +19,14 @@ limitations under the License. package v2 import ( - "github.com/kcp-dev/logicalcluster/v3" + examplev2 "acme.corp/pkg/apis/example/v2" + listersexamplev2 "acme.corp/pkg/generated/listers/example/v2" - kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" "k8s.io/apimachinery/pkg/labels" "k8s.io/client-go/tools/cache" - examplev2 "acme.corp/pkg/apis/example/v2" - listersexamplev2 "acme.corp/pkg/generated/listers/example/v2" + kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // TestTypeClusterLister helps list TestTypes across all workspaces, diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/example3/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/example3/v1/clustertesttype.go index 2e959ae34be..40f22731287 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/example3/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/example3/v1/clustertesttype.go @@ -19,14 +19,14 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" + example3v1 "acme.corp/pkg/apis/example3/v1" + listersexample3v1 "acme.corp/pkg/generated/listers/example3/v1" - kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" "k8s.io/apimachinery/pkg/labels" "k8s.io/client-go/tools/cache" - example3v1 "acme.corp/pkg/apis/example3/v1" - listersexample3v1 "acme.corp/pkg/generated/listers/example3/v1" + kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypeClusterLister helps list ClusterTestTypes across all workspaces, diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/example3/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/example3/v1/testtype.go index bc231922354..3eba1dd2b3c 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/example3/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/example3/v1/testtype.go @@ -19,14 +19,14 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" + example3v1 "acme.corp/pkg/apis/example3/v1" + listersexample3v1 "acme.corp/pkg/generated/listers/example3/v1" - kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" "k8s.io/apimachinery/pkg/labels" "k8s.io/client-go/tools/cache" - example3v1 "acme.corp/pkg/apis/example3/v1" - listersexample3v1 "acme.corp/pkg/generated/listers/example3/v1" + kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // TestTypeClusterLister helps list TestTypes across all workspaces, diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/exampledashed/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/exampledashed/v1/clustertesttype.go index 57a1ca2c84a..48889bb6e2f 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/exampledashed/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/exampledashed/v1/clustertesttype.go @@ -19,14 +19,14 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" + exampledashedv1 "acme.corp/pkg/apis/exampledashed/v1" + listersexampledashedv1 "acme.corp/pkg/generated/listers/exampledashed/v1" - kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" "k8s.io/apimachinery/pkg/labels" "k8s.io/client-go/tools/cache" - exampledashedv1 "acme.corp/pkg/apis/exampledashed/v1" - listersexampledashedv1 "acme.corp/pkg/generated/listers/exampledashed/v1" + kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypeClusterLister helps list ClusterTestTypes across all workspaces, diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/exampledashed/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/exampledashed/v1/testtype.go index 31fa3e4e1ae..a2a49d73da8 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/exampledashed/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/exampledashed/v1/testtype.go @@ -19,14 +19,14 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" + exampledashedv1 "acme.corp/pkg/apis/exampledashed/v1" + listersexampledashedv1 "acme.corp/pkg/generated/listers/exampledashed/v1" - kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" "k8s.io/apimachinery/pkg/labels" "k8s.io/client-go/tools/cache" - exampledashedv1 "acme.corp/pkg/apis/exampledashed/v1" - listersexampledashedv1 "acme.corp/pkg/generated/listers/exampledashed/v1" + kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // TestTypeClusterLister helps list TestTypes across all workspaces, diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/existinginterfaces/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/existinginterfaces/v1/clustertesttype.go index 78de56a880d..2e3cf89bc25 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/existinginterfaces/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/existinginterfaces/v1/clustertesttype.go @@ -19,14 +19,14 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" + existinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" + listersexistinginterfacesv1 "acme.corp/pkg/generated/listers/existinginterfaces/v1" - kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" "k8s.io/apimachinery/pkg/labels" "k8s.io/client-go/tools/cache" - existinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" - listersexistinginterfacesv1 "acme.corp/pkg/generated/listers/existinginterfaces/v1" + kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypeClusterLister helps list ClusterTestTypes across all workspaces, diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/existinginterfaces/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/existinginterfaces/v1/testtype.go index 39ba766639a..36a3fe68426 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/existinginterfaces/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/existinginterfaces/v1/testtype.go @@ -19,14 +19,14 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" + existinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" + listersexistinginterfacesv1 "acme.corp/pkg/generated/listers/existinginterfaces/v1" - kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" "k8s.io/apimachinery/pkg/labels" "k8s.io/client-go/tools/cache" - existinginterfacesv1 "acme.corp/pkg/apis/existinginterfaces/v1" - listersexistinginterfacesv1 "acme.corp/pkg/generated/listers/existinginterfaces/v1" + kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // TestTypeClusterLister helps list TestTypes across all workspaces, diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/secondexample/v1/clustertesttype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/secondexample/v1/clustertesttype.go index 6f2c315b354..9322631aee3 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/secondexample/v1/clustertesttype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/secondexample/v1/clustertesttype.go @@ -19,14 +19,14 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" + secondexamplev1 "acme.corp/pkg/apis/secondexample/v1" + listerssecondexamplev1 "acme.corp/pkg/generated/listers/secondexample/v1" - kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" "k8s.io/apimachinery/pkg/labels" "k8s.io/client-go/tools/cache" - secondexamplev1 "acme.corp/pkg/apis/secondexample/v1" - listerssecondexamplev1 "acme.corp/pkg/generated/listers/secondexample/v1" + kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // ClusterTestTypeClusterLister helps list ClusterTestTypes across all workspaces, diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/secondexample/v1/testtype.go b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/secondexample/v1/testtype.go index 072362998f5..7a0953936d2 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/secondexample/v1/testtype.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/pkg/kcpexisting/clients/listers/secondexample/v1/testtype.go @@ -19,14 +19,14 @@ limitations under the License. package v1 import ( - "github.com/kcp-dev/logicalcluster/v3" + secondexamplev1 "acme.corp/pkg/apis/secondexample/v1" + listerssecondexamplev1 "acme.corp/pkg/generated/listers/secondexample/v1" - kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" "k8s.io/apimachinery/pkg/labels" "k8s.io/client-go/tools/cache" - secondexamplev1 "acme.corp/pkg/apis/secondexample/v1" - listerssecondexamplev1 "acme.corp/pkg/generated/listers/secondexample/v1" + kcplisters "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/listers" + "github.com/kcp-dev/logicalcluster/v3" ) // TestTypeClusterLister helps list TestTypes across all workspaces, diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/test/kcp/controller_test.go b/staging/src/github.com/kcp-dev/code-generator/examples/test/kcp/controller_test.go index ff02ff41dfa..129b9af917e 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/test/kcp/controller_test.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/test/kcp/controller_test.go @@ -21,17 +21,17 @@ import ( "testing" "time" - "github.com/kcp-dev/logicalcluster/v3" + examplev1 "acme.corp/pkg/apis/example/v1" + "acme.corp/pkg/kcp/clients/clientset/versioned/fake" + informers "acme.corp/pkg/kcp/clients/informers/externalversions" - clienttesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/util/wait" "k8s.io/apimachinery/pkg/watch" "k8s.io/client-go/tools/cache" - examplev1 "acme.corp/pkg/apis/example/v1" - "acme.corp/pkg/kcp/clients/clientset/versioned/fake" - informers "acme.corp/pkg/kcp/clients/informers/externalversions" + clienttesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // TestFakeClient demonstrates how to use a fake client with SharedInformerFactory in tests. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/test/kcpexisting/controller_test.go b/staging/src/github.com/kcp-dev/code-generator/examples/test/kcpexisting/controller_test.go index 4b9005bcfc2..b06f4f2dbca 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/test/kcpexisting/controller_test.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/test/kcpexisting/controller_test.go @@ -21,17 +21,17 @@ import ( "testing" "time" - "github.com/kcp-dev/logicalcluster/v3" + examplev1 "acme.corp/pkg/apis/example/v1" + "acme.corp/pkg/kcpexisting/clients/clientset/versioned/fake" + informers "acme.corp/pkg/kcpexisting/clients/informers/externalversions" - clienttesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/util/wait" "k8s.io/apimachinery/pkg/watch" "k8s.io/client-go/tools/cache" - examplev1 "acme.corp/pkg/apis/example/v1" - "acme.corp/pkg/kcpexisting/clients/clientset/versioned/fake" - informers "acme.corp/pkg/kcpexisting/clients/informers/externalversions" + clienttesting "github.com/kcp-dev/client-go/third_party/k8s.io/client-go/testing" + "github.com/kcp-dev/logicalcluster/v3" ) // TestFakeClient demonstrates how to use a fake client with SharedInformerFactory in tests. diff --git a/staging/src/github.com/kcp-dev/code-generator/examples/test/singlecluster/controller_test.go b/staging/src/github.com/kcp-dev/code-generator/examples/test/singlecluster/controller_test.go index 583c73e10e0..b9e37140fd4 100644 --- a/staging/src/github.com/kcp-dev/code-generator/examples/test/singlecluster/controller_test.go +++ b/staging/src/github.com/kcp-dev/code-generator/examples/test/singlecluster/controller_test.go @@ -21,15 +21,15 @@ import ( "testing" "time" + examplev1 "acme.corp/pkg/apis/example/v1" + "acme.corp/pkg/generated/clientset/versioned/fake" + informers "acme.corp/pkg/generated/informers/externalversions" + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/util/wait" "k8s.io/apimachinery/pkg/watch" clienttesting "k8s.io/client-go/testing" "k8s.io/client-go/tools/cache" - - examplev1 "acme.corp/pkg/apis/example/v1" - "acme.corp/pkg/generated/clientset/versioned/fake" - informers "acme.corp/pkg/generated/informers/externalversions" ) // TestFakeClient demonstrates how to use a fake client with SharedInformerFactory in tests.