mirror of
https://github.com/1Password/onepassword-operator.git
synced 2025-10-22 07:28:06 +00:00
20 lines
608 B
Go
20 lines
608 B
Go
// NOTE: Boilerplate only. Ignore this file.
|
|
|
|
// Package v1 contains API Schema definitions for the onepassword v1 API group
|
|
// +k8s:deepcopy-gen=package,register
|
|
// +groupName=onepassword.com
|
|
package v1
|
|
|
|
import (
|
|
"k8s.io/apimachinery/pkg/runtime/schema"
|
|
"sigs.k8s.io/controller-runtime/pkg/scheme"
|
|
)
|
|
|
|
var (
|
|
// SchemeGroupVersion is group version used to register these objects
|
|
SchemeGroupVersion = schema.GroupVersion{Group: "onepassword.com", Version: "v1"}
|
|
|
|
// SchemeBuilder is used to add go types to the GroupVersionKind scheme
|
|
SchemeBuilder = &scheme.Builder{GroupVersion: SchemeGroupVersion}
|
|
)
|