mirror of
https://github.com/kairos-io/osbuilder.git
synced 2025-08-25 19:08:55 +00:00
fix osbuilder
This commit is contained in:
parent
27ca05b9d4
commit
7b65c4872f
@ -26,6 +26,27 @@ import (
|
|||||||
runtime "k8s.io/apimachinery/pkg/runtime"
|
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 *CloudConfig) DeepCopyInto(out *CloudConfig) {
|
||||||
|
*out = *in
|
||||||
|
if in.Users != nil {
|
||||||
|
in, out := &in.Users, &out.Users
|
||||||
|
*out = make(Users, len(*in))
|
||||||
|
copy(*out, *in)
|
||||||
|
}
|
||||||
|
out.Plural = in.Plural
|
||||||
|
}
|
||||||
|
|
||||||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CloudConfig.
|
||||||
|
func (in *CloudConfig) DeepCopy() *CloudConfig {
|
||||||
|
if in == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
out := new(CloudConfig)
|
||||||
|
in.DeepCopyInto(out)
|
||||||
|
return out
|
||||||
|
}
|
||||||
|
|
||||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||||
func (in *ExporterSpec) DeepCopyInto(out *ExporterSpec) {
|
func (in *ExporterSpec) DeepCopyInto(out *ExporterSpec) {
|
||||||
*out = *in
|
*out = *in
|
||||||
@ -201,6 +222,21 @@ func (in *OSArtifactStatus) DeepCopy() *OSArtifactStatus {
|
|||||||
return out
|
return out
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||||
|
func (in *Plural) DeepCopyInto(out *Plural) {
|
||||||
|
*out = *in
|
||||||
|
}
|
||||||
|
|
||||||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Plural.
|
||||||
|
func (in *Plural) DeepCopy() *Plural {
|
||||||
|
if in == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
out := new(Plural)
|
||||||
|
in.DeepCopyInto(out)
|
||||||
|
return out
|
||||||
|
}
|
||||||
|
|
||||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||||
func (in *RegistrySpec) DeepCopyInto(out *RegistrySpec) {
|
func (in *RegistrySpec) DeepCopyInto(out *RegistrySpec) {
|
||||||
*out = *in
|
*out = *in
|
||||||
@ -221,3 +257,37 @@ func (in *RegistrySpec) DeepCopy() *RegistrySpec {
|
|||||||
in.DeepCopyInto(out)
|
in.DeepCopyInto(out)
|
||||||
return out
|
return out
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||||
|
func (in *User) DeepCopyInto(out *User) {
|
||||||
|
*out = *in
|
||||||
|
}
|
||||||
|
|
||||||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new User.
|
||||||
|
func (in *User) DeepCopy() *User {
|
||||||
|
if in == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
out := new(User)
|
||||||
|
in.DeepCopyInto(out)
|
||||||
|
return out
|
||||||
|
}
|
||||||
|
|
||||||
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||||
|
func (in Users) DeepCopyInto(out *Users) {
|
||||||
|
{
|
||||||
|
in := &in
|
||||||
|
*out = make(Users, len(*in))
|
||||||
|
copy(*out, *in)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Users.
|
||||||
|
func (in Users) DeepCopy() Users {
|
||||||
|
if in == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
out := new(Users)
|
||||||
|
in.DeepCopyInto(out)
|
||||||
|
return *out
|
||||||
|
}
|
||||||
|
@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
name: osbuilder
|
name: osbuilder
|
||||||
description: A Helm chart for osbuilder
|
description: A Helm chart for osbuilder
|
||||||
appVersion: 0.6.0
|
appVersion: 0.6.0
|
||||||
version: 0.2.0
|
version: 0.2.1
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: cert-manager
|
- name: cert-manager
|
||||||
version: v1.16.3
|
version: v1.16.3
|
||||||
|
@ -291,6 +291,8 @@ spec:
|
|||||||
- rpi3
|
- rpi3
|
||||||
- rpi4
|
- rpi4
|
||||||
type: string
|
type: string
|
||||||
|
project:
|
||||||
|
type: string
|
||||||
type: object
|
type: object
|
||||||
status:
|
status:
|
||||||
description: OSArtifactStatus defines the observed state of OSArtifact
|
description: OSArtifactStatus defines the observed state of OSArtifact
|
||||||
|
@ -291,6 +291,8 @@ spec:
|
|||||||
- rpi3
|
- rpi3
|
||||||
- rpi4
|
- rpi4
|
||||||
type: string
|
type: string
|
||||||
|
project:
|
||||||
|
type: string
|
||||||
type: object
|
type: object
|
||||||
status:
|
status:
|
||||||
description: OSArtifactStatus defines the observed state of OSArtifact
|
description: OSArtifactStatus defines the observed state of OSArtifact
|
||||||
|
Loading…
Reference in New Issue
Block a user