cbe4c1b370
Signed-off-by: Matt Moyer <moyerm@vmware.com>
22 lines
634 B
Go
22 lines
634 B
Go
/*
|
|
Copyright 2020 VMware, Inc.
|
|
SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
package install
|
|
|
|
import (
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
utilruntime "k8s.io/apimachinery/pkg/util/runtime"
|
|
|
|
"github.com/suzerain-io/placeholder-name/kubernetes/1.19/api/apis/placeholder"
|
|
"github.com/suzerain-io/placeholder-name/kubernetes/1.19/api/apis/placeholder/v1alpha1"
|
|
)
|
|
|
|
// Install registers the API group and adds types to a scheme.
|
|
func Install(scheme *runtime.Scheme) {
|
|
utilruntime.Must(placeholder.AddToScheme(scheme))
|
|
utilruntime.Must(v1alpha1.AddToScheme(scheme))
|
|
utilruntime.Must(scheme.SetVersionPriority(v1alpha1.SchemeGroupVersion))
|
|
}
|