f501c76acc
Also: - Make our code generator script work with Go 1.17 - Make our update.sh script work on linux - Update the patch versions of the old Kube versions that we were using to generate code (see kube-versions.txt) - Use our container images from ghcr instead of projects.registry.vmware.com for codegen purposes - Make it easier to debug in the future by passing "-v" to the Kube codegen scripts - Updated copyright years to make commit checks pass
39 lines
1.1 KiB
Go
Generated
39 lines
1.1 KiB
Go
Generated
// Copyright 2021-2022 the Pinniped contributors. All Rights Reserved.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package identity
|
|
|
|
import (
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
"k8s.io/apimachinery/pkg/runtime/schema"
|
|
)
|
|
|
|
const GroupName = "identity.concierge.pinniped.dev"
|
|
|
|
// SchemeGroupVersion is group version used to register these objects.
|
|
var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: runtime.APIVersionInternal}
|
|
|
|
// Kind takes an unqualified kind and returns back a Group qualified GroupKind.
|
|
func Kind(kind string) schema.GroupKind {
|
|
return SchemeGroupVersion.WithKind(kind).GroupKind()
|
|
}
|
|
|
|
// Resource takes an unqualified resource and returns back a Group qualified GroupResource.
|
|
func Resource(resource string) schema.GroupResource {
|
|
return SchemeGroupVersion.WithResource(resource).GroupResource()
|
|
}
|
|
|
|
var (
|
|
SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes)
|
|
AddToScheme = SchemeBuilder.AddToScheme
|
|
)
|
|
|
|
// Adds the list of known types to the given scheme.
|
|
func addKnownTypes(scheme *runtime.Scheme) error {
|
|
scheme.AddKnownTypes(SchemeGroupVersion,
|
|
&WhoAmIRequest{},
|
|
&WhoAmIRequestList{},
|
|
)
|
|
return nil
|
|
}
|