Merge pull request #14459 from bprashanth/l7_ingress_resource_refactor

Auto commit by PR queue bot
This commit is contained in:
k8s-merge-robot
2015-10-02 10:20:48 -07:00
23 changed files with 1577 additions and 166 deletions

View File

@@ -327,3 +327,7 @@ func (c *FakeExperimental) Scales(namespace string) client.ScaleInterface {
func (c *FakeExperimental) Jobs(namespace string) client.JobInterface {
return &FakeJobs{Fake: c, Namespace: namespace}
}
func (c *FakeExperimental) Ingress(namespace string) client.IngressInterface {
return &FakeIngress{Fake: c, Namespace: namespace}
}