fix: federatedworkspace clusterSelector zero value

Signed-off-by: hongming <talonwan@yunify.com>
This commit is contained in:
hongming
2020-06-24 16:03:08 +08:00
parent d91047588f
commit a0a53a69af
2 changed files with 7 additions and 3 deletions

View File

@@ -69,8 +69,8 @@ type Template struct {
}
type Placement struct {
Clusters []Cluster `json:"clusters,omitempty"`
ClusterSelector ClusterSelector `json:"clusterSelector,omitempty"`
Clusters []Cluster `json:"clusters,omitempty"`
ClusterSelector *ClusterSelector `json:"clusterSelector,omitempty"`
}
type ClusterSelector struct {

View File

@@ -125,7 +125,11 @@ func (in *Placement) DeepCopyInto(out *Placement) {
*out = make([]Cluster, len(*in))
copy(*out, *in)
}
in.ClusterSelector.DeepCopyInto(&out.ClusterSelector)
if in.ClusterSelector != nil {
in, out := &in.ClusterSelector, &out.ClusterSelector
*out = new(ClusterSelector)
(*in).DeepCopyInto(*out)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Placement.