Skip to content

Commit

Permalink
Rename GitHub org (stolostron#430)
Browse files Browse the repository at this point in the history
* rename github org: quay io

Signed-off-by: zhujian <[email protected]>

* rename github org: github

Signed-off-by: zhujian <[email protected]>

* rename github org: check others manually

Signed-off-by: zhujian <[email protected]>

* rename github org: make generate

Signed-off-by: zhujian <[email protected]>
  • Loading branch information
zhujian7 authored Jan 10, 2022
1 parent 1fcc350 commit 172fb94
Show file tree
Hide file tree
Showing 120 changed files with 372 additions and 367 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <your Github ID>` comment on the issue or pull request.
Expand Down
16 changes: 8 additions & 8 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -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

Expand All @@ -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

Expand Down
24 changes: 12 additions & 12 deletions cmd/agent/agent.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions cmd/agent/app/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion cmd/controller/app/options/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -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",
}
}
Expand Down
42 changes: 21 additions & 21 deletions cmd/controller/app/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions cmd/controller/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions cmd/proxyserver/app/options/clientoptions.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions cmd/proxyserver/app/options/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions cmd/proxyserver/app/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions cmd/proxyserver/app/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions cmd/proxyserver/proxyserver.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions cmd/webhook/app/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
4 changes: 2 additions & 2 deletions cmd/webhook/webhook.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions deploy/foundation/hub/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down
2 changes: 1 addition & 1 deletion deploy/foundation/hub/patches.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion deploy/foundation/hub/resources/controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion deploy/foundation/hub/resources/proxyserver.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion deploy/foundation/hub/resources/webhook.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/open-cluster-management/multicloud-operators-foundation
module github.com/stolostron/multicloud-operators-foundation

go 1.17

Expand Down
2 changes: 1 addition & 1 deletion hack/update-apiserver-gen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 "$@" \
Expand Down
2 changes: 1 addition & 1 deletion hack/update-protobuf.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pkg/addon/addon.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Loading

0 comments on commit 172fb94

Please sign in to comment.