forked from kubernetes/kubernetes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request kubernetes#30112 from nikhiljindal/federationIngre…
…ssAPI Automatic merge from submit-queue Adding ingress resource to federation apiserver Fixes kubernetes#29342 cc @kubernetes/sig-cluster-federation <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.kubernetes.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.kubernetes.io/reviews/kubernetes/kubernetes/30112) <!-- Reviewable:end -->
- Loading branch information
Showing
30 changed files
with
726 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
127 changes: 127 additions & 0 deletions
127
..._generated/federation_internalclientset/typed/extensions/unversioned/fake/fake_ingress.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
/* | ||
Copyright 2016 The Kubernetes Authors. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package fake | ||
|
||
import ( | ||
api "k8s.io/kubernetes/pkg/api" | ||
unversioned "k8s.io/kubernetes/pkg/api/unversioned" | ||
extensions "k8s.io/kubernetes/pkg/apis/extensions" | ||
core "k8s.io/kubernetes/pkg/client/testing/core" | ||
labels "k8s.io/kubernetes/pkg/labels" | ||
watch "k8s.io/kubernetes/pkg/watch" | ||
) | ||
|
||
// FakeIngresses implements IngressInterface | ||
type FakeIngresses struct { | ||
Fake *FakeExtensions | ||
ns string | ||
} | ||
|
||
var ingressesResource = unversioned.GroupVersionResource{Group: "extensions", Version: "", Resource: "ingresses"} | ||
|
||
func (c *FakeIngresses) Create(ingress *extensions.Ingress) (result *extensions.Ingress, err error) { | ||
obj, err := c.Fake. | ||
Invokes(core.NewCreateAction(ingressesResource, c.ns, ingress), &extensions.Ingress{}) | ||
|
||
if obj == nil { | ||
return nil, err | ||
} | ||
return obj.(*extensions.Ingress), err | ||
} | ||
|
||
func (c *FakeIngresses) Update(ingress *extensions.Ingress) (result *extensions.Ingress, err error) { | ||
obj, err := c.Fake. | ||
Invokes(core.NewUpdateAction(ingressesResource, c.ns, ingress), &extensions.Ingress{}) | ||
|
||
if obj == nil { | ||
return nil, err | ||
} | ||
return obj.(*extensions.Ingress), err | ||
} | ||
|
||
func (c *FakeIngresses) UpdateStatus(ingress *extensions.Ingress) (*extensions.Ingress, error) { | ||
obj, err := c.Fake. | ||
Invokes(core.NewUpdateSubresourceAction(ingressesResource, "status", c.ns, ingress), &extensions.Ingress{}) | ||
|
||
if obj == nil { | ||
return nil, err | ||
} | ||
return obj.(*extensions.Ingress), err | ||
} | ||
|
||
func (c *FakeIngresses) Delete(name string, options *api.DeleteOptions) error { | ||
_, err := c.Fake. | ||
Invokes(core.NewDeleteAction(ingressesResource, c.ns, name), &extensions.Ingress{}) | ||
|
||
return err | ||
} | ||
|
||
func (c *FakeIngresses) DeleteCollection(options *api.DeleteOptions, listOptions api.ListOptions) error { | ||
action := core.NewDeleteCollectionAction(ingressesResource, c.ns, listOptions) | ||
|
||
_, err := c.Fake.Invokes(action, &extensions.IngressList{}) | ||
return err | ||
} | ||
|
||
func (c *FakeIngresses) Get(name string) (result *extensions.Ingress, err error) { | ||
obj, err := c.Fake. | ||
Invokes(core.NewGetAction(ingressesResource, c.ns, name), &extensions.Ingress{}) | ||
|
||
if obj == nil { | ||
return nil, err | ||
} | ||
return obj.(*extensions.Ingress), err | ||
} | ||
|
||
func (c *FakeIngresses) List(opts api.ListOptions) (result *extensions.IngressList, err error) { | ||
obj, err := c.Fake. | ||
Invokes(core.NewListAction(ingressesResource, c.ns, opts), &extensions.IngressList{}) | ||
|
||
if obj == nil { | ||
return nil, err | ||
} | ||
|
||
label := opts.LabelSelector | ||
if label == nil { | ||
label = labels.Everything() | ||
} | ||
list := &extensions.IngressList{} | ||
for _, item := range obj.(*extensions.IngressList).Items { | ||
if label.Matches(labels.Set(item.Labels)) { | ||
list.Items = append(list.Items, item) | ||
} | ||
} | ||
return list, err | ||
} | ||
|
||
// Watch returns a watch.Interface that watches the requested ingresses. | ||
func (c *FakeIngresses) Watch(opts api.ListOptions) (watch.Interface, error) { | ||
return c.Fake. | ||
InvokesWatch(core.NewWatchAction(ingressesResource, c.ns, opts)) | ||
|
||
} | ||
|
||
// Patch applies the patch and returns the patched ingress. | ||
func (c *FakeIngresses) Patch(name string, pt api.PatchType, data []byte, subresources ...string) (result *extensions.Ingress, err error) { | ||
obj, err := c.Fake. | ||
Invokes(core.NewPatchSubresourceAction(ingressesResource, c.ns, name, data, subresources...), &extensions.Ingress{}) | ||
|
||
if obj == nil { | ||
return nil, err | ||
} | ||
return obj.(*extensions.Ingress), err | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
165 changes: 165 additions & 0 deletions
165
.../clientset_generated/federation_internalclientset/typed/extensions/unversioned/ingress.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,165 @@ | ||
/* | ||
Copyright 2016 The Kubernetes Authors. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package unversioned | ||
|
||
import ( | ||
api "k8s.io/kubernetes/pkg/api" | ||
extensions "k8s.io/kubernetes/pkg/apis/extensions" | ||
watch "k8s.io/kubernetes/pkg/watch" | ||
) | ||
|
||
// IngressesGetter has a method to return a IngressInterface. | ||
// A group's client should implement this interface. | ||
type IngressesGetter interface { | ||
Ingresses(namespace string) IngressInterface | ||
} | ||
|
||
// IngressInterface has methods to work with Ingress resources. | ||
type IngressInterface interface { | ||
Create(*extensions.Ingress) (*extensions.Ingress, error) | ||
Update(*extensions.Ingress) (*extensions.Ingress, error) | ||
UpdateStatus(*extensions.Ingress) (*extensions.Ingress, error) | ||
Delete(name string, options *api.DeleteOptions) error | ||
DeleteCollection(options *api.DeleteOptions, listOptions api.ListOptions) error | ||
Get(name string) (*extensions.Ingress, error) | ||
List(opts api.ListOptions) (*extensions.IngressList, error) | ||
Watch(opts api.ListOptions) (watch.Interface, error) | ||
Patch(name string, pt api.PatchType, data []byte, subresources ...string) (result *extensions.Ingress, err error) | ||
IngressExpansion | ||
} | ||
|
||
// ingresses implements IngressInterface | ||
type ingresses struct { | ||
client *ExtensionsClient | ||
ns string | ||
} | ||
|
||
// newIngresses returns a Ingresses | ||
func newIngresses(c *ExtensionsClient, namespace string) *ingresses { | ||
return &ingresses{ | ||
client: c, | ||
ns: namespace, | ||
} | ||
} | ||
|
||
// Create takes the representation of a ingress and creates it. Returns the server's representation of the ingress, and an error, if there is any. | ||
func (c *ingresses) Create(ingress *extensions.Ingress) (result *extensions.Ingress, err error) { | ||
result = &extensions.Ingress{} | ||
err = c.client.Post(). | ||
Namespace(c.ns). | ||
Resource("ingresses"). | ||
Body(ingress). | ||
Do(). | ||
Into(result) | ||
return | ||
} | ||
|
||
// Update takes the representation of a ingress and updates it. Returns the server's representation of the ingress, and an error, if there is any. | ||
func (c *ingresses) Update(ingress *extensions.Ingress) (result *extensions.Ingress, err error) { | ||
result = &extensions.Ingress{} | ||
err = c.client.Put(). | ||
Namespace(c.ns). | ||
Resource("ingresses"). | ||
Name(ingress.Name). | ||
Body(ingress). | ||
Do(). | ||
Into(result) | ||
return | ||
} | ||
|
||
func (c *ingresses) UpdateStatus(ingress *extensions.Ingress) (result *extensions.Ingress, err error) { | ||
result = &extensions.Ingress{} | ||
err = c.client.Put(). | ||
Namespace(c.ns). | ||
Resource("ingresses"). | ||
Name(ingress.Name). | ||
SubResource("status"). | ||
Body(ingress). | ||
Do(). | ||
Into(result) | ||
return | ||
} | ||
|
||
// Delete takes name of the ingress and deletes it. Returns an error if one occurs. | ||
func (c *ingresses) Delete(name string, options *api.DeleteOptions) error { | ||
return c.client.Delete(). | ||
Namespace(c.ns). | ||
Resource("ingresses"). | ||
Name(name). | ||
Body(options). | ||
Do(). | ||
Error() | ||
} | ||
|
||
// DeleteCollection deletes a collection of objects. | ||
func (c *ingresses) DeleteCollection(options *api.DeleteOptions, listOptions api.ListOptions) error { | ||
return c.client.Delete(). | ||
Namespace(c.ns). | ||
Resource("ingresses"). | ||
VersionedParams(&listOptions, api.ParameterCodec). | ||
Body(options). | ||
Do(). | ||
Error() | ||
} | ||
|
||
// Get takes name of the ingress, and returns the corresponding ingress object, and an error if there is any. | ||
func (c *ingresses) Get(name string) (result *extensions.Ingress, err error) { | ||
result = &extensions.Ingress{} | ||
err = c.client.Get(). | ||
Namespace(c.ns). | ||
Resource("ingresses"). | ||
Name(name). | ||
Do(). | ||
Into(result) | ||
return | ||
} | ||
|
||
// List takes label and field selectors, and returns the list of Ingresses that match those selectors. | ||
func (c *ingresses) List(opts api.ListOptions) (result *extensions.IngressList, err error) { | ||
result = &extensions.IngressList{} | ||
err = c.client.Get(). | ||
Namespace(c.ns). | ||
Resource("ingresses"). | ||
VersionedParams(&opts, api.ParameterCodec). | ||
Do(). | ||
Into(result) | ||
return | ||
} | ||
|
||
// Watch returns a watch.Interface that watches the requested ingresses. | ||
func (c *ingresses) Watch(opts api.ListOptions) (watch.Interface, error) { | ||
return c.client.Get(). | ||
Prefix("watch"). | ||
Namespace(c.ns). | ||
Resource("ingresses"). | ||
VersionedParams(&opts, api.ParameterCodec). | ||
Watch() | ||
} | ||
|
||
// Patch applies the patch and returns the patched ingress. | ||
func (c *ingresses) Patch(name string, pt api.PatchType, data []byte, subresources ...string) (result *extensions.Ingress, err error) { | ||
result = &extensions.Ingress{} | ||
err = c.client.Patch(pt). | ||
Namespace(c.ns). | ||
Resource("ingresses"). | ||
SubResource(subresources...). | ||
Name(name). | ||
Body(data). | ||
Do(). | ||
Into(result) | ||
return | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.