Merge pull request #1639 from dbachrach/b-zero-replica-formatting

Fix yaml formatting of replicas count when count is 0
This commit is contained in:
Kubernetes Prow Robot
2019-10-15 17:00:13 -07:00
committed by GitHub

View File

@@ -12,5 +12,5 @@ type Replica struct {
Name string `json:"name,omitempty" yaml:"name,omitempty"`
// The number of replicas required.
Count int64 `json:"count,omitempty" yaml:"count,omitempty"`
Count int64 `json:"count" yaml:"count"`
}