mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-05-02 06:16:08 -04:00
upgrade: support Kubernetes components (#839)
* upgrade: add Kubernetes components to NodeVersion * update rfc
This commit is contained in:
parent
4b43311fbd
commit
f14af0c3eb
56 changed files with 897 additions and 738 deletions
|
@ -201,7 +201,7 @@ func (in *JoiningNodeStatus) DeepCopy() *JoiningNodeStatus {
|
|||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *NodeImage) DeepCopyInto(out *NodeImage) {
|
||||
func (in *NodeVersion) DeepCopyInto(out *NodeVersion) {
|
||||
*out = *in
|
||||
out.TypeMeta = in.TypeMeta
|
||||
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
||||
|
@ -209,18 +209,18 @@ func (in *NodeImage) DeepCopyInto(out *NodeImage) {
|
|||
in.Status.DeepCopyInto(&out.Status)
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NodeImage.
|
||||
func (in *NodeImage) DeepCopy() *NodeImage {
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NodeVersion.
|
||||
func (in *NodeVersion) DeepCopy() *NodeVersion {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(NodeImage)
|
||||
out := new(NodeVersion)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
||||
func (in *NodeImage) DeepCopyObject() runtime.Object {
|
||||
func (in *NodeVersion) DeepCopyObject() runtime.Object {
|
||||
if c := in.DeepCopy(); c != nil {
|
||||
return c
|
||||
}
|
||||
|
@ -228,31 +228,31 @@ func (in *NodeImage) DeepCopyObject() runtime.Object {
|
|||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *NodeImageList) DeepCopyInto(out *NodeImageList) {
|
||||
func (in *NodeVersionList) DeepCopyInto(out *NodeVersionList) {
|
||||
*out = *in
|
||||
out.TypeMeta = in.TypeMeta
|
||||
in.ListMeta.DeepCopyInto(&out.ListMeta)
|
||||
if in.Items != nil {
|
||||
in, out := &in.Items, &out.Items
|
||||
*out = make([]NodeImage, len(*in))
|
||||
*out = make([]NodeVersion, len(*in))
|
||||
for i := range *in {
|
||||
(*in)[i].DeepCopyInto(&(*out)[i])
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NodeImageList.
|
||||
func (in *NodeImageList) DeepCopy() *NodeImageList {
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NodeVersionList.
|
||||
func (in *NodeVersionList) DeepCopy() *NodeVersionList {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(NodeImageList)
|
||||
out := new(NodeVersionList)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
||||
func (in *NodeImageList) DeepCopyObject() runtime.Object {
|
||||
func (in *NodeVersionList) DeepCopyObject() runtime.Object {
|
||||
if c := in.DeepCopy(); c != nil {
|
||||
return c
|
||||
}
|
||||
|
@ -260,22 +260,22 @@ func (in *NodeImageList) DeepCopyObject() runtime.Object {
|
|||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *NodeImageSpec) DeepCopyInto(out *NodeImageSpec) {
|
||||
func (in *NodeVersionSpec) DeepCopyInto(out *NodeVersionSpec) {
|
||||
*out = *in
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NodeImageSpec.
|
||||
func (in *NodeImageSpec) DeepCopy() *NodeImageSpec {
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NodeVersionSpec.
|
||||
func (in *NodeVersionSpec) DeepCopy() *NodeVersionSpec {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(NodeImageSpec)
|
||||
out := new(NodeVersionSpec)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *NodeImageStatus) DeepCopyInto(out *NodeImageStatus) {
|
||||
func (in *NodeVersionStatus) DeepCopyInto(out *NodeVersionStatus) {
|
||||
*out = *in
|
||||
if in.Outdated != nil {
|
||||
in, out := &in.Outdated, &out.Outdated
|
||||
|
@ -326,12 +326,12 @@ func (in *NodeImageStatus) DeepCopyInto(out *NodeImageStatus) {
|
|||
}
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NodeImageStatus.
|
||||
func (in *NodeImageStatus) DeepCopy() *NodeImageStatus {
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NodeVersionStatus.
|
||||
func (in *NodeVersionStatus) DeepCopy() *NodeVersionStatus {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(NodeImageStatus)
|
||||
out := new(NodeVersionStatus)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue