Skip to content

Commit 172fb94

Browse files
authored
Rename GitHub org (#430)
* 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]>
1 parent 1fcc350 commit 172fb94

File tree

120 files changed

+372
-367
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

120 files changed

+372
-367
lines changed

Diff for: CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ contribution. See the [DCO](DCO) file for details.
3636

3737
Anyone may comment on issues and submit reviews for pull requests. However, in
3838
order to be assigned an issue or pull request, you must be a member of the
39-
[open-cluster-management](https://github.com/open-cluster-management) GitHub organization.
39+
[stolostron](https://github.com/stolostron) GitHub organization.
4040

4141
Repo maintainers can assign you an issue or pull request by leaving a
4242
`/assign <your Github ID>` comment on the issue or pull request.

Diff for: Dockerfile

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
FROM registry.ci.openshift.org/open-cluster-management/builder:go1.17-linux AS builder
2-
WORKDIR /go/src/github.com/open-cluster-management/multicloud-operators-foundation
1+
FROM registry.ci.openshift.org/stolostron/builder:go1.17-linux AS builder
2+
WORKDIR /go/src/github.com/stolostron/multicloud-operators-foundation
33
COPY . .
4-
ENV GO_PACKAGE github.com/open-cluster-management/multicloud-operators-foundation
4+
ENV GO_PACKAGE github.com/stolostron/multicloud-operators-foundation
55

66
RUN make build --warn-undefined-variables
77
RUN make build-e2e --warn-undefined-variables
@@ -11,11 +11,11 @@ FROM registry.access.redhat.com/ubi8/ubi-minimal:latest
1111
ENV USER_UID=10001 \
1212
USER_NAME=acm-foundation
1313

14-
COPY --from=builder /go/src/github.com/open-cluster-management/multicloud-operators-foundation/proxyserver /
15-
COPY --from=builder /go/src/github.com/open-cluster-management/multicloud-operators-foundation/controller /
16-
COPY --from=builder /go/src/github.com/open-cluster-management/multicloud-operators-foundation/webhook /
17-
COPY --from=builder /go/src/github.com/open-cluster-management/multicloud-operators-foundation/agent /
18-
COPY --from=builder /go/src/github.com/open-cluster-management/multicloud-operators-foundation/e2e.test /
14+
COPY --from=builder /go/src/github.com/stolostron/multicloud-operators-foundation/proxyserver /
15+
COPY --from=builder /go/src/github.com/stolostron/multicloud-operators-foundation/controller /
16+
COPY --from=builder /go/src/github.com/stolostron/multicloud-operators-foundation/webhook /
17+
COPY --from=builder /go/src/github.com/stolostron/multicloud-operators-foundation/agent /
18+
COPY --from=builder /go/src/github.com/stolostron/multicloud-operators-foundation/e2e.test /
1919

2020
RUN microdnf update && \
2121
microdnf clean all

Diff for: Makefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ kustomize_dir:=$(dir $(KUSTOMIZE))
2222

2323
# Image URL to use all building/pushing image targets;
2424
IMAGE ?= multicloud-manager
25-
IMAGE_REGISTRY ?= quay.io/open-cluster-management
25+
IMAGE_REGISTRY ?= quay.io/stolostron
2626
IMAGE_TAG ?= latest
2727
FOUNDATION_IMAGE_NAME ?= $(IMAGE_REGISTRY)/$(IMAGE):$(IMAGE_TAG)
2828

29-
GIT_HOST ?= github.com/open-cluster-management
29+
GIT_HOST ?= github.com/stolostron
3030
BASE_DIR := $(shell basename $(PWD))
3131
DEST := $(GOPATH)/src/$(GIT_HOST)/$(BASE_DIR)
3232
BINDIR ?= _output
@@ -71,8 +71,8 @@ deploy-klusterlet:
7171

7272
deploy-foundation: ensure-kustomize
7373
cp deploy/foundation/hub/kustomization.yaml deploy/foundation/hub/kustomization.yaml.tmp
74-
cd deploy/foundation/hub && ../../../$(KUSTOMIZE) edit set image 'quay.io/open-cluster-management/multicloud-manager'=$(FOUNDATION_IMAGE_NAME)
75-
$(SED_CMD) -i.tmp "s,quay.io/open-cluster-management/multicloud-manager,$(FOUNDATION_IMAGE_NAME)," deploy/foundation/hub/patches.yaml
74+
cd deploy/foundation/hub && ../../../$(KUSTOMIZE) edit set image 'quay.io/stolostron/multicloud-manager'=$(FOUNDATION_IMAGE_NAME)
75+
$(SED_CMD) -i.tmp "s,quay.io/stolostron/multicloud-manager,$(FOUNDATION_IMAGE_NAME)," deploy/foundation/hub/patches.yaml
7676
$(KUSTOMIZE) build deploy/foundation/hub | $(KUBECTL) apply -f -
7777
mv deploy/foundation/hub/kustomization.yaml.tmp deploy/foundation/hub/kustomization.yaml
7878
mv deploy/foundation/hub/patches.yaml.tmp deploy/foundation/hub/patches.yaml

Diff for: README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# open-cluster-management Foundation
1+
# stolostron Foundation
22

3-
open-cluster-management Foundation supports some foundational components based ManagedCluster for ACM.
3+
stolostron Foundation supports some foundational components based ManagedCluster for ACM.
44

55
## Community, discussion, contribution, and support
66

@@ -10,7 +10,7 @@ Check the [CONTRIBUTING Doc](CONTRIBUTING.md) for how to contribute to the repo.
1010

1111
## Getting Started
1212

13-
This is a guide on how to build and deploy open-cluster-management Foundation from code.
13+
This is a guide on how to build and deploy stolostron Foundation from code.
1414

1515
### Build images
1616

@@ -20,7 +20,7 @@ Run the following after cloning/pulling/making a change.
2020
make images
2121
```
2222

23-
`make images` will build a new image named `quay.io/open-cluster-management/multicloud-manager:latest`.
23+
`make images` will build a new image named `quay.io/stolostron/multicloud-manager:latest`.
2424

2525
### Prerequisites
2626

Diff for: cmd/agent/agent.go

+12-12
Original file line numberDiff line numberDiff line change
@@ -11,25 +11,25 @@ import (
1111

1212
openshiftclientset "github.com/openshift/client-go/config/clientset/versioned"
1313

14-
"github.com/open-cluster-management/multicloud-operators-foundation/cmd/agent/app"
15-
"github.com/open-cluster-management/multicloud-operators-foundation/cmd/agent/app/options"
16-
actionv1beta1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/action/v1beta1"
17-
clusterv1beta1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1"
18-
viewv1beta1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/view/v1beta1"
19-
actionctrl "github.com/open-cluster-management/multicloud-operators-foundation/pkg/klusterlet/action"
14+
"github.com/stolostron/multicloud-operators-foundation/cmd/agent/app"
15+
"github.com/stolostron/multicloud-operators-foundation/cmd/agent/app/options"
16+
actionv1beta1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/action/v1beta1"
17+
clusterv1beta1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1"
18+
viewv1beta1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/view/v1beta1"
19+
actionctrl "github.com/stolostron/multicloud-operators-foundation/pkg/klusterlet/action"
2020
"open-cluster-management.io/addon-framework/pkg/lease"
2121
clusterclientset "open-cluster-management.io/api/client/cluster/clientset/versioned"
2222
clusterinformers "open-cluster-management.io/api/client/cluster/informers/externalversions"
2323
clusterv1alpha1 "open-cluster-management.io/api/cluster/v1alpha1"
2424

25-
clusterclaimctl "github.com/open-cluster-management/multicloud-operators-foundation/pkg/klusterlet/clusterclaim"
26-
clusterinfoctl "github.com/open-cluster-management/multicloud-operators-foundation/pkg/klusterlet/clusterinfo"
27-
"github.com/open-cluster-management/multicloud-operators-foundation/pkg/klusterlet/nodecollector"
28-
viewctrl "github.com/open-cluster-management/multicloud-operators-foundation/pkg/klusterlet/view"
29-
"github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils"
30-
restutils "github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils/rest"
3125
routev1 "github.com/openshift/client-go/route/clientset/versioned"
3226
"github.com/spf13/pflag"
27+
clusterclaimctl "github.com/stolostron/multicloud-operators-foundation/pkg/klusterlet/clusterclaim"
28+
clusterinfoctl "github.com/stolostron/multicloud-operators-foundation/pkg/klusterlet/clusterinfo"
29+
"github.com/stolostron/multicloud-operators-foundation/pkg/klusterlet/nodecollector"
30+
viewctrl "github.com/stolostron/multicloud-operators-foundation/pkg/klusterlet/view"
31+
"github.com/stolostron/multicloud-operators-foundation/pkg/utils"
32+
restutils "github.com/stolostron/multicloud-operators-foundation/pkg/utils/rest"
3333
"k8s.io/apimachinery/pkg/runtime"
3434
"k8s.io/client-go/dynamic"
3535
"k8s.io/client-go/informers"

Diff for: cmd/agent/app/server.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import (
1010
"net/http"
1111
"path"
1212

13-
"github.com/open-cluster-management/multicloud-operators-foundation/cmd/agent/app/options"
14-
"github.com/open-cluster-management/multicloud-operators-foundation/pkg/klusterlet/agent"
13+
"github.com/stolostron/multicloud-operators-foundation/cmd/agent/app/options"
14+
"github.com/stolostron/multicloud-operators-foundation/pkg/klusterlet/agent"
1515
"k8s.io/client-go/kubernetes"
1616
certutil "k8s.io/client-go/util/cert"
1717
"k8s.io/client-go/util/keyutil"

Diff for: cmd/controller/app/options/options.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ func NewControllerRunOptions() *ControllerRunOptions {
3131
EnableAddonDeploy: false,
3232
QPS: 100.0,
3333
Burst: 200,
34-
AddonImage: "quay.io/open-cluster-management/multicloud-manager:latest",
34+
AddonImage: "quay.io/stolostron/multicloud-manager:latest",
3535
AddonInstallNamespace: "open-cluster-management-agent-addon",
3636
}
3737
}

Diff for: cmd/controller/app/server.go

+21-21
Original file line numberDiff line numberDiff line change
@@ -6,29 +6,29 @@ import (
66
"context"
77
"time"
88

9-
"github.com/open-cluster-management/multicloud-operators-foundation/cmd/controller/app/options"
10-
"github.com/open-cluster-management/multicloud-operators-foundation/pkg/addon"
11-
actionv1beta1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/action/v1beta1"
12-
"github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/imageregistry/v1alpha1"
13-
clusterinfov1beta1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1"
14-
inventoryv1alpha1 "github.com/open-cluster-management/multicloud-operators-foundation/pkg/apis/inventory/v1alpha1"
15-
"github.com/open-cluster-management/multicloud-operators-foundation/pkg/cache"
16-
"github.com/open-cluster-management/multicloud-operators-foundation/pkg/controllers/certrotation"
17-
"github.com/open-cluster-management/multicloud-operators-foundation/pkg/controllers/clusterca"
18-
"github.com/open-cluster-management/multicloud-operators-foundation/pkg/controllers/clusterinfo"
19-
"github.com/open-cluster-management/multicloud-operators-foundation/pkg/controllers/clusterrole"
20-
"github.com/open-cluster-management/multicloud-operators-foundation/pkg/controllers/clusterset/clusterclaim"
21-
"github.com/open-cluster-management/multicloud-operators-foundation/pkg/controllers/clusterset/clusterdeployment"
22-
clustersetmapper "github.com/open-cluster-management/multicloud-operators-foundation/pkg/controllers/clusterset/clustersetmapper"
23-
"github.com/open-cluster-management/multicloud-operators-foundation/pkg/controllers/clusterset/syncclusterrolebinding"
24-
"github.com/open-cluster-management/multicloud-operators-foundation/pkg/controllers/clusterset/syncrolebinding"
25-
"github.com/open-cluster-management/multicloud-operators-foundation/pkg/controllers/gc"
26-
"github.com/open-cluster-management/multicloud-operators-foundation/pkg/controllers/imageregistry"
27-
"github.com/open-cluster-management/multicloud-operators-foundation/pkg/controllers/inventory"
28-
"github.com/open-cluster-management/multicloud-operators-foundation/pkg/helpers"
29-
"github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils"
309
hivev1 "github.com/openshift/hive/apis/hive/v1"
3110
hiveinternalv1alpha1 "github.com/openshift/hive/apis/hiveinternal/v1alpha1"
11+
"github.com/stolostron/multicloud-operators-foundation/cmd/controller/app/options"
12+
"github.com/stolostron/multicloud-operators-foundation/pkg/addon"
13+
actionv1beta1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/action/v1beta1"
14+
"github.com/stolostron/multicloud-operators-foundation/pkg/apis/imageregistry/v1alpha1"
15+
clusterinfov1beta1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/internal.open-cluster-management.io/v1beta1"
16+
inventoryv1alpha1 "github.com/stolostron/multicloud-operators-foundation/pkg/apis/inventory/v1alpha1"
17+
"github.com/stolostron/multicloud-operators-foundation/pkg/cache"
18+
"github.com/stolostron/multicloud-operators-foundation/pkg/controllers/certrotation"
19+
"github.com/stolostron/multicloud-operators-foundation/pkg/controllers/clusterca"
20+
"github.com/stolostron/multicloud-operators-foundation/pkg/controllers/clusterinfo"
21+
"github.com/stolostron/multicloud-operators-foundation/pkg/controllers/clusterrole"
22+
"github.com/stolostron/multicloud-operators-foundation/pkg/controllers/clusterset/clusterclaim"
23+
"github.com/stolostron/multicloud-operators-foundation/pkg/controllers/clusterset/clusterdeployment"
24+
clustersetmapper "github.com/stolostron/multicloud-operators-foundation/pkg/controllers/clusterset/clustersetmapper"
25+
"github.com/stolostron/multicloud-operators-foundation/pkg/controllers/clusterset/syncclusterrolebinding"
26+
"github.com/stolostron/multicloud-operators-foundation/pkg/controllers/clusterset/syncrolebinding"
27+
"github.com/stolostron/multicloud-operators-foundation/pkg/controllers/gc"
28+
"github.com/stolostron/multicloud-operators-foundation/pkg/controllers/imageregistry"
29+
"github.com/stolostron/multicloud-operators-foundation/pkg/controllers/inventory"
30+
"github.com/stolostron/multicloud-operators-foundation/pkg/helpers"
31+
"github.com/stolostron/multicloud-operators-foundation/pkg/utils"
3232
"k8s.io/apimachinery/pkg/runtime"
3333
kubeinformers "k8s.io/client-go/informers"
3434
"k8s.io/client-go/kubernetes"

Diff for: cmd/controller/controller.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88
"os"
99
"time"
1010

11-
"github.com/open-cluster-management/multicloud-operators-foundation/cmd/controller/app"
12-
"github.com/open-cluster-management/multicloud-operators-foundation/cmd/controller/app/options"
11+
"github.com/stolostron/multicloud-operators-foundation/cmd/controller/app"
12+
"github.com/stolostron/multicloud-operators-foundation/cmd/controller/app/options"
1313
"sigs.k8s.io/controller-runtime/pkg/manager/signals"
1414

1515
"k8s.io/component-base/cli/flag"

Diff for: cmd/proxyserver/app/options/clientoptions.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import (
77
"path"
88
"time"
99

10-
"github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/getter"
11-
"github.com/open-cluster-management/multicloud-operators-foundation/pkg/utils"
1210
"github.com/spf13/pflag"
11+
"github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/getter"
12+
"github.com/stolostron/multicloud-operators-foundation/pkg/utils"
1313
"k8s.io/client-go/dynamic"
1414
certutil "k8s.io/client-go/util/cert"
1515
"k8s.io/client-go/util/keyutil"

Diff for: cmd/proxyserver/app/options/options.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ package options
55
import (
66
"fmt"
77

8-
"github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/api"
9-
"github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/apis/openapi"
108
"github.com/spf13/pflag"
9+
"github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/api"
10+
"github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/apis/openapi"
1111
openapinamer "k8s.io/apiserver/pkg/endpoints/openapi"
1212
genericapiserver "k8s.io/apiserver/pkg/server"
1313
genericapiserveroptions "k8s.io/apiserver/pkg/server/options"

Diff for: cmd/proxyserver/app/server.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
package app
44

55
import (
6-
"github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/api"
7-
"github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/getter"
6+
"github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/api"
7+
"github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/getter"
88
genericapiserver "k8s.io/apiserver/pkg/server"
99
"k8s.io/client-go/informers"
1010
clusterv1client "open-cluster-management.io/api/client/cluster/clientset/versioned"

Diff for: cmd/proxyserver/app/start.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import (
66
"strings"
77
"time"
88

9-
"github.com/open-cluster-management/multicloud-operators-foundation/cmd/proxyserver/app/options"
10-
"github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/controller"
11-
"github.com/open-cluster-management/multicloud-operators-foundation/pkg/proxyserver/getter"
9+
"github.com/stolostron/multicloud-operators-foundation/cmd/proxyserver/app/options"
10+
"github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/controller"
11+
"github.com/stolostron/multicloud-operators-foundation/pkg/proxyserver/getter"
1212
apilabels "k8s.io/apimachinery/pkg/labels"
1313
utilerrors "k8s.io/apimachinery/pkg/util/errors"
1414
"k8s.io/client-go/dynamic"

Diff for: cmd/proxyserver/proxyserver.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import (
88
"os"
99
"time"
1010

11-
"github.com/open-cluster-management/multicloud-operators-foundation/cmd/proxyserver/app"
12-
"github.com/open-cluster-management/multicloud-operators-foundation/cmd/proxyserver/app/options"
1311
"github.com/spf13/pflag"
12+
"github.com/stolostron/multicloud-operators-foundation/cmd/proxyserver/app"
13+
"github.com/stolostron/multicloud-operators-foundation/cmd/proxyserver/app/options"
1414
"k8s.io/apimachinery/pkg/util/wait"
1515
"k8s.io/component-base/cli/flag"
1616
"k8s.io/component-base/logs"

Diff for: cmd/webhook/app/start.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ import (
55
"net/http"
66
"time"
77

8-
"github.com/open-cluster-management/multicloud-operators-foundation/pkg/webhook/clusterset"
9-
"github.com/open-cluster-management/multicloud-operators-foundation/pkg/webhook/useridentity"
108
hiveclient "github.com/openshift/hive/pkg/client/clientset/versioned"
9+
"github.com/stolostron/multicloud-operators-foundation/pkg/webhook/clusterset"
10+
"github.com/stolostron/multicloud-operators-foundation/pkg/webhook/useridentity"
1111

12-
"github.com/open-cluster-management/multicloud-operators-foundation/cmd/webhook/app/options"
12+
"github.com/stolostron/multicloud-operators-foundation/cmd/webhook/app/options"
1313
"k8s.io/client-go/informers"
1414
"k8s.io/client-go/kubernetes"
1515

Diff for: cmd/webhook/webhook.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import (
88
"os"
99
"time"
1010

11-
"github.com/open-cluster-management/multicloud-operators-foundation/cmd/webhook/app"
12-
"github.com/open-cluster-management/multicloud-operators-foundation/cmd/webhook/app/options"
1311
"github.com/spf13/pflag"
12+
"github.com/stolostron/multicloud-operators-foundation/cmd/webhook/app"
13+
"github.com/stolostron/multicloud-operators-foundation/cmd/webhook/app/options"
1414
"k8s.io/apimachinery/pkg/util/wait"
1515
"k8s.io/component-base/cli/flag"
1616
"k8s.io/component-base/logs"

Diff for: deploy/foundation/hub/kustomization.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ resources:
33

44

55
images:
6-
- name: quay.io/open-cluster-management/multicloud-manager
7-
newName: quay.io/open-cluster-management/multicloud-manager
6+
- name: quay.io/stolostron/multicloud-manager
7+
newName: quay.io/stolostron/multicloud-manager
88
newTag: latest
99

1010

Diff for: deploy/foundation/hub/patches.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ spec:
1111
args:
1212
- "/controller"
1313
- "--enable-agent-deploy=true"
14-
- "--agent-addon-image=quay.io/open-cluster-management/multicloud-manager"
14+
- "--agent-addon-image=quay.io/stolostron/multicloud-manager"

Diff for: deploy/foundation/hub/resources/controller.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ spec:
1818
serviceAccountName: foundation-hub-sa
1919
containers:
2020
- name: ocm-controller
21-
image: quay.io/open-cluster-management/multicloud-manager
21+
image: quay.io/stolostron/multicloud-manager
2222
imagePullPolicy: Always
2323
args:
2424
- "/controller"

Diff for: deploy/foundation/hub/resources/proxyserver.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ spec:
1818
serviceAccountName: foundation-hub-sa
1919
containers:
2020
- name: ocm-proxyserver
21-
image: quay.io/open-cluster-management/multicloud-manager
21+
image: quay.io/stolostron/multicloud-manager
2222
imagePullPolicy: Always
2323
args:
2424
- "/proxyserver"

Diff for: deploy/foundation/hub/resources/webhook.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spec:
2121
- /webhook
2222
- --tls-cert-file=/var/run/ocm-webhook/tls.crt
2323
- --tls-private-key-file=/var/run/ocm-webhook/tls.key
24-
image: quay.io/open-cluster-management/multicloud-manager
24+
image: quay.io/stolostron/multicloud-manager
2525
imagePullPolicy: Always
2626
ports:
2727
- containerPort: 8000

Diff for: go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/open-cluster-management/multicloud-operators-foundation
1+
module github.com/stolostron/multicloud-operators-foundation
22

33
go 1.17
44

Diff for: hack/update-apiserver-gen.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ realpath() {
1616

1717
REPO_ROOT=$(realpath "$(dirname "${BASH_SOURCE[0]}")"/..)
1818
BINDIR="${REPO_ROOT}"/_output
19-
SC_PKG='github.com/open-cluster-management/multicloud-operators-foundation'
19+
SC_PKG='github.com/stolostron/multicloud-operators-foundation'
2020

2121
# Generate defaults
2222
"${BINDIR}"/defaulter-gen "$@" \

Diff for: hack/update-protobuf.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ realpath() {
1616

1717
REPO_ROOT=$(realpath "$(dirname "${BASH_SOURCE[0]}")"/..)
1818
BINDIR="${REPO_ROOT}"/_output
19-
SC_PKG='github.com/open-cluster-management/multicloud-operators-foundation'
19+
SC_PKG='github.com/stolostron/multicloud-operators-foundation'
2020

2121
if [[ "$(protoc --version)" != "libprotoc 3.0."* ]]; then
2222
echo "Generating protobuf requires protoc 3.0.x. Please download and

Diff for: pkg/addon/addon.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"fmt"
77
"reflect"
88

9-
"github.com/open-cluster-management/multicloud-operators-foundation/pkg/helpers"
109
"github.com/openshift/library-go/pkg/assets"
10+
"github.com/stolostron/multicloud-operators-foundation/pkg/helpers"
1111
certificatesv1 "k8s.io/api/certificates/v1"
1212
"k8s.io/apimachinery/pkg/api/errors"
1313
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

0 commit comments

Comments
 (0)