Adding defaults to Deployment

This commit is contained in:
nikhiljindal
2015-09-01 02:48:53 -07:00
parent f7123ac8c6
commit 30a58321e8
13 changed files with 253 additions and 77 deletions

View File

@@ -172,6 +172,9 @@ func (intstr IntOrString) MarshalJSON() ([]byte, error) {
}
func (intstr *IntOrString) Fuzz(c fuzz.Continue) {
if intstr == nil {
return
}
if c.RandBool() {
intstr.Kind = IntstrInt
c.Fuzz(&intstr.IntVal)