mirror of
https://github.com/open-cluster-management-io/ocm.git
synced 2026-05-20 16:14:23 +00:00
* support deploy klusterlet outside of managed cluster Signed-off-by: zhujian <jiazhu@redhat.com> * create manged cluster kubeconfig by sa syncer Signed-off-by: zhujian <jiazhu@redhat.com> * fix CI issues Signed-off-by: zhujian <jiazhu@redhat.com> * add unit test Signed-off-by: zhujian <jiazhu@redhat.com> * separate the manifests and operations for klusterlet operator Signed-off-by: zhujian <jiazhu@redhat.com> * add unit test Signed-off-by: zhujian <jiazhu@redhat.com> * add integration test Signed-off-by: zhujian <jiazhu@redhat.com> * add e2e test Signed-off-by: zhujian <jiazhu@redhat.com> * address code review comments Signed-off-by: zhujian <jiazhu@redhat.com> * distinguish the RBAC resource names of managed cluster and management cluster Signed-off-by: zhujian <jiazhu@redhat.com> * ensure the klusterlet namespace early Signed-off-by: zhujian <jiazhu@redhat.com> * update csv Signed-off-by: zhujian <jiazhu@redhat.com>
16 lines
517 B
Go
16 lines
517 B
Go
//go:build tools
|
|
// +build tools
|
|
|
|
// go mod won't pull in code that isn't depended upon, but we have some code we don't depend on from code that must be included
|
|
// for our build to work.
|
|
package dependencymagnet
|
|
|
|
import (
|
|
_ "github.com/openshift/build-machinery-go"
|
|
_ "open-cluster-management.io/api/addon/v1alpha1"
|
|
_ "open-cluster-management.io/api/cluster/v1"
|
|
_ "open-cluster-management.io/api/cluster/v1alpha1"
|
|
_ "open-cluster-management.io/api/cluster/v1beta1"
|
|
_ "open-cluster-management.io/api/work/v1"
|
|
)
|