grep sed ExperimentalClient

This commit is contained in:
Chao Xu
2015-10-12 11:06:42 -07:00
parent 9aa163aa88
commit 9a812bd0c5
12 changed files with 26 additions and 26 deletions

View File

@@ -42,12 +42,12 @@ type IngressInterface interface {
// ingress implements IngressNamespacer interface
type ingress struct {
r *ExperimentalClient
r *ExtensionsClient
ns string
}
// newIngress returns a ingress
func newIngress(c *ExperimentalClient, namespace string) *ingress {
func newIngress(c *ExtensionsClient, namespace string) *ingress {
return &ingress{c, namespace}
}