Documentation ¶
Index ¶
Constants ¶
const GroupName = "openstack.provider.extensions.config.gardener.cloud"
GroupName is the group name use in this package
Variables ¶
var ( // SchemeBuilder used to register the Shoot resource. SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes) // AddToScheme is a pointer to SchemeBuilder.AddToScheme. AddToScheme = SchemeBuilder.AddToScheme )
var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: runtime.APIVersionInternal}
SchemeGroupVersion is group version used to register these objects
Functions ¶
func Resource ¶
func Resource(resource string) schema.GroupResource
Resource takes an unqualified resource and returns a Group qualified GroupResource
Types ¶
type CloudProfileMapping ¶
type CloudProfileMapping struct { // Name is the name of the CloudProfile. Name string // Image is the name of the image. Image string }
CloudProfileMapping is a mapping to the correct image for the given cloudprofile.
func (*CloudProfileMapping) DeepCopy ¶
func (in *CloudProfileMapping) DeepCopy() *CloudProfileMapping
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CloudProfileMapping.
func (*CloudProfileMapping) DeepCopyInto ¶
func (in *CloudProfileMapping) DeepCopyInto(out *CloudProfileMapping)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ControllerConfiguration ¶
type ControllerConfiguration struct { metav1.TypeMeta // MachineImages is the list of machine images that are understood by the controller. It maps // logical names and versions to OpenStack-specific identifiers. MachineImages []MachineImage }
ControllerConfiguration defines the configuration for the OpenStack provider.
func (*ControllerConfiguration) DeepCopy ¶
func (in *ControllerConfiguration) DeepCopy() *ControllerConfiguration
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ControllerConfiguration.
func (*ControllerConfiguration) DeepCopyInto ¶
func (in *ControllerConfiguration) DeepCopyInto(out *ControllerConfiguration)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ControllerConfiguration) DeepCopyObject ¶
func (in *ControllerConfiguration) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type MachineImage ¶
type MachineImage struct { // Name is the logical name of the machine image. Name string // Version is the logical version of the machine image. Version string // CloudProfiles is a mapping to the correct image for the given cloudprofile. CloudProfiles []CloudProfileMapping }
MachineImage is a mapping from logical names and versions to OpenStack-specific identifiers.
func (*MachineImage) DeepCopy ¶
func (in *MachineImage) DeepCopy() *MachineImage
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MachineImage.
func (*MachineImage) DeepCopyInto ¶
func (in *MachineImage) DeepCopyInto(out *MachineImage)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.