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

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

View File

@@ -125,7 +125,11 @@ func (in *Placement) DeepCopyInto(out *Placement) {
*out = make([]Cluster, len(*in)) *out = make([]Cluster, len(*in))
copy(*out, *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. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Placement.