mirror of
https://github.com/open-cluster-management-io/ocm.git
synced 2026-05-10 19:27:59 +00:00
* Upgrade api and library Signed-off-by: Jian Qiu <jqiu@redhat.com> * update permission for operator Signed-off-by: Jian Qiu <jqiu@redhat.com>
29 lines
631 B
Go
29 lines
631 B
Go
package machine
|
|
|
|
import (
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
"k8s.io/apimachinery/pkg/runtime/schema"
|
|
|
|
machinev1beta1 "github.com/openshift/api/machine/v1beta1"
|
|
)
|
|
|
|
const (
|
|
GroupName = "machine.openshift.io"
|
|
)
|
|
|
|
var (
|
|
schemeBuilder = runtime.NewSchemeBuilder(
|
|
machinev1beta1.Install,
|
|
)
|
|
// Install is a function which adds every version of this group to a scheme
|
|
Install = schemeBuilder.AddToScheme
|
|
)
|
|
|
|
func Resource(resource string) schema.GroupResource {
|
|
return schema.GroupResource{Group: GroupName, Resource: resource}
|
|
}
|
|
|
|
func Kind(kind string) schema.GroupKind {
|
|
return schema.GroupKind{Group: GroupName, Kind: kind}
|
|
}
|