diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f7c26dff1..e0f45c430 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -36,7 +36,7 @@ contribution. See the [DCO](DCO) file for details. Anyone may comment on issues and submit reviews for pull requests. However, in order to be assigned an issue or pull request, you must be a member of the -[open-cluster-management](https://github.com/open-cluster-management) GitHub organization. +[stolostron](https://github.com/stolostron) GitHub organization. Repo maintainers can assign you an issue or pull request by leaving a `/assign ` comment on the issue or pull request. diff --git a/Dockerfile b/Dockerfile index f15f0aeed..f4ca0a6e7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ -FROM registry.ci.openshift.org/open-cluster-management/builder:go1.17-linux AS builder -WORKDIR /go/src/github.com/open-cluster-management/multicloud-operators-foundation +FROM registry.ci.openshift.org/stolostron/builder:go1.17-linux AS builder +WORKDIR /go/src/github.com/stolostron/multicloud-operators-foundation COPY . . -ENV GO_PACKAGE github.com/open-cluster-management/multicloud-operators-foundation +ENV GO_PACKAGE github.com/stolostron/multicloud-operators-foundation RUN make build --warn-undefined-variables RUN make build-e2e --warn-undefined-variables @@ -11,11 +11,11 @@ FROM registry.access.redhat.com/ubi8/ubi-minimal:latest ENV USER_UID=10001 \ USER_NAME=acm-foundation -COPY --from=builder /go/src/github.com/open-cluster-management/multicloud-operators-foundation/proxyserver / -COPY --from=builder /go/src/github.com/open-cluster-management/multicloud-operators-foundation/controller / -COPY --from=builder /go/src/github.com/open-cluster-management/multicloud-operators-foundation/webhook / -COPY --from=builder /go/src/github.com/open-cluster-management/multicloud-operators-foundation/agent / -COPY --from=builder /go/src/github.com/open-cluster-management/multicloud-operators-foundation/e2e.test / +COPY --from=builder /go/src/github.com/stolostron/multicloud-operators-foundation/proxyserver / +COPY --from=builder /go/src/github.com/stolostron/multicloud-operators-foundation/controller / +COPY --from=builder /go/src/github.com/stolostron/multicloud-operators-foundation/webhook / +COPY --from=builder /go/src/github.com/stolostron/multicloud-operators-foundation/agent / +COPY --from=builder /go/src/github.com/stolostron/multicloud-operators-foundation/e2e.test / RUN microdnf update && \ microdnf clean all diff --git a/Makefile b/Makefile index 247fe00c0..05f3c0361 100644 --- a/Makefile +++ b/Makefile @@ -22,11 +22,11 @@ kustomize_dir:=$(dir $(KUSTOMIZE)) # Image URL to use all building/pushing image targets; IMAGE ?= multicloud-manager -IMAGE_REGISTRY ?= quay.io/open-cluster-management +IMAGE_REGISTRY ?= quay.io/stolostron IMAGE_TAG ?= latest FOUNDATION_IMAGE_NAME ?= $(IMAGE_REGISTRY)/$(IMAGE):$(IMAGE_TAG) -GIT_HOST ?= github.com/open-cluster-management +GIT_HOST ?= github.com/stolostron BASE_DIR := $(shell basename $(PWD)) DEST := $(GOPATH)/src/$(GIT_HOST)/$(BASE_DIR) BINDIR ?= _output @@ -71,8 +71,8 @@ deploy-klusterlet: deploy-foundation: ensure-kustomize cp deploy/foundation/hub/kustomization.yaml deploy/foundation/hub/kustomization.yaml.tmp - cd deploy/foundation/hub && ../../../$(KUSTOMIZE) edit set image 'quay.io/open-cluster-management/multicloud-manager'=$(FOUNDATION_IMAGE_NAME) - $(SED_CMD) -i.tmp "s,quay.io/open-cluster-management/multicloud-manager,$(FOUNDATION_IMAGE_NAME)," deploy/foundation/hub/patches.yaml + cd deploy/foundation/hub && ../../../$(KUSTOMIZE) edit set image 'quay.io/stolostron/multicloud-manager'=$(FOUNDATION_IMAGE_NAME) + $(SED_CMD) -i.tmp "s,quay.io/stolostron/multicloud-manager,$(FOUNDATION_IMAGE_NAME)," deploy/foundation/hub/patches.yaml $(KUSTOMIZE) build deploy/foundation/hub | $(KUBECTL) apply -f - mv deploy/foundation/hub/kustomization.yaml.tmp deploy/foundation/hub/kustomization.yaml mv deploy/foundation/hub/patches.yaml.tmp deploy/foundation/hub/patches.yaml diff --git a/README.md b/README.md index 16c3f053b..c1ba2b5be 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# open-cluster-management Foundation +# stolostron Foundation -open-cluster-management Foundation supports some foundational components based ManagedCluster for ACM. +stolostron Foundation supports some foundational components based ManagedCluster for ACM. ## Community, discussion, contribution, and support @@ -10,7 +10,7 @@ Check the [CONTRIBUTING Doc](CONTRIBUTING.md) for how to contribute to the repo. ## Getting Started -This is a guide on how to build and deploy open-cluster-management Foundation from code. +This is a guide on how to build and deploy stolostron Foundation from code. ### Build images @@ -20,7 +20,7 @@ Run the following after cloning/pulling/making a change. make images ``` -`make images` will build a new image named `quay.io/open-cluster-management/multicloud-manager:latest`. +`make images` will build a new image named `quay.io/stolostron/multicloud-manager:latest`. ### Prerequisites diff --git a/cmd/agent/agent.go b/cmd/agent/agent.go index 1671241c7..18387dcec 100644 --- a/cmd/agent/agent.go +++ b/cmd/agent/agent.go @@ -11,25 +11,25 @@ import ( openshiftclientset "github.com/openshift/client-go/config/clientset/versioned" - "github.com/open-cluster-management/multicloud-operators-foundation/cmd/agent/app" - "github.com/open-cluster-management/multicloud-operators-foundation/cmd/agent/app/options" - actionv1beta1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/action/v1beta1" - clusterv1beta1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" - viewv1beta1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/view/v1beta1" - actionctrl "github.com/open-cluster-management/multicloud-operators-foundation/pkg/klusterlet/action" + "github.com/stolostron/multicloud-operators-foundation/cmd/agent/app" + "github.com/stolostron/multicloud-operators-foundation/cmd/agent/app/options" + actionv1beta1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/action/v1beta1" + clusterv1beta1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" + viewv1beta1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/view/v1beta1" + actionctrl "github.com/stolostron/multicloud-operators-foundation/pkg/klusterlet/action" "open-cluster-management.io/addon-framework/pkg/lease" clusterclientset "open-cluster-management.io/api/client/cluster/clientset/versioned" clusterinformers "open-cluster-management.io/api/client/cluster/informers/externalversions" clusterv1alpha1 "open-cluster-management.io/api/cluster/v1alpha1" - clusterclaimctl "github.com/open-cluster-management/multicloud-operators-foundation/pkg/klusterlet/clusterclaim" - clusterinfoctl "github.com/open-cluster-management/multicloud-operators-foundation/pkg/klusterlet/clusterinfo" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/klusterlet/nodecollector" - viewctrl "github.com/open-cluster-management/multicloud-operators-foundation/pkg/klusterlet/view" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils" - restutils "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils/rest" routev1 "github.com/openshift/client-go/route/clientset/versioned" "github.com/spf13/pflag" + clusterclaimctl "github.com/stolostron/multicloud-operators-foundation/pkg/klusterlet/clusterclaim" + clusterinfoctl "github.com/stolostron/multicloud-operators-foundation/pkg/klusterlet/clusterinfo" + "github.com/stolostron/multicloud-operators-foundation/pkg/klusterlet/nodecollector" + viewctrl "github.com/stolostron/multicloud-operators-foundation/pkg/klusterlet/view" + "github.com/stolostron/multicloud-operators-foundation/pkg/utils" + restutils "github.com/stolostron/multicloud-operators-foundation/pkg/utils/rest" "k8s.io/apimachinery/pkg/runtime" "k8s.io/client-go/dynamic" "k8s.io/client-go/informers" diff --git a/cmd/agent/app/server.go b/cmd/agent/app/server.go index d941cd07e..27c177070 100644 --- a/cmd/agent/app/server.go +++ b/cmd/agent/app/server.go @@ -10,8 +10,8 @@ import ( "net/http" "path" - "github.com/open-cluster-management/multicloud-operators-foundation/cmd/agent/app/options" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/klusterlet/agent" + "github.com/stolostron/multicloud-operators-foundation/cmd/agent/app/options" + "github.com/stolostron/multicloud-operators-foundation/pkg/klusterlet/agent" "k8s.io/client-go/kubernetes" certutil "k8s.io/client-go/util/cert" "k8s.io/client-go/util/keyutil" diff --git a/cmd/controller/app/options/options.go b/cmd/controller/app/options/options.go index 58c5d5b96..22cdcad12 100644 --- a/cmd/controller/app/options/options.go +++ b/cmd/controller/app/options/options.go @@ -31,7 +31,7 @@ func NewControllerRunOptions() *ControllerRunOptions { EnableAddonDeploy: false, QPS: 100.0, Burst: 200, - AddonImage: "quay.io/open-cluster-management/multicloud-manager:latest", + AddonImage: "quay.io/stolostron/multicloud-manager:latest", AddonInstallNamespace: "open-cluster-management-agent-addon", } } diff --git a/cmd/controller/app/server.go b/cmd/controller/app/server.go index 4167c692e..dc4e9789c 100644 --- a/cmd/controller/app/server.go +++ b/cmd/controller/app/server.go @@ -6,29 +6,29 @@ import ( "context" "time" - "github.com/open-cluster-management/multicloud-operators-foundation/cmd/controller/app/options" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/addon" - actionv1beta1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/action/v1beta1" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/imageregistry/v1alpha1" - clusterinfov1beta1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" - inventoryv1alpha1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/inventory/v1alpha1" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/cache" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/controllers/certrotation" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/controllers/clusterca" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/controllers/clusterinfo" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/controllers/clusterrole" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/controllers/clusterset/clusterclaim" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/controllers/clusterset/clusterdeployment" - clustersetmapper "github.com/open-cluster-management/multicloud-operators-foundation/pkg/controllers/clusterset/clustersetmapper" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/controllers/clusterset/syncclusterrolebinding" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/controllers/clusterset/syncrolebinding" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/controllers/gc" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/controllers/imageregistry" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/controllers/inventory" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/helpers" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils" hivev1 "github.com/openshift/hive/apis/hive/v1" hiveinternalv1alpha1 "github.com/openshift/hive/apis/hiveinternal/v1alpha1" + "github.com/stolostron/multicloud-operators-foundation/cmd/controller/app/options" + "github.com/stolostron/multicloud-operators-foundation/pkg/addon" + actionv1beta1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/action/v1beta1" + "github.com/stolostron/multicloud-operators-foundation/pkg/apis/imageregistry/v1alpha1" + clusterinfov1beta1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" + inventoryv1alpha1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/inventory/v1alpha1" + "github.com/stolostron/multicloud-operators-foundation/pkg/cache" + "github.com/stolostron/multicloud-operators-foundation/pkg/controllers/certrotation" + "github.com/stolostron/multicloud-operators-foundation/pkg/controllers/clusterca" + "github.com/stolostron/multicloud-operators-foundation/pkg/controllers/clusterinfo" + "github.com/stolostron/multicloud-operators-foundation/pkg/controllers/clusterrole" + "github.com/stolostron/multicloud-operators-foundation/pkg/controllers/clusterset/clusterclaim" + "github.com/stolostron/multicloud-operators-foundation/pkg/controllers/clusterset/clusterdeployment" + clustersetmapper "github.com/stolostron/multicloud-operators-foundation/pkg/controllers/clusterset/clustersetmapper" + "github.com/stolostron/multicloud-operators-foundation/pkg/controllers/clusterset/syncclusterrolebinding" + "github.com/stolostron/multicloud-operators-foundation/pkg/controllers/clusterset/syncrolebinding" + "github.com/stolostron/multicloud-operators-foundation/pkg/controllers/gc" + "github.com/stolostron/multicloud-operators-foundation/pkg/controllers/imageregistry" + "github.com/stolostron/multicloud-operators-foundation/pkg/controllers/inventory" + "github.com/stolostron/multicloud-operators-foundation/pkg/helpers" + "github.com/stolostron/multicloud-operators-foundation/pkg/utils" "k8s.io/apimachinery/pkg/runtime" kubeinformers "k8s.io/client-go/informers" "k8s.io/client-go/kubernetes" diff --git a/cmd/controller/controller.go b/cmd/controller/controller.go index 71d7f819c..eb07ca19c 100644 --- a/cmd/controller/controller.go +++ b/cmd/controller/controller.go @@ -8,8 +8,8 @@ import ( "os" "time" - "github.com/open-cluster-management/multicloud-operators-foundation/cmd/controller/app" - "github.com/open-cluster-management/multicloud-operators-foundation/cmd/controller/app/options" + "github.com/stolostron/multicloud-operators-foundation/cmd/controller/app" + "github.com/stolostron/multicloud-operators-foundation/cmd/controller/app/options" "sigs.k8s.io/controller-runtime/pkg/manager/signals" "k8s.io/component-base/cli/flag" diff --git a/cmd/proxyserver/app/options/clientoptions.go b/cmd/proxyserver/app/options/clientoptions.go index 6d608e0db..9d7731034 100644 --- a/cmd/proxyserver/app/options/clientoptions.go +++ b/cmd/proxyserver/app/options/clientoptions.go @@ -7,9 +7,9 @@ import ( "path" "time" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/getter" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils" "github.com/spf13/pflag" + "github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/getter" + "github.com/stolostron/multicloud-operators-foundation/pkg/utils" "k8s.io/client-go/dynamic" certutil "k8s.io/client-go/util/cert" "k8s.io/client-go/util/keyutil" diff --git a/cmd/proxyserver/app/options/options.go b/cmd/proxyserver/app/options/options.go index 3172c353c..5631dc394 100644 --- a/cmd/proxyserver/app/options/options.go +++ b/cmd/proxyserver/app/options/options.go @@ -5,9 +5,9 @@ package options import ( "fmt" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/api" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/apis/openapi" "github.com/spf13/pflag" + "github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/api" + "github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/apis/openapi" openapinamer "k8s.io/apiserver/pkg/endpoints/openapi" genericapiserver "k8s.io/apiserver/pkg/server" genericapiserveroptions "k8s.io/apiserver/pkg/server/options" diff --git a/cmd/proxyserver/app/server.go b/cmd/proxyserver/app/server.go index dd08b20b7..93056682a 100644 --- a/cmd/proxyserver/app/server.go +++ b/cmd/proxyserver/app/server.go @@ -3,8 +3,8 @@ package app import ( - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/api" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/getter" + "github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/api" + "github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/getter" genericapiserver "k8s.io/apiserver/pkg/server" "k8s.io/client-go/informers" clusterv1client "open-cluster-management.io/api/client/cluster/clientset/versioned" diff --git a/cmd/proxyserver/app/start.go b/cmd/proxyserver/app/start.go index cc7e26267..0d837f452 100644 --- a/cmd/proxyserver/app/start.go +++ b/cmd/proxyserver/app/start.go @@ -6,9 +6,9 @@ import ( "strings" "time" - "github.com/open-cluster-management/multicloud-operators-foundation/cmd/proxyserver/app/options" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/controller" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/getter" + "github.com/stolostron/multicloud-operators-foundation/cmd/proxyserver/app/options" + "github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/controller" + "github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/getter" apilabels "k8s.io/apimachinery/pkg/labels" utilerrors "k8s.io/apimachinery/pkg/util/errors" "k8s.io/client-go/dynamic" diff --git a/cmd/proxyserver/proxyserver.go b/cmd/proxyserver/proxyserver.go index e139bad00..75a4668bd 100644 --- a/cmd/proxyserver/proxyserver.go +++ b/cmd/proxyserver/proxyserver.go @@ -8,9 +8,9 @@ import ( "os" "time" - "github.com/open-cluster-management/multicloud-operators-foundation/cmd/proxyserver/app" - "github.com/open-cluster-management/multicloud-operators-foundation/cmd/proxyserver/app/options" "github.com/spf13/pflag" + "github.com/stolostron/multicloud-operators-foundation/cmd/proxyserver/app" + "github.com/stolostron/multicloud-operators-foundation/cmd/proxyserver/app/options" "k8s.io/apimachinery/pkg/util/wait" "k8s.io/component-base/cli/flag" "k8s.io/component-base/logs" diff --git a/cmd/webhook/app/start.go b/cmd/webhook/app/start.go index 24205fc70..e1ead6dce 100644 --- a/cmd/webhook/app/start.go +++ b/cmd/webhook/app/start.go @@ -5,11 +5,11 @@ import ( "net/http" "time" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/webhook/clusterset" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/webhook/useridentity" hiveclient "github.com/openshift/hive/pkg/client/clientset/versioned" + "github.com/stolostron/multicloud-operators-foundation/pkg/webhook/clusterset" + "github.com/stolostron/multicloud-operators-foundation/pkg/webhook/useridentity" - "github.com/open-cluster-management/multicloud-operators-foundation/cmd/webhook/app/options" + "github.com/stolostron/multicloud-operators-foundation/cmd/webhook/app/options" "k8s.io/client-go/informers" "k8s.io/client-go/kubernetes" diff --git a/cmd/webhook/webhook.go b/cmd/webhook/webhook.go index aea9202f9..23b785511 100644 --- a/cmd/webhook/webhook.go +++ b/cmd/webhook/webhook.go @@ -8,9 +8,9 @@ import ( "os" "time" - "github.com/open-cluster-management/multicloud-operators-foundation/cmd/webhook/app" - "github.com/open-cluster-management/multicloud-operators-foundation/cmd/webhook/app/options" "github.com/spf13/pflag" + "github.com/stolostron/multicloud-operators-foundation/cmd/webhook/app" + "github.com/stolostron/multicloud-operators-foundation/cmd/webhook/app/options" "k8s.io/apimachinery/pkg/util/wait" "k8s.io/component-base/cli/flag" "k8s.io/component-base/logs" diff --git a/deploy/foundation/hub/kustomization.yaml b/deploy/foundation/hub/kustomization.yaml index bc648e400..c707095fa 100644 --- a/deploy/foundation/hub/kustomization.yaml +++ b/deploy/foundation/hub/kustomization.yaml @@ -3,8 +3,8 @@ resources: images: -- name: quay.io/open-cluster-management/multicloud-manager - newName: quay.io/open-cluster-management/multicloud-manager +- name: quay.io/stolostron/multicloud-manager + newName: quay.io/stolostron/multicloud-manager newTag: latest diff --git a/deploy/foundation/hub/patches.yaml b/deploy/foundation/hub/patches.yaml index 9ac569c88..908d5cffe 100644 --- a/deploy/foundation/hub/patches.yaml +++ b/deploy/foundation/hub/patches.yaml @@ -11,4 +11,4 @@ spec: args: - "/controller" - "--enable-agent-deploy=true" - - "--agent-addon-image=quay.io/open-cluster-management/multicloud-manager" + - "--agent-addon-image=quay.io/stolostron/multicloud-manager" diff --git a/deploy/foundation/hub/resources/controller.yaml b/deploy/foundation/hub/resources/controller.yaml index 8a151acde..8d2e5a0c0 100644 --- a/deploy/foundation/hub/resources/controller.yaml +++ b/deploy/foundation/hub/resources/controller.yaml @@ -18,7 +18,7 @@ spec: serviceAccountName: foundation-hub-sa containers: - name: ocm-controller - image: quay.io/open-cluster-management/multicloud-manager + image: quay.io/stolostron/multicloud-manager imagePullPolicy: Always args: - "/controller" diff --git a/deploy/foundation/hub/resources/proxyserver.yaml b/deploy/foundation/hub/resources/proxyserver.yaml index b5c4b52e3..c77a85286 100644 --- a/deploy/foundation/hub/resources/proxyserver.yaml +++ b/deploy/foundation/hub/resources/proxyserver.yaml @@ -18,7 +18,7 @@ spec: serviceAccountName: foundation-hub-sa containers: - name: ocm-proxyserver - image: quay.io/open-cluster-management/multicloud-manager + image: quay.io/stolostron/multicloud-manager imagePullPolicy: Always args: - "/proxyserver" diff --git a/deploy/foundation/hub/resources/webhook.yaml b/deploy/foundation/hub/resources/webhook.yaml index c8af75c8c..be4082ff5 100644 --- a/deploy/foundation/hub/resources/webhook.yaml +++ b/deploy/foundation/hub/resources/webhook.yaml @@ -21,7 +21,7 @@ spec: - /webhook - --tls-cert-file=/var/run/ocm-webhook/tls.crt - --tls-private-key-file=/var/run/ocm-webhook/tls.key - image: quay.io/open-cluster-management/multicloud-manager + image: quay.io/stolostron/multicloud-manager imagePullPolicy: Always ports: - containerPort: 8000 diff --git a/go.mod b/go.mod index d5c381b92..5eead6358 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/open-cluster-management/multicloud-operators-foundation +module github.com/stolostron/multicloud-operators-foundation go 1.17 diff --git a/hack/update-apiserver-gen.sh b/hack/update-apiserver-gen.sh index 81d72aae8..a9955d06f 100755 --- a/hack/update-apiserver-gen.sh +++ b/hack/update-apiserver-gen.sh @@ -16,7 +16,7 @@ realpath() { REPO_ROOT=$(realpath "$(dirname "${BASH_SOURCE[0]}")"/..) BINDIR="${REPO_ROOT}"/_output -SC_PKG='github.com/open-cluster-management/multicloud-operators-foundation' +SC_PKG='github.com/stolostron/multicloud-operators-foundation' # Generate defaults "${BINDIR}"/defaulter-gen "$@" \ diff --git a/hack/update-protobuf.sh b/hack/update-protobuf.sh index fbf12b664..b5ae86d81 100755 --- a/hack/update-protobuf.sh +++ b/hack/update-protobuf.sh @@ -16,7 +16,7 @@ realpath() { REPO_ROOT=$(realpath "$(dirname "${BASH_SOURCE[0]}")"/..) BINDIR="${REPO_ROOT}"/_output -SC_PKG='github.com/open-cluster-management/multicloud-operators-foundation' +SC_PKG='github.com/stolostron/multicloud-operators-foundation' if [[ "$(protoc --version)" != "libprotoc 3.0."* ]]; then echo "Generating protobuf requires protoc 3.0.x. Please download and diff --git a/pkg/addon/addon.go b/pkg/addon/addon.go index 4c200d890..788bbed34 100644 --- a/pkg/addon/addon.go +++ b/pkg/addon/addon.go @@ -6,8 +6,8 @@ import ( "fmt" "reflect" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/helpers" "github.com/openshift/library-go/pkg/assets" + "github.com/stolostron/multicloud-operators-foundation/pkg/helpers" certificatesv1 "k8s.io/api/certificates/v1" "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" diff --git a/pkg/cache/managedcluster_test.go b/pkg/cache/managedcluster_test.go index 56f4b92d6..3b95ae19e 100644 --- a/pkg/cache/managedcluster_test.go +++ b/pkg/cache/managedcluster_test.go @@ -4,7 +4,7 @@ import ( "testing" "time" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils" + "github.com/stolostron/multicloud-operators-foundation/pkg/utils" "github.com/stretchr/testify/assert" rbacv1 "k8s.io/api/rbac/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" diff --git a/pkg/cache/managedclusterset_test.go b/pkg/cache/managedclusterset_test.go index c766300fc..e4bf1d47d 100644 --- a/pkg/cache/managedclusterset_test.go +++ b/pkg/cache/managedclusterset_test.go @@ -4,7 +4,7 @@ import ( "testing" "time" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils" + "github.com/stolostron/multicloud-operators-foundation/pkg/utils" "github.com/stretchr/testify/assert" rbacv1 "k8s.io/api/rbac/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" diff --git a/pkg/cache/subjectrecord_test.go b/pkg/cache/subjectrecord_test.go index 8b7caf464..43b93b930 100644 --- a/pkg/cache/subjectrecord_test.go +++ b/pkg/cache/subjectrecord_test.go @@ -4,7 +4,7 @@ import ( "testing" "time" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils" + "github.com/stolostron/multicloud-operators-foundation/pkg/utils" "github.com/stretchr/testify/assert" "k8s.io/apimachinery/pkg/util/sets" "k8s.io/apiserver/pkg/authentication/user" diff --git a/pkg/controllers/certrotation/certrotation_controller.go b/pkg/controllers/certrotation/certrotation_controller.go index f079f34d1..95eb945ab 100644 --- a/pkg/controllers/certrotation/certrotation_controller.go +++ b/pkg/controllers/certrotation/certrotation_controller.go @@ -5,8 +5,10 @@ import ( "context" "crypto/x509" "fmt" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils" + "time" + "github.com/openshift/library-go/pkg/crypto" + "github.com/stolostron/multicloud-operators-foundation/pkg/utils" corev1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/api/errors" "k8s.io/apimachinery/pkg/runtime" @@ -22,7 +24,6 @@ import ( "sigs.k8s.io/controller-runtime/pkg/manager" "sigs.k8s.io/controller-runtime/pkg/reconcile" "sigs.k8s.io/controller-runtime/pkg/source" - "time" ) const ( diff --git a/pkg/controllers/clusterca/clusterca_controller.go b/pkg/controllers/clusterca/clusterca_controller.go index 01ad0cf8f..7a8314273 100644 --- a/pkg/controllers/clusterca/clusterca_controller.go +++ b/pkg/controllers/clusterca/clusterca_controller.go @@ -4,7 +4,7 @@ import ( "context" "reflect" - clusterinfov1beta1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" + clusterinfov1beta1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/types" "k8s.io/klog" diff --git a/pkg/controllers/clusterca/clusterca_controller_test.go b/pkg/controllers/clusterca/clusterca_controller_test.go index 9978a15ad..70724da0a 100644 --- a/pkg/controllers/clusterca/clusterca_controller_test.go +++ b/pkg/controllers/clusterca/clusterca_controller_test.go @@ -4,7 +4,7 @@ import ( "reflect" "testing" - clusterinfov1beta1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" + clusterinfov1beta1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" clusterv1 "open-cluster-management.io/api/cluster/v1" ) diff --git a/pkg/controllers/clusterinfo/autodetect_controller.go b/pkg/controllers/clusterinfo/autodetect_controller.go index 5db9a9eec..10157d296 100644 --- a/pkg/controllers/clusterinfo/autodetect_controller.go +++ b/pkg/controllers/clusterinfo/autodetect_controller.go @@ -4,8 +4,8 @@ import ( "context" "reflect" - clusterinfov1beta1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" - clusterclaims "github.com/open-cluster-management/multicloud-operators-foundation/pkg/klusterlet/clusterclaim" + clusterinfov1beta1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" + clusterclaims "github.com/stolostron/multicloud-operators-foundation/pkg/klusterlet/clusterclaim" "k8s.io/apimachinery/pkg/api/errors" "k8s.io/apimachinery/pkg/runtime" diff --git a/pkg/controllers/clusterinfo/autodetect_controller_test.go b/pkg/controllers/clusterinfo/autodetect_controller_test.go index 37936dd54..8e1929697 100644 --- a/pkg/controllers/clusterinfo/autodetect_controller_test.go +++ b/pkg/controllers/clusterinfo/autodetect_controller_test.go @@ -9,8 +9,8 @@ import ( "sigs.k8s.io/controller-runtime/pkg/client" "sigs.k8s.io/controller-runtime/pkg/client/fake" - clusterv1beta1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" - clusterclaims "github.com/open-cluster-management/multicloud-operators-foundation/pkg/klusterlet/clusterclaim" + clusterv1beta1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" + clusterclaims "github.com/stolostron/multicloud-operators-foundation/pkg/klusterlet/clusterclaim" "github.com/stretchr/testify/assert" "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/types" diff --git a/pkg/controllers/clusterinfo/capacity_controller.go b/pkg/controllers/clusterinfo/capacity_controller.go index f527842ab..e3e1ab772 100644 --- a/pkg/controllers/clusterinfo/capacity_controller.go +++ b/pkg/controllers/clusterinfo/capacity_controller.go @@ -3,7 +3,7 @@ package clusterinfo import ( "context" - clusterinfov1beta1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" + clusterinfov1beta1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" apiequality "k8s.io/apimachinery/pkg/api/equality" "k8s.io/apimachinery/pkg/api/errors" "k8s.io/apimachinery/pkg/api/resource" diff --git a/pkg/controllers/clusterinfo/capacity_controller_test.go b/pkg/controllers/clusterinfo/capacity_controller_test.go index 41572ed5b..0344b87bd 100644 --- a/pkg/controllers/clusterinfo/capacity_controller_test.go +++ b/pkg/controllers/clusterinfo/capacity_controller_test.go @@ -14,7 +14,7 @@ import ( "sigs.k8s.io/controller-runtime/pkg/client/fake" "sigs.k8s.io/controller-runtime/pkg/reconcile" - clusterv1beta1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" + clusterv1beta1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" "k8s.io/apimachinery/pkg/runtime" clusterv1 "open-cluster-management.io/api/cluster/v1" ) diff --git a/pkg/controllers/clusterinfo/clusterinfo_controller.go b/pkg/controllers/clusterinfo/clusterinfo_controller.go index 9a07ed6ec..91b94ab75 100644 --- a/pkg/controllers/clusterinfo/clusterinfo_controller.go +++ b/pkg/controllers/clusterinfo/clusterinfo_controller.go @@ -7,9 +7,9 @@ import ( corev1 "k8s.io/api/core/v1" "k8s.io/client-go/tools/cache" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils" + "github.com/stolostron/multicloud-operators-foundation/pkg/utils" - clusterinfov1beta1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" + clusterinfov1beta1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" "k8s.io/apimachinery/pkg/api/errors" "k8s.io/apimachinery/pkg/api/meta" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" diff --git a/pkg/controllers/clusterinfo/clusterinfo_controller_test.go b/pkg/controllers/clusterinfo/clusterinfo_controller_test.go index c66a47fe8..73ef6ec0a 100644 --- a/pkg/controllers/clusterinfo/clusterinfo_controller_test.go +++ b/pkg/controllers/clusterinfo/clusterinfo_controller_test.go @@ -11,7 +11,7 @@ import ( corev1 "k8s.io/api/core/v1" "github.com/onsi/gomega" - clusterinfov1beta1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" + clusterinfov1beta1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" "github.com/stretchr/testify/assert" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime" diff --git a/pkg/controllers/clusterrole/clusterrole_controller.go b/pkg/controllers/clusterrole/clusterrole_controller.go index 40e52bb8c..f91f78aec 100644 --- a/pkg/controllers/clusterrole/clusterrole_controller.go +++ b/pkg/controllers/clusterrole/clusterrole_controller.go @@ -3,7 +3,7 @@ package clusterrole import ( "context" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils" + "github.com/stolostron/multicloud-operators-foundation/pkg/utils" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime" "k8s.io/client-go/kubernetes" diff --git a/pkg/controllers/clusterrole/clusterrole_controller_test.go b/pkg/controllers/clusterrole/clusterrole_controller_test.go index 4ce0add3f..0896de121 100644 --- a/pkg/controllers/clusterrole/clusterrole_controller_test.go +++ b/pkg/controllers/clusterrole/clusterrole_controller_test.go @@ -12,8 +12,8 @@ import ( "k8s.io/client-go/rest" "github.com/onsi/gomega" - clusterv1beta1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils" + clusterv1beta1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" + "github.com/stolostron/multicloud-operators-foundation/pkg/utils" "github.com/stretchr/testify/assert" corev1 "k8s.io/api/core/v1" rbacv1 "k8s.io/api/rbac/v1" diff --git a/pkg/controllers/clusterrole/rbac.go b/pkg/controllers/clusterrole/rbac.go index 6ed6c532b..80f2bd56e 100644 --- a/pkg/controllers/clusterrole/rbac.go +++ b/pkg/controllers/clusterrole/rbac.go @@ -6,7 +6,7 @@ package clusterrole import ( - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/helpers" + "github.com/stolostron/multicloud-operators-foundation/pkg/helpers" rbacv1 "k8s.io/api/rbac/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) diff --git a/pkg/controllers/clusterset/clusterclaim/clusterclaim_controller.go b/pkg/controllers/clusterset/clusterclaim/clusterclaim_controller.go index 1396bb9f1..bea802314 100644 --- a/pkg/controllers/clusterset/clusterclaim/clusterclaim_controller.go +++ b/pkg/controllers/clusterset/clusterclaim/clusterclaim_controller.go @@ -3,9 +3,9 @@ package clusterclaim import ( "context" - utils "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils" - clustersetutils "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils/clusterset" hivev1 "github.com/openshift/hive/apis/hive/v1" + utils "github.com/stolostron/multicloud-operators-foundation/pkg/utils" + clustersetutils "github.com/stolostron/multicloud-operators-foundation/pkg/utils/clusterset" "k8s.io/apimachinery/pkg/api/errors" "k8s.io/apimachinery/pkg/types" "k8s.io/klog" diff --git a/pkg/controllers/clusterset/clusterclaim/clusterclaim_controller_test.go b/pkg/controllers/clusterset/clusterclaim/clusterclaim_controller_test.go index 66b28c312..91743f179 100644 --- a/pkg/controllers/clusterset/clusterclaim/clusterclaim_controller_test.go +++ b/pkg/controllers/clusterset/clusterclaim/clusterclaim_controller_test.go @@ -5,7 +5,7 @@ import ( "os" "testing" - utils "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils/clusterset" + utils "github.com/stolostron/multicloud-operators-foundation/pkg/utils/clusterset" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/types" diff --git a/pkg/controllers/clusterset/clusterdeployment/clusterdeployment_controller.go b/pkg/controllers/clusterset/clusterdeployment/clusterdeployment_controller.go index d0fa0e3f7..3fb5fb389 100644 --- a/pkg/controllers/clusterset/clusterdeployment/clusterdeployment_controller.go +++ b/pkg/controllers/clusterset/clusterdeployment/clusterdeployment_controller.go @@ -3,8 +3,8 @@ package clusterdeployment import ( "context" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils" - clustersetutils "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils/clusterset" + "github.com/stolostron/multicloud-operators-foundation/pkg/utils" + clustersetutils "github.com/stolostron/multicloud-operators-foundation/pkg/utils/clusterset" hivev1 "github.com/openshift/hive/apis/hive/v1" "k8s.io/apimachinery/pkg/api/errors" diff --git a/pkg/controllers/clusterset/clusterdeployment/clusterdeployment_controller_test.go b/pkg/controllers/clusterset/clusterdeployment/clusterdeployment_controller_test.go index e80b5dac9..d66cb5487 100644 --- a/pkg/controllers/clusterset/clusterdeployment/clusterdeployment_controller_test.go +++ b/pkg/controllers/clusterset/clusterdeployment/clusterdeployment_controller_test.go @@ -5,7 +5,7 @@ import ( "os" "testing" - utils "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils/clusterset" + utils "github.com/stolostron/multicloud-operators-foundation/pkg/utils/clusterset" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime" diff --git a/pkg/controllers/clusterset/clustersetmapper/clusterset_controller.go b/pkg/controllers/clusterset/clustersetmapper/clusterset_controller.go index 22aa96ef3..66b0401e3 100644 --- a/pkg/controllers/clusterset/clustersetmapper/clusterset_controller.go +++ b/pkg/controllers/clusterset/clustersetmapper/clusterset_controller.go @@ -3,9 +3,9 @@ package clustersetmapper import ( "context" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/helpers" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils" - clustersetutils "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils/clusterset" + "github.com/stolostron/multicloud-operators-foundation/pkg/helpers" + "github.com/stolostron/multicloud-operators-foundation/pkg/utils" + clustersetutils "github.com/stolostron/multicloud-operators-foundation/pkg/utils/clusterset" clusterv1 "open-cluster-management.io/api/cluster/v1" clusterv1beta1 "open-cluster-management.io/api/cluster/v1beta1" diff --git a/pkg/controllers/clusterset/clustersetmapper/clusterset_controller_test.go b/pkg/controllers/clusterset/clustersetmapper/clusterset_controller_test.go index 336c40b2a..6f894514c 100644 --- a/pkg/controllers/clusterset/clustersetmapper/clusterset_controller_test.go +++ b/pkg/controllers/clusterset/clustersetmapper/clusterset_controller_test.go @@ -7,15 +7,15 @@ import ( "testing" "time" - clustersetutils "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils/clusterset" + clustersetutils "github.com/stolostron/multicloud-operators-foundation/pkg/utils/clusterset" hivev1 "github.com/openshift/hive/apis/hive/v1" "github.com/stretchr/testify/assert" "k8s.io/client-go/rest" clusterv1 "open-cluster-management.io/api/cluster/v1" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/helpers" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils" + "github.com/stolostron/multicloud-operators-foundation/pkg/helpers" + "github.com/stolostron/multicloud-operators-foundation/pkg/utils" rbacv1 "k8s.io/api/rbac/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime" diff --git a/pkg/controllers/clusterset/clustersetmapper/rbac.go b/pkg/controllers/clusterset/clustersetmapper/rbac.go index 2370a66a1..92b2e17bf 100644 --- a/pkg/controllers/clusterset/clustersetmapper/rbac.go +++ b/pkg/controllers/clusterset/clustersetmapper/rbac.go @@ -6,8 +6,8 @@ package clustersetmapper import ( - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/helpers" - utils "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils/clusterset" + "github.com/stolostron/multicloud-operators-foundation/pkg/helpers" + utils "github.com/stolostron/multicloud-operators-foundation/pkg/utils/clusterset" rbacv1 "k8s.io/api/rbac/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) diff --git a/pkg/controllers/clusterset/syncclusterrolebinding/syncclusterrolebinding_controller.go b/pkg/controllers/clusterset/syncclusterrolebinding/syncclusterrolebinding_controller.go index 49b333c79..263aec742 100644 --- a/pkg/controllers/clusterset/syncclusterrolebinding/syncclusterrolebinding_controller.go +++ b/pkg/controllers/clusterset/syncclusterrolebinding/syncclusterrolebinding_controller.go @@ -5,10 +5,10 @@ import ( "strings" "time" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/cache" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/helpers" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils" - clustersetutils "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils/clusterset" + "github.com/stolostron/multicloud-operators-foundation/pkg/cache" + "github.com/stolostron/multicloud-operators-foundation/pkg/helpers" + "github.com/stolostron/multicloud-operators-foundation/pkg/utils" + clustersetutils "github.com/stolostron/multicloud-operators-foundation/pkg/utils/clusterset" rbacv1 "k8s.io/api/rbac/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" utilwait "k8s.io/apimachinery/pkg/util/wait" diff --git a/pkg/controllers/clusterset/syncclusterrolebinding/syncclusterrolebinding_controller_test.go b/pkg/controllers/clusterset/syncclusterrolebinding/syncclusterrolebinding_controller_test.go index 774b1231e..114bbde57 100644 --- a/pkg/controllers/clusterset/syncclusterrolebinding/syncclusterrolebinding_controller_test.go +++ b/pkg/controllers/clusterset/syncclusterrolebinding/syncclusterrolebinding_controller_test.go @@ -4,9 +4,9 @@ import ( "context" "testing" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/cache" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/helpers" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils" + "github.com/stolostron/multicloud-operators-foundation/pkg/cache" + "github.com/stolostron/multicloud-operators-foundation/pkg/helpers" + "github.com/stolostron/multicloud-operators-foundation/pkg/utils" rbacv1 "k8s.io/api/rbac/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" diff --git a/pkg/controllers/clusterset/syncrolebinding/syncrolebinding_controller.go b/pkg/controllers/clusterset/syncrolebinding/syncrolebinding_controller.go index e272fb769..7d6214308 100644 --- a/pkg/controllers/clusterset/syncrolebinding/syncrolebinding_controller.go +++ b/pkg/controllers/clusterset/syncrolebinding/syncrolebinding_controller.go @@ -4,9 +4,9 @@ import ( "context" "time" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/helpers" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils" - clustersetutils "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils/clusterset" + "github.com/stolostron/multicloud-operators-foundation/pkg/helpers" + "github.com/stolostron/multicloud-operators-foundation/pkg/utils" + clustersetutils "github.com/stolostron/multicloud-operators-foundation/pkg/utils/clusterset" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" utilwait "k8s.io/apimachinery/pkg/util/wait" @@ -15,7 +15,7 @@ import ( rbacv1 "k8s.io/api/rbac/v1" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/cache" + "github.com/stolostron/multicloud-operators-foundation/pkg/cache" ) //This controller apply clusterset related clusterrolebinding based on clustersetToClusters and clustersetAdminToSubject map diff --git a/pkg/controllers/clusterset/syncrolebinding/syncrolebinding_controller_test.go b/pkg/controllers/clusterset/syncrolebinding/syncrolebinding_controller_test.go index 88175f9c7..41712a52a 100644 --- a/pkg/controllers/clusterset/syncrolebinding/syncrolebinding_controller_test.go +++ b/pkg/controllers/clusterset/syncrolebinding/syncrolebinding_controller_test.go @@ -4,9 +4,9 @@ import ( "context" "testing" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/cache" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/helpers" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils" + "github.com/stolostron/multicloud-operators-foundation/pkg/cache" + "github.com/stolostron/multicloud-operators-foundation/pkg/helpers" + "github.com/stolostron/multicloud-operators-foundation/pkg/utils" rbacv1 "k8s.io/api/rbac/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" diff --git a/pkg/controllers/gc/garbagecollector_controller.go b/pkg/controllers/gc/garbagecollector_controller.go index bb427220e..9e238d5b5 100644 --- a/pkg/controllers/gc/garbagecollector_controller.go +++ b/pkg/controllers/gc/garbagecollector_controller.go @@ -4,8 +4,8 @@ import ( "context" "time" - actionv1beta1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/action/v1beta1" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils" + actionv1beta1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/action/v1beta1" + "github.com/stolostron/multicloud-operators-foundation/pkg/utils" "k8s.io/apimachinery/pkg/api/meta" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime" diff --git a/pkg/controllers/gc/garbagecollector_controller_test.go b/pkg/controllers/gc/garbagecollector_controller_test.go index ac595458c..e97e3d5a3 100644 --- a/pkg/controllers/gc/garbagecollector_controller_test.go +++ b/pkg/controllers/gc/garbagecollector_controller_test.go @@ -8,12 +8,12 @@ import ( "testing" "time" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils" + "github.com/stolostron/multicloud-operators-foundation/pkg/utils" rbacv1 "k8s.io/api/rbac/v1" k8sfake "k8s.io/client-go/kubernetes/fake" "github.com/onsi/gomega" - actionv1beta1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/action/v1beta1" + actionv1beta1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/action/v1beta1" "github.com/stretchr/testify/assert" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime" diff --git a/pkg/controllers/imageregistry/imageregistry_controller.go b/pkg/controllers/imageregistry/imageregistry_controller.go index e44d68e1f..264daa99e 100644 --- a/pkg/controllers/imageregistry/imageregistry_controller.go +++ b/pkg/controllers/imageregistry/imageregistry_controller.go @@ -5,8 +5,8 @@ import ( "fmt" "strings" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/imageregistry/v1alpha1" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils" + "github.com/stolostron/multicloud-operators-foundation/pkg/apis/imageregistry/v1alpha1" + "github.com/stolostron/multicloud-operators-foundation/pkg/utils" "k8s.io/apimachinery/pkg/api/equality" "k8s.io/apimachinery/pkg/api/errors" "k8s.io/apimachinery/pkg/api/meta" diff --git a/pkg/controllers/imageregistry/imageregistry_controller_test.go b/pkg/controllers/imageregistry/imageregistry_controller_test.go index e161f83d2..455eaf407 100644 --- a/pkg/controllers/imageregistry/imageregistry_controller_test.go +++ b/pkg/controllers/imageregistry/imageregistry_controller_test.go @@ -5,7 +5,7 @@ import ( "testing" "time" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/imageregistry/v1alpha1" + "github.com/stolostron/multicloud-operators-foundation/pkg/apis/imageregistry/v1alpha1" "github.com/stretchr/testify/assert" corev1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/api/meta" diff --git a/pkg/controllers/inventory/deleting_clusterdeployment_controller.go b/pkg/controllers/inventory/deleting_clusterdeployment_controller.go index 2eec056ce..47dca925c 100644 --- a/pkg/controllers/inventory/deleting_clusterdeployment_controller.go +++ b/pkg/controllers/inventory/deleting_clusterdeployment_controller.go @@ -3,9 +3,9 @@ package inventory import ( "context" - inventoryv1alpha1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/inventory/v1alpha1" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils" hivev1 "github.com/openshift/hive/apis/hive/v1" + inventoryv1alpha1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/inventory/v1alpha1" + "github.com/stolostron/multicloud-operators-foundation/pkg/utils" "k8s.io/apimachinery/pkg/api/errors" "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/types" diff --git a/pkg/controllers/inventory/deleting_clusterdeployment_controller_test.go b/pkg/controllers/inventory/deleting_clusterdeployment_controller_test.go index c0a8e053e..44a8bddf2 100644 --- a/pkg/controllers/inventory/deleting_clusterdeployment_controller_test.go +++ b/pkg/controllers/inventory/deleting_clusterdeployment_controller_test.go @@ -2,11 +2,12 @@ package inventory import ( "context" - "k8s.io/apimachinery/pkg/api/errors" "testing" - inventoryv1alpha1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/inventory/v1alpha1" + "k8s.io/apimachinery/pkg/api/errors" + hivev1 "github.com/openshift/hive/apis/hive/v1" + inventoryv1alpha1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/inventory/v1alpha1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/types" diff --git a/pkg/controllers/inventory/inventory_controller.go b/pkg/controllers/inventory/inventory_controller.go index f306f64fc..04f5ea2ec 100644 --- a/pkg/controllers/inventory/inventory_controller.go +++ b/pkg/controllers/inventory/inventory_controller.go @@ -12,11 +12,11 @@ import ( "k8s.io/client-go/util/retry" metal3v1alpha1 "github.com/metal3-io/baremetal-operator/apis/metal3.io/v1alpha1" - inventoryv1alpha1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/inventory/v1alpha1" - bmaerrors "github.com/open-cluster-management/multicloud-operators-foundation/pkg/controllers/inventory/errors" objectreferencesv1 "github.com/openshift/custom-resource-status/objectreferences/v1" hivev1 "github.com/openshift/hive/apis/hive/v1" hiveinternalv1alpha1 "github.com/openshift/hive/apis/hiveinternal/v1alpha1" + inventoryv1alpha1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/inventory/v1alpha1" + bmaerrors "github.com/stolostron/multicloud-operators-foundation/pkg/controllers/inventory/errors" corev1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/api/errors" "k8s.io/apimachinery/pkg/api/meta" @@ -33,7 +33,7 @@ import ( "sigs.k8s.io/controller-runtime/pkg/reconcile" "sigs.k8s.io/controller-runtime/pkg/source" - k8slabels "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils" + k8slabels "github.com/stolostron/multicloud-operators-foundation/pkg/utils" ) const ( diff --git a/pkg/controllers/inventory/inventory_controller_test.go b/pkg/controllers/inventory/inventory_controller_test.go index 216a6460a..774fa1f04 100644 --- a/pkg/controllers/inventory/inventory_controller_test.go +++ b/pkg/controllers/inventory/inventory_controller_test.go @@ -7,10 +7,10 @@ import ( "testing" "time" - inventoryv1alpha1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/inventory/v1alpha1" - bmaerrors "github.com/open-cluster-management/multicloud-operators-foundation/pkg/controllers/inventory/errors" hivev1 "github.com/openshift/hive/apis/hive/v1" hiveinternalv1alpha1 "github.com/openshift/hive/apis/hiveinternal/v1alpha1" + inventoryv1alpha1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/inventory/v1alpha1" + bmaerrors "github.com/stolostron/multicloud-operators-foundation/pkg/controllers/inventory/errors" "github.com/stretchr/testify/assert" corev1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/api/meta" diff --git a/pkg/helpers/imageregistry/defaultclient.go b/pkg/helpers/imageregistry/defaultclient.go index 77cf2abd5..0d76706e2 100644 --- a/pkg/helpers/imageregistry/defaultclient.go +++ b/pkg/helpers/imageregistry/defaultclient.go @@ -5,7 +5,7 @@ import ( "fmt" "strings" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/imageregistry/v1alpha1" + "github.com/stolostron/multicloud-operators-foundation/pkg/apis/imageregistry/v1alpha1" corev1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/types" diff --git a/pkg/helpers/imageregistry/defaultclient_test.go b/pkg/helpers/imageregistry/defaultclient_test.go index 79f4182c6..783ca548f 100644 --- a/pkg/helpers/imageregistry/defaultclient_test.go +++ b/pkg/helpers/imageregistry/defaultclient_test.go @@ -4,7 +4,7 @@ import ( "fmt" "testing" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/imageregistry/v1alpha1" + "github.com/stolostron/multicloud-operators-foundation/pkg/apis/imageregistry/v1alpha1" corev1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/api/equality" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" diff --git a/pkg/helpers/imageregistry/dynamicclient.go b/pkg/helpers/imageregistry/dynamicclient.go index 5fb521ad3..896cdf6aa 100644 --- a/pkg/helpers/imageregistry/dynamicclient.go +++ b/pkg/helpers/imageregistry/dynamicclient.go @@ -5,7 +5,7 @@ import ( "fmt" "strings" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/imageregistry/v1alpha1" + "github.com/stolostron/multicloud-operators-foundation/pkg/apis/imageregistry/v1alpha1" corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" diff --git a/pkg/helpers/imageregistry/dynimacclient_test.go b/pkg/helpers/imageregistry/dynimacclient_test.go index 88f76de83..3d8adc6d5 100644 --- a/pkg/helpers/imageregistry/dynimacclient_test.go +++ b/pkg/helpers/imageregistry/dynimacclient_test.go @@ -4,7 +4,7 @@ import ( "fmt" "testing" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/imageregistry/v1alpha1" + "github.com/stolostron/multicloud-operators-foundation/pkg/apis/imageregistry/v1alpha1" corev1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/api/equality" "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" diff --git a/pkg/helpers/rbac_helpers_test.go b/pkg/helpers/rbac_helpers_test.go index d351b7a95..98f7ae38e 100644 --- a/pkg/helpers/rbac_helpers_test.go +++ b/pkg/helpers/rbac_helpers_test.go @@ -3,7 +3,7 @@ package helpers import ( "testing" - clusterv1beta1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" + clusterv1beta1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" ) func TestRule(t *testing.T) { diff --git a/pkg/klusterlet/action/action_controller.go b/pkg/klusterlet/action/action_controller.go index bfc848620..c1c8d30ff 100644 --- a/pkg/klusterlet/action/action_controller.go +++ b/pkg/klusterlet/action/action_controller.go @@ -4,8 +4,8 @@ import ( "context" "github.com/go-logr/logr" - actionv1beta1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/action/v1beta1" - restutils "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils/rest" + actionv1beta1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/action/v1beta1" + restutils "github.com/stolostron/multicloud-operators-foundation/pkg/utils/rest" "k8s.io/apimachinery/pkg/api/meta" "k8s.io/apimachinery/pkg/runtime" "k8s.io/client-go/dynamic" diff --git a/pkg/klusterlet/action/action_controller_suite_test.go b/pkg/klusterlet/action/action_controller_suite_test.go index 05fa71c9a..03d74dce0 100644 --- a/pkg/klusterlet/action/action_controller_suite_test.go +++ b/pkg/klusterlet/action/action_controller_suite_test.go @@ -9,7 +9,7 @@ import ( "testing" "github.com/onsi/gomega" - actionv1beta1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/action/v1beta1" + actionv1beta1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/action/v1beta1" "k8s.io/client-go/kubernetes/scheme" "k8s.io/client-go/rest" "sigs.k8s.io/controller-runtime/pkg/envtest" diff --git a/pkg/klusterlet/action/action_controller_test.go b/pkg/klusterlet/action/action_controller_test.go index 558281c72..ef56126d3 100644 --- a/pkg/klusterlet/action/action_controller_test.go +++ b/pkg/klusterlet/action/action_controller_test.go @@ -10,8 +10,8 @@ import ( "sigs.k8s.io/controller-runtime/pkg/client" "sigs.k8s.io/controller-runtime/pkg/manager" - actionv1beta1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/action/v1beta1" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils/rest" + actionv1beta1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/action/v1beta1" + "github.com/stolostron/multicloud-operators-foundation/pkg/utils/rest" ) var c client.Client diff --git a/pkg/klusterlet/action/handle_action.go b/pkg/klusterlet/action/handle_action.go index 2fba8b116..2be367c8b 100644 --- a/pkg/klusterlet/action/handle_action.go +++ b/pkg/klusterlet/action/handle_action.go @@ -7,8 +7,8 @@ import ( "k8s.io/apimachinery/pkg/api/meta" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - actionv1beta1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/action/v1beta1" - restutils "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils/rest" + actionv1beta1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/action/v1beta1" + restutils "github.com/stolostron/multicloud-operators-foundation/pkg/utils/rest" "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/runtime/schema" diff --git a/pkg/klusterlet/action/handle_action_test.go b/pkg/klusterlet/action/handle_action_test.go index a04b15e8e..a59991f2d 100644 --- a/pkg/klusterlet/action/handle_action_test.go +++ b/pkg/klusterlet/action/handle_action_test.go @@ -3,8 +3,8 @@ package controllers import ( "testing" - actionv1beta1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/action/v1beta1" - restutils "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils/rest" + actionv1beta1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/action/v1beta1" + restutils "github.com/stolostron/multicloud-operators-foundation/pkg/utils/rest" corev1 "k8s.io/api/core/v1" extensionv1beta1 "k8s.io/api/extensions/v1beta1" "k8s.io/apimachinery/pkg/runtime" diff --git a/pkg/klusterlet/agent/agent.go b/pkg/klusterlet/agent/agent.go index 5070723a7..61f99202a 100644 --- a/pkg/klusterlet/agent/agent.go +++ b/pkg/klusterlet/agent/agent.go @@ -7,8 +7,8 @@ import ( "net" "reflect" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/klusterlet/log/drivers" + "github.com/stolostron/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" + "github.com/stolostron/multicloud-operators-foundation/pkg/klusterlet/log/drivers" "k8s.io/client-go/kubernetes" certutil "k8s.io/client-go/util/cert" "k8s.io/klog" diff --git a/pkg/klusterlet/agent/agent_test.go b/pkg/klusterlet/agent/agent_test.go index 3e453b670..c6ec7cb74 100644 --- a/pkg/klusterlet/agent/agent_test.go +++ b/pkg/klusterlet/agent/agent_test.go @@ -5,7 +5,7 @@ import ( "encoding/base64" "testing" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" + "github.com/stolostron/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/util/intstr" diff --git a/pkg/klusterlet/agent/handle.go b/pkg/klusterlet/agent/handle.go index 189dd4182..406eb7a1b 100644 --- a/pkg/klusterlet/agent/handle.go +++ b/pkg/klusterlet/agent/handle.go @@ -7,7 +7,7 @@ import ( "net/http" restful "github.com/emicklei/go-restful" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/klusterlet/log/drivers" + "github.com/stolostron/multicloud-operators-foundation/pkg/klusterlet/log/drivers" "k8s.io/apiserver/pkg/authentication/authenticator" "k8s.io/apiserver/pkg/authorization/authorizer" "k8s.io/apiserver/pkg/util/flushwriter" diff --git a/pkg/klusterlet/agent/server.go b/pkg/klusterlet/agent/server.go index 5334d9092..9f87c71c4 100644 --- a/pkg/klusterlet/agent/server.go +++ b/pkg/klusterlet/agent/server.go @@ -8,7 +8,7 @@ import ( "strconv" "sync" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/klusterlet/log/drivers" + "github.com/stolostron/multicloud-operators-foundation/pkg/klusterlet/log/drivers" "k8s.io/klog" ) diff --git a/pkg/klusterlet/clusterclaim/clusterclaim_controller.go b/pkg/klusterlet/clusterclaim/clusterclaim_controller.go index b28761a75..cbaa263f4 100644 --- a/pkg/klusterlet/clusterclaim/clusterclaim_controller.go +++ b/pkg/klusterlet/clusterclaim/clusterclaim_controller.go @@ -5,11 +5,11 @@ import ( "fmt" "reflect" - clusterv1beta1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" + clusterv1beta1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" "sigs.k8s.io/controller-runtime/pkg/client" "github.com/go-logr/logr" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils" + "github.com/stolostron/multicloud-operators-foundation/pkg/utils" "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/util/sets" diff --git a/pkg/klusterlet/clusterclaim/clusterclaimer.go b/pkg/klusterlet/clusterclaim/clusterclaimer.go index 0a13de666..ae9cf7185 100644 --- a/pkg/klusterlet/clusterclaim/clusterclaimer.go +++ b/pkg/klusterlet/clusterclaim/clusterclaimer.go @@ -7,9 +7,9 @@ import ( "strconv" "strings" - clusterv1beta1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" configv1 "github.com/openshift/api/config/v1" openshiftclientset "github.com/openshift/client-go/config/clientset/versioned" + clusterv1beta1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" corev1 "k8s.io/api/core/v1" apierrors "k8s.io/apimachinery/pkg/api/errors" "k8s.io/apimachinery/pkg/api/meta" diff --git a/pkg/klusterlet/clusterclaim/clusterclaimer_test.go b/pkg/klusterlet/clusterclaim/clusterclaimer_test.go index 523c3d385..ae53554bd 100644 --- a/pkg/klusterlet/clusterclaim/clusterclaimer_test.go +++ b/pkg/klusterlet/clusterclaim/clusterclaimer_test.go @@ -3,10 +3,10 @@ package clusterclaim import ( "testing" - clusterv1beta1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" apiconfigv1 "github.com/openshift/api/config/v1" openshiftclientset "github.com/openshift/client-go/config/clientset/versioned" configfake "github.com/openshift/client-go/config/clientset/versioned/fake" + clusterv1beta1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" "github.com/stretchr/testify/assert" corev1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/api/meta" diff --git a/pkg/klusterlet/clusterinfo/clusterinfo_controller.go b/pkg/klusterlet/clusterinfo/clusterinfo_controller.go index 88b27ac38..8166232a1 100644 --- a/pkg/klusterlet/clusterinfo/clusterinfo_controller.go +++ b/pkg/klusterlet/clusterinfo/clusterinfo_controller.go @@ -7,18 +7,18 @@ import ( "sort" "time" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils" openshiftclientset "github.com/openshift/client-go/config/clientset/versioned" + "github.com/stolostron/multicloud-operators-foundation/pkg/utils" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/klusterlet/clusterclaim" + "github.com/stolostron/multicloud-operators-foundation/pkg/klusterlet/clusterclaim" clusterv1alpha1informer "open-cluster-management.io/api/client/cluster/informers/externalversions/cluster/v1alpha1" clusterv1alpha1lister "open-cluster-management.io/api/client/cluster/listers/cluster/v1alpha1" "github.com/go-logr/logr" - clusterv1beta1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/klusterlet/agent" routev1 "github.com/openshift/client-go/route/clientset/versioned" "github.com/prometheus/common/log" + clusterv1beta1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" + "github.com/stolostron/multicloud-operators-foundation/pkg/klusterlet/agent" corev1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/api/equality" "k8s.io/apimachinery/pkg/api/meta" diff --git a/pkg/klusterlet/clusterinfo/clusterinfo_controller_test.go b/pkg/klusterlet/clusterinfo/clusterinfo_controller_test.go index a45116bef..bf5b46de1 100644 --- a/pkg/klusterlet/clusterinfo/clusterinfo_controller_test.go +++ b/pkg/klusterlet/clusterinfo/clusterinfo_controller_test.go @@ -15,11 +15,11 @@ import ( clusterv1 "open-cluster-management.io/api/cluster/v1" tlog "github.com/go-logr/logr/testing" - clusterv1beta1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/klusterlet/agent" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/klusterlet/clusterclaim" configfake "github.com/openshift/client-go/config/clientset/versioned/fake" routefake "github.com/openshift/client-go/route/clientset/versioned/fake" + clusterv1beta1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" + "github.com/stolostron/multicloud-operators-foundation/pkg/klusterlet/agent" + "github.com/stolostron/multicloud-operators-foundation/pkg/klusterlet/clusterclaim" "github.com/stretchr/testify/assert" corev1 "k8s.io/api/core/v1" extensionv1beta1 "k8s.io/api/extensions/v1beta1" diff --git a/pkg/klusterlet/nodecollector/nodecollecter.go b/pkg/klusterlet/nodecollector/nodecollecter.go index 43ed75534..80000e3d7 100644 --- a/pkg/klusterlet/nodecollector/nodecollecter.go +++ b/pkg/klusterlet/nodecollector/nodecollecter.go @@ -13,11 +13,11 @@ import ( "strings" "time" - clusterv1beta1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils" prometheusapi "github.com/prometheus/client_golang/api" prometheusv1 "github.com/prometheus/client_golang/api/prometheus/v1" prometheusmodel "github.com/prometheus/common/model" + clusterv1beta1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" + "github.com/stolostron/multicloud-operators-foundation/pkg/utils" corev1 "k8s.io/api/core/v1" apiequality "k8s.io/apimachinery/pkg/api/equality" "k8s.io/apimachinery/pkg/api/errors" diff --git a/pkg/klusterlet/nodecollector/nodecollector_test.go b/pkg/klusterlet/nodecollector/nodecollector_test.go index b5abd0b50..10f055a0d 100644 --- a/pkg/klusterlet/nodecollector/nodecollector_test.go +++ b/pkg/klusterlet/nodecollector/nodecollector_test.go @@ -14,9 +14,9 @@ import ( "net/http" "net/http/httptest" - clusterv1beta1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" prometheusv1 "github.com/prometheus/client_golang/api/prometheus/v1" "github.com/prometheus/common/model" + clusterv1beta1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" corev1 "k8s.io/api/core/v1" apiequality "k8s.io/apimachinery/pkg/api/equality" "k8s.io/apimachinery/pkg/api/resource" diff --git a/pkg/klusterlet/view/view_controller.go b/pkg/klusterlet/view/view_controller.go index 598a980ec..e7689582b 100644 --- a/pkg/klusterlet/view/view_controller.go +++ b/pkg/klusterlet/view/view_controller.go @@ -8,8 +8,8 @@ import ( "time" "github.com/go-logr/logr" - viewv1beta1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/view/v1beta1" - restutil "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils/rest" + viewv1beta1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/view/v1beta1" + restutil "github.com/stolostron/multicloud-operators-foundation/pkg/utils/rest" "k8s.io/apimachinery/pkg/api/meta" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime" diff --git a/pkg/klusterlet/view/view_controller_test.go b/pkg/klusterlet/view/view_controller_test.go index 1757255d7..dd7e7cd05 100644 --- a/pkg/klusterlet/view/view_controller_test.go +++ b/pkg/klusterlet/view/view_controller_test.go @@ -8,7 +8,7 @@ import ( "time" tlog "github.com/go-logr/logr/testing" - viewv1beta1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/view/v1beta1" + viewv1beta1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/view/v1beta1" "github.com/stretchr/testify/assert" "k8s.io/apimachinery/pkg/api/meta" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" diff --git a/pkg/proxyserver/api/register.go b/pkg/proxyserver/api/register.go index 7781566a0..56cb48b2b 100644 --- a/pkg/proxyserver/api/register.go +++ b/pkg/proxyserver/api/register.go @@ -4,23 +4,23 @@ import ( "context" "time" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/cache" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/rest/log" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/rest/managedcluster" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/rest/managedclusterset" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/rest/proxy" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils" + "github.com/stolostron/multicloud-operators-foundation/pkg/cache" + "github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/rest/log" + "github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/rest/managedcluster" + "github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/rest/managedclusterset" + "github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/rest/proxy" + "github.com/stolostron/multicloud-operators-foundation/pkg/utils" "k8s.io/client-go/informers" clusterclient "open-cluster-management.io/api/client/cluster/clientset/versioned" clusterinformers "open-cluster-management.io/api/client/cluster/informers/externalversions" - apisclusterview "github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/apis/clusterview" - clusterviewv1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/apis/clusterview/v1" - clusterviewv1alpha1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/apis/clusterview/v1alpha1" + apisclusterview "github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/apis/clusterview" + clusterviewv1 "github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/apis/clusterview/v1" + clusterviewv1alpha1 "github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/apis/clusterview/v1alpha1" - apisproxy "github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/apis/proxy" - proxyv1beta1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/apis/proxy/v1beta1" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/getter" + apisproxy "github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/apis/proxy" + proxyv1beta1 "github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/apis/proxy/v1beta1" + "github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/getter" metainternalversion "k8s.io/apimachinery/pkg/apis/meta/internalversion" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime" diff --git a/pkg/proxyserver/apis/clusterview/install.go b/pkg/proxyserver/apis/clusterview/install.go index dcb815c1c..c43033484 100644 --- a/pkg/proxyserver/apis/clusterview/install.go +++ b/pkg/proxyserver/apis/clusterview/install.go @@ -1,8 +1,8 @@ package clusterview import ( - clusterviewv1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/apis/clusterview/v1" - clusterviewv1alpha1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/apis/clusterview/v1alpha1" + clusterviewv1 "github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/apis/clusterview/v1" + clusterviewv1alpha1 "github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/apis/clusterview/v1alpha1" metainternalversion "k8s.io/apimachinery/pkg/apis/meta/internalversion" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" diff --git a/pkg/proxyserver/apis/openapi/openapi_generated.go b/pkg/proxyserver/apis/openapi/openapi_generated.go index ffbd82166..a23070c61 100644 --- a/pkg/proxyserver/apis/openapi/openapi_generated.go +++ b/pkg/proxyserver/apis/openapi/openapi_generated.go @@ -18,76 +18,76 @@ import ( func GetOpenAPIDefinitions(ref common.ReferenceCallback) map[string]common.OpenAPIDefinition { return map[string]common.OpenAPIDefinition{ - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/apis/proxy/v1beta1.ClusterStatus": schema_proxyserver_apis_proxy_v1beta1_ClusterStatus(ref), - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/apis/proxy/v1beta1.ClusterStatusList": schema_proxyserver_apis_proxy_v1beta1_ClusterStatusList(ref), - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/apis/proxy/v1beta1.ClusterStatusProxyOptions": schema_proxyserver_apis_proxy_v1beta1_ClusterStatusProxyOptions(ref), - "k8s.io/apimachinery/pkg/api/resource.Quantity": schema_apimachinery_pkg_api_resource_Quantity(ref), - "k8s.io/apimachinery/pkg/api/resource.int64Amount": schema_apimachinery_pkg_api_resource_int64Amount(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.APIGroup": schema_pkg_apis_meta_v1_APIGroup(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.APIGroupList": schema_pkg_apis_meta_v1_APIGroupList(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.APIResource": schema_pkg_apis_meta_v1_APIResource(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.APIResourceList": schema_pkg_apis_meta_v1_APIResourceList(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.APIVersions": schema_pkg_apis_meta_v1_APIVersions(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.ApplyOptions": schema_pkg_apis_meta_v1_ApplyOptions(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.Condition": schema_pkg_apis_meta_v1_Condition(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.CreateOptions": schema_pkg_apis_meta_v1_CreateOptions(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.DeleteOptions": schema_pkg_apis_meta_v1_DeleteOptions(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.Duration": schema_pkg_apis_meta_v1_Duration(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.FieldsV1": schema_pkg_apis_meta_v1_FieldsV1(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.GetOptions": schema_pkg_apis_meta_v1_GetOptions(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.GroupKind": schema_pkg_apis_meta_v1_GroupKind(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.GroupResource": schema_pkg_apis_meta_v1_GroupResource(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.GroupVersion": schema_pkg_apis_meta_v1_GroupVersion(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.GroupVersionForDiscovery": schema_pkg_apis_meta_v1_GroupVersionForDiscovery(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.GroupVersionKind": schema_pkg_apis_meta_v1_GroupVersionKind(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.GroupVersionResource": schema_pkg_apis_meta_v1_GroupVersionResource(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.InternalEvent": schema_pkg_apis_meta_v1_InternalEvent(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector": schema_pkg_apis_meta_v1_LabelSelector(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelectorRequirement": schema_pkg_apis_meta_v1_LabelSelectorRequirement(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.List": schema_pkg_apis_meta_v1_List(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta": schema_pkg_apis_meta_v1_ListMeta(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.ListOptions": schema_pkg_apis_meta_v1_ListOptions(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.ManagedFieldsEntry": schema_pkg_apis_meta_v1_ManagedFieldsEntry(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.MicroTime": schema_pkg_apis_meta_v1_MicroTime(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta": schema_pkg_apis_meta_v1_ObjectMeta(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.OwnerReference": schema_pkg_apis_meta_v1_OwnerReference(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.PartialObjectMetadata": schema_pkg_apis_meta_v1_PartialObjectMetadata(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.PartialObjectMetadataList": schema_pkg_apis_meta_v1_PartialObjectMetadataList(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.Patch": schema_pkg_apis_meta_v1_Patch(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.PatchOptions": schema_pkg_apis_meta_v1_PatchOptions(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.Preconditions": schema_pkg_apis_meta_v1_Preconditions(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.RootPaths": schema_pkg_apis_meta_v1_RootPaths(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.ServerAddressByClientCIDR": schema_pkg_apis_meta_v1_ServerAddressByClientCIDR(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.Status": schema_pkg_apis_meta_v1_Status(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.StatusCause": schema_pkg_apis_meta_v1_StatusCause(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.StatusDetails": schema_pkg_apis_meta_v1_StatusDetails(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.Table": schema_pkg_apis_meta_v1_Table(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.TableColumnDefinition": schema_pkg_apis_meta_v1_TableColumnDefinition(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.TableOptions": schema_pkg_apis_meta_v1_TableOptions(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.TableRow": schema_pkg_apis_meta_v1_TableRow(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.TableRowCondition": schema_pkg_apis_meta_v1_TableRowCondition(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.Time": schema_pkg_apis_meta_v1_Time(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.Timestamp": schema_pkg_apis_meta_v1_Timestamp(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.TypeMeta": schema_pkg_apis_meta_v1_TypeMeta(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.UpdateOptions": schema_pkg_apis_meta_v1_UpdateOptions(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.WatchEvent": schema_pkg_apis_meta_v1_WatchEvent(ref), - "k8s.io/apimachinery/pkg/runtime.RawExtension": schema_k8sio_apimachinery_pkg_runtime_RawExtension(ref), - "k8s.io/apimachinery/pkg/runtime.TypeMeta": schema_k8sio_apimachinery_pkg_runtime_TypeMeta(ref), - "k8s.io/apimachinery/pkg/runtime.Unknown": schema_k8sio_apimachinery_pkg_runtime_Unknown(ref), - "open-cluster-management.io/api/cluster/v1.ClientConfig": schema_open_cluster_managementio_api_cluster_v1_ClientConfig(ref), - "open-cluster-management.io/api/cluster/v1.ManagedCluster": schema_open_cluster_managementio_api_cluster_v1_ManagedCluster(ref), - "open-cluster-management.io/api/cluster/v1.ManagedClusterClaim": schema_open_cluster_managementio_api_cluster_v1_ManagedClusterClaim(ref), - "open-cluster-management.io/api/cluster/v1.ManagedClusterList": schema_open_cluster_managementio_api_cluster_v1_ManagedClusterList(ref), - "open-cluster-management.io/api/cluster/v1.ManagedClusterSpec": schema_open_cluster_managementio_api_cluster_v1_ManagedClusterSpec(ref), - "open-cluster-management.io/api/cluster/v1.ManagedClusterStatus": schema_open_cluster_managementio_api_cluster_v1_ManagedClusterStatus(ref), - "open-cluster-management.io/api/cluster/v1.ManagedClusterVersion": schema_open_cluster_managementio_api_cluster_v1_ManagedClusterVersion(ref), - "open-cluster-management.io/api/cluster/v1beta1.ManagedClusterSet": schema_open_cluster_managementio_api_cluster_v1beta1_ManagedClusterSet(ref), - "open-cluster-management.io/api/cluster/v1beta1.ManagedClusterSetBinding": schema_open_cluster_managementio_api_cluster_v1beta1_ManagedClusterSetBinding(ref), - "open-cluster-management.io/api/cluster/v1beta1.ManagedClusterSetBindingList": schema_open_cluster_managementio_api_cluster_v1beta1_ManagedClusterSetBindingList(ref), - "open-cluster-management.io/api/cluster/v1beta1.ManagedClusterSetBindingSpec": schema_open_cluster_managementio_api_cluster_v1beta1_ManagedClusterSetBindingSpec(ref), - "open-cluster-management.io/api/cluster/v1beta1.ManagedClusterSetList": schema_open_cluster_managementio_api_cluster_v1beta1_ManagedClusterSetList(ref), - "open-cluster-management.io/api/cluster/v1beta1.ManagedClusterSetSpec": schema_open_cluster_managementio_api_cluster_v1beta1_ManagedClusterSetSpec(ref), - "open-cluster-management.io/api/cluster/v1beta1.ManagedClusterSetStatus": schema_open_cluster_managementio_api_cluster_v1beta1_ManagedClusterSetStatus(ref), + "github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/apis/proxy/v1beta1.ClusterStatus": schema_proxyserver_apis_proxy_v1beta1_ClusterStatus(ref), + "github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/apis/proxy/v1beta1.ClusterStatusList": schema_proxyserver_apis_proxy_v1beta1_ClusterStatusList(ref), + "github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/apis/proxy/v1beta1.ClusterStatusProxyOptions": schema_proxyserver_apis_proxy_v1beta1_ClusterStatusProxyOptions(ref), + "k8s.io/apimachinery/pkg/api/resource.Quantity": schema_apimachinery_pkg_api_resource_Quantity(ref), + "k8s.io/apimachinery/pkg/api/resource.int64Amount": schema_apimachinery_pkg_api_resource_int64Amount(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.APIGroup": schema_pkg_apis_meta_v1_APIGroup(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.APIGroupList": schema_pkg_apis_meta_v1_APIGroupList(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.APIResource": schema_pkg_apis_meta_v1_APIResource(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.APIResourceList": schema_pkg_apis_meta_v1_APIResourceList(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.APIVersions": schema_pkg_apis_meta_v1_APIVersions(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.ApplyOptions": schema_pkg_apis_meta_v1_ApplyOptions(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.Condition": schema_pkg_apis_meta_v1_Condition(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.CreateOptions": schema_pkg_apis_meta_v1_CreateOptions(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.DeleteOptions": schema_pkg_apis_meta_v1_DeleteOptions(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.Duration": schema_pkg_apis_meta_v1_Duration(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.FieldsV1": schema_pkg_apis_meta_v1_FieldsV1(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.GetOptions": schema_pkg_apis_meta_v1_GetOptions(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.GroupKind": schema_pkg_apis_meta_v1_GroupKind(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.GroupResource": schema_pkg_apis_meta_v1_GroupResource(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.GroupVersion": schema_pkg_apis_meta_v1_GroupVersion(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.GroupVersionForDiscovery": schema_pkg_apis_meta_v1_GroupVersionForDiscovery(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.GroupVersionKind": schema_pkg_apis_meta_v1_GroupVersionKind(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.GroupVersionResource": schema_pkg_apis_meta_v1_GroupVersionResource(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.InternalEvent": schema_pkg_apis_meta_v1_InternalEvent(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector": schema_pkg_apis_meta_v1_LabelSelector(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelectorRequirement": schema_pkg_apis_meta_v1_LabelSelectorRequirement(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.List": schema_pkg_apis_meta_v1_List(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta": schema_pkg_apis_meta_v1_ListMeta(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.ListOptions": schema_pkg_apis_meta_v1_ListOptions(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.ManagedFieldsEntry": schema_pkg_apis_meta_v1_ManagedFieldsEntry(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.MicroTime": schema_pkg_apis_meta_v1_MicroTime(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta": schema_pkg_apis_meta_v1_ObjectMeta(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.OwnerReference": schema_pkg_apis_meta_v1_OwnerReference(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.PartialObjectMetadata": schema_pkg_apis_meta_v1_PartialObjectMetadata(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.PartialObjectMetadataList": schema_pkg_apis_meta_v1_PartialObjectMetadataList(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.Patch": schema_pkg_apis_meta_v1_Patch(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.PatchOptions": schema_pkg_apis_meta_v1_PatchOptions(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.Preconditions": schema_pkg_apis_meta_v1_Preconditions(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.RootPaths": schema_pkg_apis_meta_v1_RootPaths(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.ServerAddressByClientCIDR": schema_pkg_apis_meta_v1_ServerAddressByClientCIDR(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.Status": schema_pkg_apis_meta_v1_Status(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.StatusCause": schema_pkg_apis_meta_v1_StatusCause(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.StatusDetails": schema_pkg_apis_meta_v1_StatusDetails(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.Table": schema_pkg_apis_meta_v1_Table(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.TableColumnDefinition": schema_pkg_apis_meta_v1_TableColumnDefinition(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.TableOptions": schema_pkg_apis_meta_v1_TableOptions(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.TableRow": schema_pkg_apis_meta_v1_TableRow(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.TableRowCondition": schema_pkg_apis_meta_v1_TableRowCondition(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.Time": schema_pkg_apis_meta_v1_Time(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.Timestamp": schema_pkg_apis_meta_v1_Timestamp(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.TypeMeta": schema_pkg_apis_meta_v1_TypeMeta(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.UpdateOptions": schema_pkg_apis_meta_v1_UpdateOptions(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.WatchEvent": schema_pkg_apis_meta_v1_WatchEvent(ref), + "k8s.io/apimachinery/pkg/runtime.RawExtension": schema_k8sio_apimachinery_pkg_runtime_RawExtension(ref), + "k8s.io/apimachinery/pkg/runtime.TypeMeta": schema_k8sio_apimachinery_pkg_runtime_TypeMeta(ref), + "k8s.io/apimachinery/pkg/runtime.Unknown": schema_k8sio_apimachinery_pkg_runtime_Unknown(ref), + "open-cluster-management.io/api/cluster/v1.ClientConfig": schema_open_cluster_managementio_api_cluster_v1_ClientConfig(ref), + "open-cluster-management.io/api/cluster/v1.ManagedCluster": schema_open_cluster_managementio_api_cluster_v1_ManagedCluster(ref), + "open-cluster-management.io/api/cluster/v1.ManagedClusterClaim": schema_open_cluster_managementio_api_cluster_v1_ManagedClusterClaim(ref), + "open-cluster-management.io/api/cluster/v1.ManagedClusterList": schema_open_cluster_managementio_api_cluster_v1_ManagedClusterList(ref), + "open-cluster-management.io/api/cluster/v1.ManagedClusterSpec": schema_open_cluster_managementio_api_cluster_v1_ManagedClusterSpec(ref), + "open-cluster-management.io/api/cluster/v1.ManagedClusterStatus": schema_open_cluster_managementio_api_cluster_v1_ManagedClusterStatus(ref), + "open-cluster-management.io/api/cluster/v1.ManagedClusterVersion": schema_open_cluster_managementio_api_cluster_v1_ManagedClusterVersion(ref), + "open-cluster-management.io/api/cluster/v1beta1.ManagedClusterSet": schema_open_cluster_managementio_api_cluster_v1beta1_ManagedClusterSet(ref), + "open-cluster-management.io/api/cluster/v1beta1.ManagedClusterSetBinding": schema_open_cluster_managementio_api_cluster_v1beta1_ManagedClusterSetBinding(ref), + "open-cluster-management.io/api/cluster/v1beta1.ManagedClusterSetBindingList": schema_open_cluster_managementio_api_cluster_v1beta1_ManagedClusterSetBindingList(ref), + "open-cluster-management.io/api/cluster/v1beta1.ManagedClusterSetBindingSpec": schema_open_cluster_managementio_api_cluster_v1beta1_ManagedClusterSetBindingSpec(ref), + "open-cluster-management.io/api/cluster/v1beta1.ManagedClusterSetList": schema_open_cluster_managementio_api_cluster_v1beta1_ManagedClusterSetList(ref), + "open-cluster-management.io/api/cluster/v1beta1.ManagedClusterSetSpec": schema_open_cluster_managementio_api_cluster_v1beta1_ManagedClusterSetSpec(ref), + "open-cluster-management.io/api/cluster/v1beta1.ManagedClusterSetStatus": schema_open_cluster_managementio_api_cluster_v1beta1_ManagedClusterSetStatus(ref), } } @@ -163,7 +163,7 @@ func schema_proxyserver_apis_proxy_v1beta1_ClusterStatusList(ref common.Referenc Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/apis/proxy/v1beta1.ClusterStatus"), + Ref: ref("github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/apis/proxy/v1beta1.ClusterStatus"), }, }, }, @@ -174,7 +174,7 @@ func schema_proxyserver_apis_proxy_v1beta1_ClusterStatusList(ref common.Referenc }, }, Dependencies: []string{ - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/apis/proxy/v1beta1.ClusterStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/apis/proxy/v1beta1.ClusterStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } diff --git a/pkg/proxyserver/apis/proxy/install.go b/pkg/proxyserver/apis/proxy/install.go index 29521ece3..95d4f0455 100644 --- a/pkg/proxyserver/apis/proxy/install.go +++ b/pkg/proxyserver/apis/proxy/install.go @@ -1,7 +1,7 @@ package proxy import ( - proxyv1beta1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/apis/proxy/v1beta1" + proxyv1beta1 "github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/apis/proxy/v1beta1" "k8s.io/apimachinery/pkg/runtime" utilruntime "k8s.io/apimachinery/pkg/util/runtime" ) diff --git a/pkg/proxyserver/apis/proxy/v1beta1/doc.go b/pkg/proxyserver/apis/proxy/v1beta1/doc.go index 54f774537..55ca933c5 100644 --- a/pkg/proxyserver/apis/proxy/v1beta1/doc.go +++ b/pkg/proxyserver/apis/proxy/v1beta1/doc.go @@ -1,6 +1,6 @@ // +k8s:deepcopy-gen=package,register // +k8s:openapi-gen=true -// +k8s:conversion-gen=github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/apis/proxy +// +k8s:conversion-gen=github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/apis/proxy // +k8s:defaulter-gen=TypeMeta // Package v1beta1 is the v1beta1 version of the API. diff --git a/pkg/proxyserver/apis/proxy/v1beta1/generated.pb.go b/pkg/proxyserver/apis/proxy/v1beta1/generated.pb.go index d057d2a57..1ef9afbf4 100644 --- a/pkg/proxyserver/apis/proxy/v1beta1/generated.pb.go +++ b/pkg/proxyserver/apis/proxy/v1beta1/generated.pb.go @@ -1,6 +1,6 @@ // Copyright (c) 2020 Red Hat, Inc. // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/apis/proxy/v1beta1/generated.proto +// source: github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/apis/proxy/v1beta1/generated.proto package v1beta1 @@ -31,7 +31,7 @@ const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package func (m *ClusterStatus) Reset() { *m = ClusterStatus{} } func (*ClusterStatus) ProtoMessage() {} func (*ClusterStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_a098604adc36efcb, []int{0} + return fileDescriptor_804cb69251e8289d, []int{0} } func (m *ClusterStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -59,7 +59,7 @@ var xxx_messageInfo_ClusterStatus proto.InternalMessageInfo func (m *ClusterStatusList) Reset() { *m = ClusterStatusList{} } func (*ClusterStatusList) ProtoMessage() {} func (*ClusterStatusList) Descriptor() ([]byte, []int) { - return fileDescriptor_a098604adc36efcb, []int{1} + return fileDescriptor_804cb69251e8289d, []int{1} } func (m *ClusterStatusList) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -87,7 +87,7 @@ var xxx_messageInfo_ClusterStatusList proto.InternalMessageInfo func (m *ClusterStatusProxyOptions) Reset() { *m = ClusterStatusProxyOptions{} } func (*ClusterStatusProxyOptions) ProtoMessage() {} func (*ClusterStatusProxyOptions) Descriptor() ([]byte, []int) { - return fileDescriptor_a098604adc36efcb, []int{2} + return fileDescriptor_804cb69251e8289d, []int{2} } func (m *ClusterStatusProxyOptions) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -113,45 +113,45 @@ func (m *ClusterStatusProxyOptions) XXX_DiscardUnknown() { var xxx_messageInfo_ClusterStatusProxyOptions proto.InternalMessageInfo func init() { - proto.RegisterType((*ClusterStatus)(nil), "github.com.open_cluster_management.multicloud_operators_foundation.pkg.proxyserver.apis.proxy.v1beta1.ClusterStatus") - proto.RegisterType((*ClusterStatusList)(nil), "github.com.open_cluster_management.multicloud_operators_foundation.pkg.proxyserver.apis.proxy.v1beta1.ClusterStatusList") - proto.RegisterType((*ClusterStatusProxyOptions)(nil), "github.com.open_cluster_management.multicloud_operators_foundation.pkg.proxyserver.apis.proxy.v1beta1.ClusterStatusProxyOptions") + proto.RegisterType((*ClusterStatus)(nil), "github.com.stolostron.multicloud_operators_foundation.pkg.proxyserver.apis.proxy.v1beta1.ClusterStatus") + proto.RegisterType((*ClusterStatusList)(nil), "github.com.stolostron.multicloud_operators_foundation.pkg.proxyserver.apis.proxy.v1beta1.ClusterStatusList") + proto.RegisterType((*ClusterStatusProxyOptions)(nil), "github.com.stolostron.multicloud_operators_foundation.pkg.proxyserver.apis.proxy.v1beta1.ClusterStatusProxyOptions") } func init() { - proto.RegisterFile("github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/apis/proxy/v1beta1/generated.proto", fileDescriptor_a098604adc36efcb) -} - -var fileDescriptor_a098604adc36efcb = []byte{ - // 446 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0xd1, 0xb1, 0x6f, 0xd3, 0x4e, - 0x14, 0x07, 0x70, 0xbb, 0xbf, 0x56, 0xbf, 0xe2, 0x52, 0x09, 0x3c, 0x95, 0x0c, 0xd7, 0x28, 0x53, - 0x17, 0xdf, 0x91, 0x0a, 0x21, 0x16, 0x96, 0x30, 0x21, 0x81, 0x5a, 0x85, 0x0d, 0x21, 0x85, 0x8b, - 0xf3, 0x6a, 0x1f, 0xc9, 0xf9, 0x8e, 0xbb, 0x77, 0x11, 0xdd, 0xf8, 0x07, 0x90, 0x58, 0xf9, 0x8f, - 0x32, 0x76, 0xec, 0x54, 0x11, 0xf3, 0x8f, 0xa0, 0x3b, 0x9b, 0x3a, 0xa1, 0x42, 0x62, 0x62, 0xf3, - 0x3d, 0xdf, 0x7b, 0x9f, 0xf7, 0xb5, 0x13, 0x57, 0x08, 0x2c, 0xdd, 0x94, 0xe6, 0x4a, 0x32, 0xa5, - 0xa1, 0xca, 0xf2, 0x85, 0xb3, 0x08, 0x26, 0x93, 0xbc, 0xe2, 0x05, 0x48, 0xa8, 0x90, 0x49, 0xb7, - 0x40, 0x91, 0x2f, 0x94, 0x9b, 0x65, 0x4a, 0x83, 0xe1, 0xa8, 0x8c, 0xcd, 0x2e, 0x94, 0xab, 0x66, - 0x1c, 0x85, 0xaa, 0x98, 0x9e, 0x17, 0x4c, 0x1b, 0xf5, 0xe9, 0xd2, 0x82, 0x59, 0x82, 0x61, 0x5c, - 0x0b, 0xdb, 0x14, 0xd8, 0x72, 0x38, 0x05, 0xe4, 0x43, 0x56, 0x40, 0xe5, 0x1b, 0x61, 0x46, 0xb5, - 0x51, 0xa8, 0x52, 0xe8, 0x58, 0xea, 0xd9, 0x49, 0xcb, 0x4e, 0x3a, 0x96, 0x76, 0xec, 0xe4, 0x96, - 0x9d, 0x74, 0x2c, 0xd5, 0xf3, 0x82, 0x6e, 0xb0, 0xd4, 0xb3, 0x4d, 0x81, 0xb6, 0x6c, 0x2f, 0xdb, - 0x48, 0x57, 0xa8, 0x42, 0xb1, 0xa0, 0x4f, 0xdd, 0x45, 0x38, 0x85, 0x43, 0x78, 0x6a, 0xb6, 0xea, - 0x3d, 0x99, 0x3f, 0xb3, 0x54, 0x28, 0x1f, 0x40, 0xf2, 0xbc, 0x14, 0x15, 0x98, 0xcb, 0x90, 0x2e, - 0x24, 0x92, 0x80, 0x9c, 0x2d, 0xef, 0x64, 0xe9, 0x3d, 0xfd, 0x53, 0x97, 0x71, 0x15, 0x0a, 0x09, - 0xcc, 0xe6, 0x25, 0x48, 0xfe, 0x7b, 0xdf, 0xe0, 0x63, 0x72, 0xf8, 0xa2, 0x49, 0xfd, 0x06, 0x39, - 0x3a, 0x9b, 0xbe, 0x4f, 0xf6, 0xbd, 0x31, 0xe3, 0xc8, 0x8f, 0xe2, 0x7e, 0x7c, 0x72, 0x70, 0xfa, - 0x98, 0x36, 0xb3, 0xe9, 0xe6, 0xec, 0x10, 0x3c, 0x84, 0xf5, 0xb7, 0xe9, 0x72, 0x48, 0xcf, 0xa6, - 0x1f, 0x20, 0xc7, 0xd7, 0x80, 0x7c, 0x94, 0xae, 0x6e, 0x8e, 0xa3, 0xfa, 0xe6, 0x38, 0xe9, 0x6a, - 0xe3, 0xdb, 0xa9, 0x83, 0x2f, 0x3b, 0xc9, 0xc3, 0x2d, 0xf3, 0x95, 0xb0, 0x98, 0xbe, 0xbb, 0xe3, - 0xd2, 0xbf, 0x73, 0x7d, 0x77, 0x50, 0x1f, 0xb4, 0xea, 0xfe, 0xaf, 0x4a, 0x67, 0xa6, 0xdf, 0xe2, - 0x64, 0x4f, 0x20, 0x48, 0x7b, 0xb4, 0xd3, 0xff, 0xef, 0xe4, 0xe0, 0x14, 0xe9, 0x3f, 0xf9, 0xf7, - 0x74, 0x2b, 0xe7, 0xe8, 0xb0, 0xdd, 0x70, 0xef, 0xa5, 0x5f, 0x65, 0xdc, 0x6c, 0x34, 0x78, 0x9e, - 0x3c, 0xda, 0xba, 0x76, 0xee, 0x27, 0x9c, 0x69, 0x4f, 0xd8, 0xb4, 0x9f, 0xec, 0x6a, 0x8e, 0x65, - 0xf8, 0x24, 0xf7, 0x46, 0xf7, 0xdb, 0x01, 0xbb, 0xe7, 0x1c, 0xcb, 0x71, 0x78, 0x33, 0xca, 0x56, - 0x6b, 0x12, 0x5d, 0xad, 0x49, 0x74, 0xbd, 0x26, 0xd1, 0xe7, 0x9a, 0xc4, 0xab, 0x9a, 0xc4, 0x57, - 0x35, 0x89, 0xaf, 0x6b, 0x12, 0x7f, 0xaf, 0x49, 0xfc, 0xf5, 0x07, 0x89, 0xde, 0xfe, 0xdf, 0x6e, - 0xf4, 0x33, 0x00, 0x00, 0xff, 0xff, 0xa7, 0x31, 0x99, 0x3d, 0x6c, 0x03, 0x00, 0x00, + proto.RegisterFile("github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/apis/proxy/v1beta1/generated.proto", fileDescriptor_804cb69251e8289d) +} + +var fileDescriptor_804cb69251e8289d = []byte{ + // 433 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x91, 0x31, 0x6f, 0xd3, 0x40, + 0x1c, 0xc5, 0xed, 0xd2, 0x8a, 0x72, 0xa5, 0x12, 0x78, 0x2a, 0x19, 0xae, 0x51, 0xa6, 0x2e, 0xf9, + 0x1f, 0xa9, 0x10, 0x62, 0x61, 0x09, 0x13, 0x12, 0xa8, 0x55, 0x58, 0x10, 0x42, 0x2a, 0x17, 0xe7, + 0x6a, 0x1f, 0x89, 0x7d, 0xc7, 0xdd, 0xff, 0x2c, 0xba, 0xf5, 0x03, 0x30, 0xf0, 0xb1, 0x32, 0x76, + 0xec, 0x54, 0x11, 0xf3, 0x45, 0xd0, 0x9d, 0x4d, 0x9d, 0x50, 0x21, 0xb1, 0xb0, 0xf9, 0x9e, 0xef, + 0xbd, 0xdf, 0x7b, 0x36, 0xc9, 0x33, 0x89, 0xb9, 0x9b, 0x42, 0xaa, 0x0a, 0x66, 0x51, 0x2d, 0x94, + 0x45, 0xa3, 0x4a, 0x56, 0xb8, 0x05, 0xca, 0x74, 0xa1, 0xdc, 0x6c, 0xa8, 0xb4, 0x30, 0x1c, 0x95, + 0xb1, 0xc3, 0x73, 0xe5, 0xca, 0x19, 0x47, 0xa9, 0x4a, 0xa6, 0xe7, 0x19, 0xd3, 0x46, 0x7d, 0xbd, + 0xb0, 0xc2, 0x54, 0xc2, 0x30, 0xae, 0xa5, 0x6d, 0x04, 0x56, 0x8d, 0xa6, 0x02, 0xf9, 0x88, 0x65, + 0xa2, 0xf4, 0x46, 0x31, 0x03, 0x6d, 0x14, 0xaa, 0xe4, 0x7d, 0x47, 0x82, 0x8e, 0x04, 0x1d, 0xe9, + 0xec, 0x96, 0x74, 0xd6, 0x91, 0x40, 0xcf, 0x33, 0x58, 0x23, 0x81, 0x27, 0x35, 0x02, 0xb4, 0xa4, + 0xde, 0x70, 0x6d, 0x43, 0xa6, 0x32, 0xc5, 0x02, 0x70, 0xea, 0xce, 0xc3, 0x29, 0x1c, 0xc2, 0x53, + 0x53, 0xa4, 0xf7, 0x6c, 0xfe, 0xc2, 0x82, 0x54, 0xbe, 0x73, 0xc1, 0xd3, 0x5c, 0x96, 0xc2, 0x5c, + 0x84, 0x41, 0x61, 0x44, 0x21, 0x90, 0xb3, 0xea, 0x4e, 0xfd, 0xde, 0xf3, 0xbf, 0xb9, 0x8c, 0x2b, + 0x51, 0x16, 0x82, 0xd9, 0x34, 0x17, 0x05, 0xff, 0xd3, 0x37, 0xf8, 0x42, 0xf6, 0x5f, 0x2d, 0x9c, + 0x45, 0x61, 0xde, 0x21, 0x47, 0x67, 0x93, 0x4f, 0x64, 0xd7, 0x33, 0x66, 0x1c, 0xf9, 0x41, 0xdc, + 0x8f, 0x8f, 0xf6, 0x8e, 0x9f, 0x42, 0x93, 0x0d, 0xeb, 0xd9, 0x61, 0x78, 0x18, 0xeb, 0x6f, 0x43, + 0x35, 0x82, 0x93, 0xe9, 0x67, 0x91, 0xe2, 0x5b, 0x81, 0x7c, 0x9c, 0x2c, 0x6f, 0x0e, 0xa3, 0xfa, + 0xe6, 0x90, 0x74, 0xda, 0xe4, 0x36, 0x75, 0x70, 0xb9, 0x45, 0x1e, 0x6f, 0x30, 0xdf, 0x48, 0x8b, + 0xc9, 0xc7, 0x3b, 0x5c, 0xf8, 0x37, 0xae, 0x77, 0x07, 0xea, 0xa3, 0x96, 0xba, 0xfb, 0x5b, 0xe9, + 0x98, 0xc9, 0xb7, 0x98, 0xec, 0x48, 0x14, 0x85, 0x3d, 0xd8, 0xea, 0xdf, 0x3b, 0xda, 0x3b, 0xce, + 0xe0, 0x7f, 0xfd, 0x6e, 0xd8, 0x98, 0x36, 0xde, 0x6f, 0x4b, 0xed, 0xbc, 0xf6, 0xf4, 0x49, 0x53, + 0x62, 0xf0, 0x92, 0x3c, 0xd9, 0xb8, 0x76, 0xea, 0x13, 0x4e, 0xb4, 0x47, 0xd8, 0xa4, 0x4f, 0xb6, + 0x35, 0xc7, 0x3c, 0x7c, 0x85, 0x07, 0xe3, 0x87, 0x6d, 0xc0, 0xf6, 0x29, 0xc7, 0x7c, 0x12, 0xde, + 0x8c, 0x87, 0xcb, 0x15, 0x8d, 0xae, 0x56, 0x34, 0xba, 0x5e, 0xd1, 0xe8, 0xb2, 0xa6, 0xf1, 0xb2, + 0xa6, 0xf1, 0x55, 0x4d, 0xe3, 0xeb, 0x9a, 0xc6, 0x3f, 0x6a, 0x1a, 0x7f, 0xff, 0x49, 0xa3, 0x0f, + 0xf7, 0xdb, 0x46, 0xbf, 0x02, 0x00, 0x00, 0xff, 0xff, 0x55, 0xc1, 0x40, 0x19, 0x45, 0x03, 0x00, + 0x00, } func (m *ClusterStatus) Marshal() (dAtA []byte, err error) { diff --git a/pkg/proxyserver/apis/proxy/v1beta1/generated.proto b/pkg/proxyserver/apis/proxy/v1beta1/generated.proto index 286ab756d..09ae5b979 100644 --- a/pkg/proxyserver/apis/proxy/v1beta1/generated.proto +++ b/pkg/proxyserver/apis/proxy/v1beta1/generated.proto @@ -4,7 +4,7 @@ syntax = "proto2"; -package github.com.open_cluster_management.multicloud_operators_foundation.pkg.proxyserver.apis.proxy.v1beta1; +package github.com.stolostron.multicloud_operators_foundation.pkg.proxyserver.apis.proxy.v1beta1; import "k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto"; import "k8s.io/apimachinery/pkg/runtime/schema/generated.proto"; diff --git a/pkg/proxyserver/controller/controller.go b/pkg/proxyserver/controller/controller.go index 49759b2a9..8f64aaabf 100644 --- a/pkg/proxyserver/controller/controller.go +++ b/pkg/proxyserver/controller/controller.go @@ -12,7 +12,7 @@ import ( metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" utilruntime "k8s.io/apimachinery/pkg/util/runtime" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/getter" + "github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/getter" "k8s.io/apimachinery/pkg/api/errors" "k8s.io/apimachinery/pkg/util/wait" "k8s.io/client-go/informers" diff --git a/pkg/proxyserver/controller/controller_test.go b/pkg/proxyserver/controller/controller_test.go index 07f97d92a..332ab22e0 100644 --- a/pkg/proxyserver/controller/controller_test.go +++ b/pkg/proxyserver/controller/controller_test.go @@ -4,7 +4,7 @@ import ( "testing" "time" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/getter" + "github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/getter" corev1 "k8s.io/api/core/v1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime" diff --git a/pkg/proxyserver/getter/connectiongetter.go b/pkg/proxyserver/getter/connectiongetter.go index a31af2c1b..a69e358f7 100644 --- a/pkg/proxyserver/getter/connectiongetter.go +++ b/pkg/proxyserver/getter/connectiongetter.go @@ -7,7 +7,7 @@ import ( "strconv" "time" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" + "github.com/stolostron/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime" utilnet "k8s.io/apimachinery/pkg/util/net" diff --git a/pkg/proxyserver/getter/proxygetter.go b/pkg/proxyserver/getter/proxygetter.go index b9a200508..234419d23 100644 --- a/pkg/proxyserver/getter/proxygetter.go +++ b/pkg/proxyserver/getter/proxygetter.go @@ -4,7 +4,7 @@ import ( "reflect" "sync" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/helpers/certificate" + "github.com/stolostron/multicloud-operators-foundation/pkg/helpers/certificate" "k8s.io/client-go/rest" "k8s.io/klog" ) diff --git a/pkg/proxyserver/printers/internalversion/printers.go b/pkg/proxyserver/printers/internalversion/printers.go index 302d70f0c..f4eebe98f 100644 --- a/pkg/proxyserver/printers/internalversion/printers.go +++ b/pkg/proxyserver/printers/internalversion/printers.go @@ -1,13 +1,14 @@ package internalversion import ( - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/printers" + "strings" + "time" + + "github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/printers" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/util/duration" clusterv1 "open-cluster-management.io/api/cluster/v1" - "strings" - "time" ) func AddHandlers(h printers.PrintHandler) { diff --git a/pkg/proxyserver/printers/internalversion/printers_test.go b/pkg/proxyserver/printers/internalversion/printers_test.go index ec3897046..33b4d3f8f 100644 --- a/pkg/proxyserver/printers/internalversion/printers_test.go +++ b/pkg/proxyserver/printers/internalversion/printers_test.go @@ -1,13 +1,14 @@ package internalversion import ( - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/printers" - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - "k8s.io/apimachinery/pkg/util/diff" - clusterv1 "open-cluster-management.io/api/cluster/v1" "reflect" "testing" "time" + + "github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/printers" + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + "k8s.io/apimachinery/pkg/util/diff" + clusterv1 "open-cluster-management.io/api/cluster/v1" ) type TestPrintHandler struct { diff --git a/pkg/proxyserver/printers/storage/storage.go b/pkg/proxyserver/printers/storage/storage.go index 75350b01e..35ae916ca 100644 --- a/pkg/proxyserver/printers/storage/storage.go +++ b/pkg/proxyserver/printers/storage/storage.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/printers" + "github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/printers" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime" ) diff --git a/pkg/proxyserver/rest/log/log.go b/pkg/proxyserver/rest/log/log.go index 45a4e8e84..541d8585c 100644 --- a/pkg/proxyserver/rest/log/log.go +++ b/pkg/proxyserver/rest/log/log.go @@ -8,8 +8,8 @@ import ( "net/url" "strings" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/apis/proxy/v1beta1" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/getter" + "github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/apis/proxy/v1beta1" + "github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/getter" "k8s.io/apimachinery/pkg/runtime" netutil "k8s.io/apimachinery/pkg/util/net" "k8s.io/apimachinery/pkg/util/proxy" diff --git a/pkg/proxyserver/rest/managedcluster/managedcluster.go b/pkg/proxyserver/rest/managedcluster/managedcluster.go index 7d1fe1173..0b9c71dc6 100644 --- a/pkg/proxyserver/rest/managedcluster/managedcluster.go +++ b/pkg/proxyserver/rest/managedcluster/managedcluster.go @@ -3,12 +3,13 @@ package managedcluster import ( "context" "fmt" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/printers/internalversion" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/cache" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/helpers" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/printers" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/printers/storage" + "github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/printers/internalversion" + + "github.com/stolostron/multicloud-operators-foundation/pkg/cache" + "github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/helpers" + "github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/printers" + "github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/printers/storage" "k8s.io/apimachinery/pkg/api/errors" metainternalversion "k8s.io/apimachinery/pkg/apis/meta/internalversion" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" diff --git a/pkg/proxyserver/rest/managedclusterset/managedclusterset.go b/pkg/proxyserver/rest/managedclusterset/managedclusterset.go index 5776658e6..81b8ea8c0 100644 --- a/pkg/proxyserver/rest/managedclusterset/managedclusterset.go +++ b/pkg/proxyserver/rest/managedclusterset/managedclusterset.go @@ -4,8 +4,8 @@ import ( "context" "fmt" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/cache" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/helpers" + "github.com/stolostron/multicloud-operators-foundation/pkg/cache" + "github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/helpers" "k8s.io/apimachinery/pkg/api/errors" metainternalversion "k8s.io/apimachinery/pkg/apis/meta/internalversion" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" diff --git a/pkg/proxyserver/rest/proxy/proxy.go b/pkg/proxyserver/rest/proxy/proxy.go index 1557612f9..9a9ac888e 100644 --- a/pkg/proxyserver/rest/proxy/proxy.go +++ b/pkg/proxyserver/rest/proxy/proxy.go @@ -11,8 +11,8 @@ import ( apirequest "k8s.io/apiserver/pkg/endpoints/request" - v1beta1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/apis/proxy/v1beta1" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/getter" + v1beta1 "github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/apis/proxy/v1beta1" + "github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/getter" "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/util/proxy" "k8s.io/apiserver/pkg/registry/rest" diff --git a/pkg/proxyserver/rest/proxy/proxy_test.go b/pkg/proxyserver/rest/proxy/proxy_test.go index a7f318412..a92437a2a 100644 --- a/pkg/proxyserver/rest/proxy/proxy_test.go +++ b/pkg/proxyserver/rest/proxy/proxy_test.go @@ -6,7 +6,7 @@ import ( "net/http/httptest" "testing" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/getter" + "github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/getter" "k8s.io/apimachinery/pkg/runtime" "k8s.io/apiserver/pkg/endpoints/request" ) diff --git a/pkg/utils/clusterset/clusterset.go b/pkg/utils/clusterset/clusterset.go index 010a5019e..80c5c011a 100644 --- a/pkg/utils/clusterset/clusterset.go +++ b/pkg/utils/clusterset/clusterset.go @@ -1,10 +1,10 @@ package utils import ( - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/cache" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/helpers" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils" "github.com/openshift/library-go/pkg/authorization/authorizationutil" + "github.com/stolostron/multicloud-operators-foundation/pkg/cache" + "github.com/stolostron/multicloud-operators-foundation/pkg/helpers" + "github.com/stolostron/multicloud-operators-foundation/pkg/utils" rbacv1 "k8s.io/api/rbac/v1" ) diff --git a/pkg/utils/clusterset/clusterset_test.go b/pkg/utils/clusterset/clusterset_test.go index 5d30b9c3f..cd1a3f46d 100644 --- a/pkg/utils/clusterset/clusterset_test.go +++ b/pkg/utils/clusterset/clusterset_test.go @@ -4,7 +4,7 @@ import ( "reflect" "testing" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/helpers" + "github.com/stolostron/multicloud-operators-foundation/pkg/helpers" rbacv1 "k8s.io/api/rbac/v1" "k8s.io/apimachinery/pkg/util/sets" ) diff --git a/pkg/webhook/clusterset/validatingWebhook.go b/pkg/webhook/clusterset/validatingWebhook.go index 6c033b393..5ea759e8e 100644 --- a/pkg/webhook/clusterset/validatingWebhook.go +++ b/pkg/webhook/clusterset/validatingWebhook.go @@ -6,9 +6,9 @@ import ( "fmt" "net/http" - serve "github.com/open-cluster-management/multicloud-operators-foundation/pkg/webhook/serve" hivev1 "github.com/openshift/hive/apis/hive/v1" hiveclient "github.com/openshift/hive/pkg/client/clientset/versioned" + serve "github.com/stolostron/multicloud-operators-foundation/pkg/webhook/serve" v1 "k8s.io/api/admission/v1" authenticationv1 "k8s.io/api/authentication/v1" authorizationv1 "k8s.io/api/authorization/v1" @@ -115,7 +115,7 @@ func (a *AdmissionHandler) validateCreateRequest(request *v1.AdmissionRequest) * // 2.3.1 if the managedcluster is claimed from clusterpool, do not allow to update clusterset. // 2.3.2 if the managedcluster is not claimed from clusterpool, check if user has permission to update clusterset. // Notes: clusterclaims-controller will auto create a mangedcluster with the clusterpool's clusterset label if there is a clusterclaim ref to this clusterpool. -// https://github.com/open-cluster-management/clusterclaims-controller/blob/main/controllers/clusterclaims/clusterclaims-controller.go +// https://github.com/stolostron/clusterclaims-controller/blob/main/controllers/clusterclaims/clusterclaims-controller.go // Permission Check: // 1. the user must have managedClusterSet/join permission if update resource to change diff --git a/pkg/webhook/serve/serve.go b/pkg/webhook/serve/serve.go index c72e32223..7bd4ca26c 100644 --- a/pkg/webhook/serve/serve.go +++ b/pkg/webhook/serve/serve.go @@ -7,7 +7,7 @@ import ( "io/ioutil" "net/http" - "github.com/open-cluster-management/multicloud-operators-foundation/cmd/webhook/app/options" + "github.com/stolostron/multicloud-operators-foundation/cmd/webhook/app/options" v1 "k8s.io/api/admission/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/klog/v2" diff --git a/pkg/webhook/useridentity/mutatingWebhook.go b/pkg/webhook/useridentity/mutatingWebhook.go index 27e5986f7..98f8f0b47 100644 --- a/pkg/webhook/useridentity/mutatingWebhook.go +++ b/pkg/webhook/useridentity/mutatingWebhook.go @@ -7,8 +7,8 @@ import ( "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" "github.com/mattbaird/jsonpatch" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils" - serve "github.com/open-cluster-management/multicloud-operators-foundation/pkg/webhook/serve" + "github.com/stolostron/multicloud-operators-foundation/pkg/utils" + serve "github.com/stolostron/multicloud-operators-foundation/pkg/webhook/serve" v1 "k8s.io/api/admission/v1" rbaclisters "k8s.io/client-go/listers/rbac/v1" "k8s.io/klog/v2" diff --git a/pkg/webhook/useridentity/mutatingWebhook_test.go b/pkg/webhook/useridentity/mutatingWebhook_test.go index 9eaf1a58b..ed12bdb12 100644 --- a/pkg/webhook/useridentity/mutatingWebhook_test.go +++ b/pkg/webhook/useridentity/mutatingWebhook_test.go @@ -18,7 +18,7 @@ func newAdmissionHandler() *AdmissionHandler { } const ( - channelTest = `{"apiVersion":"apps.open-cluster-management.io/v1","kind":"Channel","metadata":{"annotations":{"kubectl.kubernetes.io/last-applied-configuration":"{\"apiVersion\":\"apps.open-cluster-management.io/v1\",\"kind\":\"Channel\",\"metadata\":{\"annotations\":{},\"name\":\"test\",\"namespace\":\"default\"},\"spec\":{\"pathname\":\"https://github.com/open-cluster-management/abc.git\",\"type\":\"Git\"}}\n"},"creationTimestamp":null,"managedFields":[{"apiVersion":"apps.open-cluster-management.io/v1","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:kubectl.kubernetes.io/last-applied-configuration":{}}},"f:spec":{".":{},"f:pathname":{},"f:type":{}}},"manager":"kubectl-client-side-apply","operation":"Update","time":"2021-03-26T07:23:28Z"}],"name":"test","namespace":"default"},"spec":{"pathname":"https://github.com/open-cluster-management/abc.git","type":"Git"}}` + channelTest = `{"apiVersion":"apps.open-cluster-management.io/v1","kind":"Channel","metadata":{"annotations":{"kubectl.kubernetes.io/last-applied-configuration":"{\"apiVersion\":\"apps.open-cluster-management.io/v1\",\"kind\":\"Channel\",\"metadata\":{\"annotations\":{},\"name\":\"test\",\"namespace\":\"default\"},\"spec\":{\"pathname\":\"https://github.com/stolostron/abc.git\",\"type\":\"Git\"}}\n"},"creationTimestamp":null,"managedFields":[{"apiVersion":"apps.open-cluster-management.io/v1","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:kubectl.kubernetes.io/last-applied-configuration":{}}},"f:spec":{".":{},"f:pathname":{},"f:type":{}}},"manager":"kubectl-client-side-apply","operation":"Update","time":"2021-03-26T07:23:28Z"}],"name":"test","namespace":"default"},"spec":{"pathname":"https://github.com/stolostron/abc.git","type":"Git"}}` appsubTest = `{"apiVersion":"apps.open-cluster-management.io/v1","kind": "Subscription","metadata": {"name": "git-sub","namespace": "parentsub","annotations": {"apps.open-cluster-management.io/cluster-admin": "true","apps.open-cluster-management.io/github-path": "test/e2e/github/nestedSubscription"}},"spec": {"channel": "ch-git/git","placement": {"local": "true"}}}` ) diff --git a/test/e2e/actions_test.go b/test/e2e/actions_test.go index 9256c049e..f1f9c7976 100644 --- a/test/e2e/actions_test.go +++ b/test/e2e/actions_test.go @@ -4,7 +4,7 @@ import ( "github.com/onsi/ginkgo" "github.com/onsi/gomega" - "github.com/open-cluster-management/multicloud-operators-foundation/test/e2e/util" + "github.com/stolostron/multicloud-operators-foundation/test/e2e/util" "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" "k8s.io/apimachinery/pkg/runtime/schema" diff --git a/test/e2e/clusterclaim_test.go b/test/e2e/clusterclaim_test.go index 87f4bc1b1..56f5d0ea7 100644 --- a/test/e2e/clusterclaim_test.go +++ b/test/e2e/clusterclaim_test.go @@ -6,7 +6,7 @@ import ( "github.com/onsi/ginkgo" "github.com/onsi/gomega" - "github.com/open-cluster-management/multicloud-operators-foundation/test/e2e/util" + "github.com/stolostron/multicloud-operators-foundation/test/e2e/util" "k8s.io/apimachinery/pkg/api/errors" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/client-go/util/retry" diff --git a/test/e2e/clusterinfos_test.go b/test/e2e/clusterinfos_test.go index e38f504de..d7914a45e 100644 --- a/test/e2e/clusterinfos_test.go +++ b/test/e2e/clusterinfos_test.go @@ -3,8 +3,8 @@ package e2e import ( "github.com/onsi/ginkgo" "github.com/onsi/gomega" - clusterinfov1beta1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" - "github.com/open-cluster-management/multicloud-operators-foundation/test/e2e/util" + clusterinfov1beta1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" + "github.com/stolostron/multicloud-operators-foundation/test/e2e/util" ) var _ = ginkgo.Describe("Testing ManagedClusterInfo", func() { diff --git a/test/e2e/clusterset_test.go b/test/e2e/clusterset_test.go index 99b0f7e54..b0520421b 100644 --- a/test/e2e/clusterset_test.go +++ b/test/e2e/clusterset_test.go @@ -4,13 +4,13 @@ import ( "context" "fmt" - clustersetutils "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils/clusterset" + clustersetutils "github.com/stolostron/multicloud-operators-foundation/pkg/utils/clusterset" "k8s.io/apimachinery/pkg/api/errors" "github.com/onsi/ginkgo" "github.com/onsi/gomega" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils" - "github.com/open-cluster-management/multicloud-operators-foundation/test/e2e/util" + "github.com/stolostron/multicloud-operators-foundation/pkg/utils" + "github.com/stolostron/multicloud-operators-foundation/test/e2e/util" rbacv1 "k8s.io/api/rbac/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) diff --git a/test/e2e/clusterview_test.go b/test/e2e/clusterview_test.go index 9418a8bd6..3361217d9 100644 --- a/test/e2e/clusterview_test.go +++ b/test/e2e/clusterview_test.go @@ -8,8 +8,8 @@ import ( "github.com/onsi/ginkgo" "github.com/onsi/gomega" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/helpers" - "github.com/open-cluster-management/multicloud-operators-foundation/test/e2e/util" + "github.com/stolostron/multicloud-operators-foundation/pkg/helpers" + "github.com/stolostron/multicloud-operators-foundation/test/e2e/util" rbacv1 "k8s.io/api/rbac/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" diff --git a/test/e2e/e2e_suite_test.go b/test/e2e/e2e_suite_test.go index fd4168d4c..9c1d18c9a 100644 --- a/test/e2e/e2e_suite_test.go +++ b/test/e2e/e2e_suite_test.go @@ -8,11 +8,11 @@ import ( "github.com/onsi/ginkgo" "github.com/onsi/ginkgo/reporters" "github.com/onsi/gomega" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/helpers/imageregistry" openshiftclientset "github.com/openshift/client-go/config/clientset/versioned" + "github.com/stolostron/multicloud-operators-foundation/pkg/helpers/imageregistry" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - "github.com/open-cluster-management/multicloud-operators-foundation/test/e2e/util" + "github.com/stolostron/multicloud-operators-foundation/test/e2e/util" hiveclient "github.com/openshift/hive/pkg/client/clientset/versioned" "k8s.io/client-go/dynamic" diff --git a/test/e2e/imageregistry_test.go b/test/e2e/imageregistry_test.go index b1adb01e5..24217235b 100644 --- a/test/e2e/imageregistry_test.go +++ b/test/e2e/imageregistry_test.go @@ -5,7 +5,7 @@ import ( "github.com/onsi/ginkgo" "github.com/onsi/gomega" - "github.com/open-cluster-management/multicloud-operators-foundation/test/e2e/util" + "github.com/stolostron/multicloud-operators-foundation/test/e2e/util" ) var _ = ginkgo.Describe("Testing ManagedClusterImageRegistry", func() { diff --git a/test/e2e/inventory_test.go b/test/e2e/inventory_test.go index 0e0c2ea07..dd0b0a8d3 100644 --- a/test/e2e/inventory_test.go +++ b/test/e2e/inventory_test.go @@ -9,9 +9,9 @@ import ( "github.com/onsi/ginkgo" "github.com/onsi/gomega" - "github.com/open-cluster-management/multicloud-operators-foundation/test/e2e/util" hivev1 "github.com/openshift/hive/apis/hive/v1" hiveinternalv1alpha1 "github.com/openshift/hive/apis/hiveinternal/v1alpha1" + "github.com/stolostron/multicloud-operators-foundation/test/e2e/util" corev1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" diff --git a/test/e2e/log_test.go b/test/e2e/log_test.go index 7adc81f2a..a6377896c 100644 --- a/test/e2e/log_test.go +++ b/test/e2e/log_test.go @@ -8,9 +8,9 @@ import ( "github.com/onsi/ginkgo" "github.com/onsi/gomega" - clusterinfov1beta1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/apis/proxy/v1beta1" - "github.com/open-cluster-management/multicloud-operators-foundation/test/e2e/util" + clusterinfov1beta1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" + "github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/apis/proxy/v1beta1" + "github.com/stolostron/multicloud-operators-foundation/test/e2e/util" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/cli-runtime/pkg/resource" "k8s.io/client-go/rest" diff --git a/test/e2e/managedcluster_test.go b/test/e2e/managedcluster_test.go index ba9155568..a7d14295c 100644 --- a/test/e2e/managedcluster_test.go +++ b/test/e2e/managedcluster_test.go @@ -8,9 +8,9 @@ import ( "github.com/onsi/ginkgo" "github.com/onsi/gomega" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils" - e2eutil "github.com/open-cluster-management/multicloud-operators-foundation/test/e2e/util" configv1 "github.com/openshift/api/config/v1" + "github.com/stolostron/multicloud-operators-foundation/pkg/utils" + e2eutil "github.com/stolostron/multicloud-operators-foundation/test/e2e/util" "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) diff --git a/test/e2e/util/util.go b/test/e2e/util/util.go index 3401dcef5..568dd5bc9 100644 --- a/test/e2e/util/util.go +++ b/test/e2e/util/util.go @@ -7,9 +7,9 @@ import ( "os/user" "path" - clusterinfov1beta1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/helpers/imageregistry" hiveclient "github.com/openshift/hive/pkg/client/clientset/versioned" + clusterinfov1beta1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1" + "github.com/stolostron/multicloud-operators-foundation/pkg/helpers/imageregistry" "k8s.io/apimachinery/pkg/util/rand" openshiftclientset "github.com/openshift/client-go/config/clientset/versioned" diff --git a/test/e2e/views_test.go b/test/e2e/views_test.go index bffe29573..38ce69483 100644 --- a/test/e2e/views_test.go +++ b/test/e2e/views_test.go @@ -4,7 +4,7 @@ import ( "github.com/onsi/ginkgo" "github.com/onsi/gomega" - "github.com/open-cluster-management/multicloud-operators-foundation/test/e2e/util" + "github.com/stolostron/multicloud-operators-foundation/test/e2e/util" "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" "k8s.io/apimachinery/pkg/runtime/schema" diff --git a/test/e2e/webhook_test.go b/test/e2e/webhook_test.go index 51449301b..18f50dfe1 100644 --- a/test/e2e/webhook_test.go +++ b/test/e2e/webhook_test.go @@ -7,8 +7,8 @@ import ( "github.com/onsi/ginkgo" "github.com/onsi/gomega" - "github.com/open-cluster-management/multicloud-operators-foundation/pkg/helpers" - "github.com/open-cluster-management/multicloud-operators-foundation/test/e2e/util" + "github.com/stolostron/multicloud-operators-foundation/pkg/helpers" + "github.com/stolostron/multicloud-operators-foundation/test/e2e/util" rbacv1 "k8s.io/api/rbac/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/util/rand"