Files
Jian Zhuandgemini f989a37e1a 🌱 Upgrade golang to 1.24 and helm to 3.18.4 (#1085)
* Upgrade golang to 1.24

Signed-off-by: zhujian <jiazhu@redhat.com>

* Fix lint errors

Co-authored-by: gemini <gemini@google.com>
Signed-off-by: zhujian <jiazhu@redhat.com>

* upgrade sdk-go to latest

Signed-off-by: zhujian <jiazhu@redhat.com>

---------

Signed-off-by: zhujian <jiazhu@redhat.com>
Co-authored-by: gemini <gemini@google.com>
2025-07-28 02:13:36 +00:00

408 lines
11 KiB
Go
Generated

//go:build !ignore_autogenerated
// +build !ignore_autogenerated
// Code generated by codegen. DO NOT EDIT.
package v1alpha1
import (
v1 "k8s.io/api/core/v1"
runtime "k8s.io/apimachinery/pkg/runtime"
)
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *AdditionalBlockDevice) DeepCopyInto(out *AdditionalBlockDevice) {
*out = *in
in.Storage.DeepCopyInto(&out.Storage)
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AdditionalBlockDevice.
func (in *AdditionalBlockDevice) DeepCopy() *AdditionalBlockDevice {
if in == nil {
return nil
}
out := new(AdditionalBlockDevice)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *AddressPair) DeepCopyInto(out *AddressPair) {
*out = *in
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AddressPair.
func (in *AddressPair) DeepCopy() *AddressPair {
if in == nil {
return nil
}
out := new(AddressPair)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *BlockDeviceStorage) DeepCopyInto(out *BlockDeviceStorage) {
*out = *in
if in.Volume != nil {
in, out := &in.Volume, &out.Volume
*out = new(BlockDeviceVolume)
**out = **in
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BlockDeviceStorage.
func (in *BlockDeviceStorage) DeepCopy() *BlockDeviceStorage {
if in == nil {
return nil
}
out := new(BlockDeviceStorage)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *BlockDeviceVolume) DeepCopyInto(out *BlockDeviceVolume) {
*out = *in
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BlockDeviceVolume.
func (in *BlockDeviceVolume) DeepCopy() *BlockDeviceVolume {
if in == nil {
return nil
}
out := new(BlockDeviceVolume)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *Filter) DeepCopyInto(out *Filter) {
*out = *in
if in.DeprecatedAdminStateUp != nil {
in, out := &in.DeprecatedAdminStateUp, &out.DeprecatedAdminStateUp
*out = new(bool)
**out = **in
}
if in.DeprecatedShared != nil {
in, out := &in.DeprecatedShared, &out.DeprecatedShared
*out = new(bool)
**out = **in
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Filter.
func (in *Filter) DeepCopy() *Filter {
if in == nil {
return nil
}
out := new(Filter)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *FixedIPs) DeepCopyInto(out *FixedIPs) {
*out = *in
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FixedIPs.
func (in *FixedIPs) DeepCopy() *FixedIPs {
if in == nil {
return nil
}
out := new(FixedIPs)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *NetworkParam) DeepCopyInto(out *NetworkParam) {
*out = *in
in.Filter.DeepCopyInto(&out.Filter)
if in.Subnets != nil {
in, out := &in.Subnets, &out.Subnets
*out = make([]SubnetParam, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
if in.PortTags != nil {
in, out := &in.PortTags, &out.PortTags
*out = make([]string, len(*in))
copy(*out, *in)
}
if in.Profile != nil {
in, out := &in.Profile, &out.Profile
*out = make(map[string]string, len(*in))
for key, val := range *in {
(*out)[key] = val
}
}
if in.PortSecurity != nil {
in, out := &in.PortSecurity, &out.PortSecurity
*out = new(bool)
**out = **in
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NetworkParam.
func (in *NetworkParam) DeepCopy() *NetworkParam {
if in == nil {
return nil
}
out := new(NetworkParam)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *OpenstackProviderSpec) DeepCopyInto(out *OpenstackProviderSpec) {
*out = *in
out.TypeMeta = in.TypeMeta
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
if in.CloudsSecret != nil {
in, out := &in.CloudsSecret, &out.CloudsSecret
*out = new(v1.SecretReference)
**out = **in
}
if in.Networks != nil {
in, out := &in.Networks, &out.Networks
*out = make([]NetworkParam, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
if in.Ports != nil {
in, out := &in.Ports, &out.Ports
*out = make([]PortOpts, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
if in.SecurityGroups != nil {
in, out := &in.SecurityGroups, &out.SecurityGroups
*out = make([]SecurityGroupParam, len(*in))
copy(*out, *in)
}
if in.UserDataSecret != nil {
in, out := &in.UserDataSecret, &out.UserDataSecret
*out = new(v1.SecretReference)
**out = **in
}
if in.Tags != nil {
in, out := &in.Tags, &out.Tags
*out = make([]string, len(*in))
copy(*out, *in)
}
if in.ServerMetadata != nil {
in, out := &in.ServerMetadata, &out.ServerMetadata
*out = make(map[string]string, len(*in))
for key, val := range *in {
(*out)[key] = val
}
}
if in.ConfigDrive != nil {
in, out := &in.ConfigDrive, &out.ConfigDrive
*out = new(bool)
**out = **in
}
if in.RootVolume != nil {
in, out := &in.RootVolume, &out.RootVolume
*out = new(RootVolume)
**out = **in
}
if in.AdditionalBlockDevices != nil {
in, out := &in.AdditionalBlockDevices, &out.AdditionalBlockDevices
*out = make([]AdditionalBlockDevice, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OpenstackProviderSpec.
func (in *OpenstackProviderSpec) DeepCopy() *OpenstackProviderSpec {
if in == nil {
return nil
}
out := new(OpenstackProviderSpec)
in.DeepCopyInto(out)
return out
}
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (in *OpenstackProviderSpec) DeepCopyObject() runtime.Object {
if c := in.DeepCopy(); c != nil {
return c
}
return nil
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *PortOpts) DeepCopyInto(out *PortOpts) {
*out = *in
if in.AdminStateUp != nil {
in, out := &in.AdminStateUp, &out.AdminStateUp
*out = new(bool)
**out = **in
}
if in.FixedIPs != nil {
in, out := &in.FixedIPs, &out.FixedIPs
*out = make([]FixedIPs, len(*in))
copy(*out, *in)
}
if in.SecurityGroups != nil {
in, out := &in.SecurityGroups, &out.SecurityGroups
*out = new([]string)
if **in != nil {
in, out := *in, *out
*out = make([]string, len(*in))
copy(*out, *in)
}
}
if in.AllowedAddressPairs != nil {
in, out := &in.AllowedAddressPairs, &out.AllowedAddressPairs
*out = make([]AddressPair, len(*in))
copy(*out, *in)
}
if in.Tags != nil {
in, out := &in.Tags, &out.Tags
*out = make([]string, len(*in))
copy(*out, *in)
}
if in.Profile != nil {
in, out := &in.Profile, &out.Profile
*out = make(map[string]string, len(*in))
for key, val := range *in {
(*out)[key] = val
}
}
if in.PortSecurity != nil {
in, out := &in.PortSecurity, &out.PortSecurity
*out = new(bool)
**out = **in
}
if in.Trunk != nil {
in, out := &in.Trunk, &out.Trunk
*out = new(bool)
**out = **in
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PortOpts.
func (in *PortOpts) DeepCopy() *PortOpts {
if in == nil {
return nil
}
out := new(PortOpts)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *RootVolume) DeepCopyInto(out *RootVolume) {
*out = *in
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RootVolume.
func (in *RootVolume) DeepCopy() *RootVolume {
if in == nil {
return nil
}
out := new(RootVolume)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *SecurityGroupFilter) DeepCopyInto(out *SecurityGroupFilter) {
*out = *in
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecurityGroupFilter.
func (in *SecurityGroupFilter) DeepCopy() *SecurityGroupFilter {
if in == nil {
return nil
}
out := new(SecurityGroupFilter)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *SecurityGroupParam) DeepCopyInto(out *SecurityGroupParam) {
*out = *in
out.Filter = in.Filter
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecurityGroupParam.
func (in *SecurityGroupParam) DeepCopy() *SecurityGroupParam {
if in == nil {
return nil
}
out := new(SecurityGroupParam)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *SubnetFilter) DeepCopyInto(out *SubnetFilter) {
*out = *in
if in.DeprecatedEnableDHCP != nil {
in, out := &in.DeprecatedEnableDHCP, &out.DeprecatedEnableDHCP
*out = new(bool)
**out = **in
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SubnetFilter.
func (in *SubnetFilter) DeepCopy() *SubnetFilter {
if in == nil {
return nil
}
out := new(SubnetFilter)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *SubnetParam) DeepCopyInto(out *SubnetParam) {
*out = *in
in.Filter.DeepCopyInto(&out.Filter)
if in.PortTags != nil {
in, out := &in.PortTags, &out.PortTags
*out = make([]string, len(*in))
copy(*out, *in)
}
if in.PortSecurity != nil {
in, out := &in.PortSecurity, &out.PortSecurity
*out = new(bool)
**out = **in
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SubnetParam.
func (in *SubnetParam) DeepCopy() *SubnetParam {
if in == nil {
return nil
}
out := new(SubnetParam)
in.DeepCopyInto(out)
return out
}