21 lines
581 B
Go
21 lines
581 B
Go
package apis
|
|
|
|
import (
|
|
"github.com/jenkinsci/kubernetes-operator/pkg/apis/jenkins/v1alpha2"
|
|
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
)
|
|
|
|
// AddToSchemes may be used to add all resources defined in the project to a Scheme.
|
|
var AddToSchemes runtime.SchemeBuilder
|
|
|
|
// AddToScheme adds all Resources to the Scheme.
|
|
func AddToScheme(s *runtime.Scheme) error {
|
|
return AddToSchemes.AddToScheme(s)
|
|
}
|
|
|
|
func init() {
|
|
// Register the types with the Scheme so the components can map objects to GroupVersionKinds and back
|
|
AddToSchemes = append(AddToSchemes, v1alpha2.SchemeBuilder.AddToScheme)
|
|
}
|