Implement ReplicaSets client.

This commit is contained in:
Madhusudan.C.S
2016-01-15 16:28:11 -08:00
parent 992a85950f
commit c25a0ce00d
8 changed files with 580 additions and 0 deletions

View File

@@ -337,6 +337,10 @@ func (c *FakeExperimental) ThirdPartyResources(namespace string) client.ThirdPar
return &FakeThirdPartyResources{Fake: c, Namespace: namespace}
}
func (c *FakeExperimental) ReplicaSets(namespace string) client.ReplicaSetInterface {
return &FakeReplicaSets{Fake: c, Namespace: namespace}
}
type FakeDiscovery struct {
*Fake
}