mirror of
https://github.com/rancher/types.git
synced 2025-07-14 21:54:03 +00:00
commit
5099589e46
@ -266,6 +266,8 @@ type RKEConfigNodePlan struct {
|
||||
Processes map[string]Process `json:"processes,omitempty"`
|
||||
// List of portchecks that should be open on the node
|
||||
PortChecks []PortCheck `json:"portChecks,omitempty"`
|
||||
// List of files to deploy on the node
|
||||
Files []File `json:"files,omitempty"`
|
||||
}
|
||||
|
||||
type Process struct {
|
||||
|
@ -5472,6 +5472,11 @@ func (in *RKEConfigNodePlan) DeepCopyInto(out *RKEConfigNodePlan) {
|
||||
*out = make([]PortCheck, len(*in))
|
||||
copy(*out, *in)
|
||||
}
|
||||
if in.Files != nil {
|
||||
in, out := &in.Files, &out.Files
|
||||
*out = make([]File, len(*in))
|
||||
copy(*out, *in)
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user