forked from kubernetes/kubernetes
-
Notifications
You must be signed in to change notification settings - Fork 5
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#26298 from nikhiljindal/createFedService
Automatic merge from submit-queue federation: Adding namespaces API Adding namespaces API to federation-apiserver and updating the federation client to include namespaces -------------------------- Original description: This adds the namespaces API to federation-apiserver. The first commit is kubernetes#26142.
- Loading branch information
Showing
29 changed files
with
722 additions
and
17 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
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
117 changes: 117 additions & 0 deletions
117
...tset_generated/federation_internalclientset/typed/core/unversioned/fake/fake_namespace.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,117 @@ | ||
/* | ||
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" | ||
core "k8s.io/kubernetes/pkg/client/testing/core" | ||
labels "k8s.io/kubernetes/pkg/labels" | ||
watch "k8s.io/kubernetes/pkg/watch" | ||
) | ||
|
||
// FakeNamespaces implements NamespaceInterface | ||
type FakeNamespaces struct { | ||
Fake *FakeCore | ||
} | ||
|
||
var namespacesResource = unversioned.GroupVersionResource{Group: "", Version: "", Resource: "namespaces"} | ||
|
||
func (c *FakeNamespaces) Create(namespace *api.Namespace) (result *api.Namespace, err error) { | ||
obj, err := c.Fake. | ||
Invokes(core.NewRootCreateAction(namespacesResource, namespace), &api.Namespace{}) | ||
if obj == nil { | ||
return nil, err | ||
} | ||
return obj.(*api.Namespace), err | ||
} | ||
|
||
func (c *FakeNamespaces) Update(namespace *api.Namespace) (result *api.Namespace, err error) { | ||
obj, err := c.Fake. | ||
Invokes(core.NewRootUpdateAction(namespacesResource, namespace), &api.Namespace{}) | ||
if obj == nil { | ||
return nil, err | ||
} | ||
return obj.(*api.Namespace), err | ||
} | ||
|
||
func (c *FakeNamespaces) UpdateStatus(namespace *api.Namespace) (*api.Namespace, error) { | ||
obj, err := c.Fake. | ||
Invokes(core.NewRootUpdateSubresourceAction(namespacesResource, "status", namespace), &api.Namespace{}) | ||
if obj == nil { | ||
return nil, err | ||
} | ||
return obj.(*api.Namespace), err | ||
} | ||
|
||
func (c *FakeNamespaces) Delete(name string, options *api.DeleteOptions) error { | ||
_, err := c.Fake. | ||
Invokes(core.NewRootDeleteAction(namespacesResource, name), &api.Namespace{}) | ||
return err | ||
} | ||
|
||
func (c *FakeNamespaces) DeleteCollection(options *api.DeleteOptions, listOptions api.ListOptions) error { | ||
action := core.NewRootDeleteCollectionAction(namespacesResource, listOptions) | ||
|
||
_, err := c.Fake.Invokes(action, &api.NamespaceList{}) | ||
return err | ||
} | ||
|
||
func (c *FakeNamespaces) Get(name string) (result *api.Namespace, err error) { | ||
obj, err := c.Fake. | ||
Invokes(core.NewRootGetAction(namespacesResource, name), &api.Namespace{}) | ||
if obj == nil { | ||
return nil, err | ||
} | ||
return obj.(*api.Namespace), err | ||
} | ||
|
||
func (c *FakeNamespaces) List(opts api.ListOptions) (result *api.NamespaceList, err error) { | ||
obj, err := c.Fake. | ||
Invokes(core.NewRootListAction(namespacesResource, opts), &api.NamespaceList{}) | ||
if obj == nil { | ||
return nil, err | ||
} | ||
|
||
label := opts.LabelSelector | ||
if label == nil { | ||
label = labels.Everything() | ||
} | ||
list := &api.NamespaceList{} | ||
for _, item := range obj.(*api.NamespaceList).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 namespaces. | ||
func (c *FakeNamespaces) Watch(opts api.ListOptions) (watch.Interface, error) { | ||
return c.Fake. | ||
InvokesWatch(core.NewRootWatchAction(namespacesResource, opts)) | ||
} | ||
|
||
// Patch applies the patch and returns the patched namespace. | ||
func (c *FakeNamespaces) Patch(name string, pt api.PatchType, data []byte, subresources ...string) (result *api.Namespace, err error) { | ||
obj, err := c.Fake. | ||
Invokes(core.NewRootPatchSubresourceAction(namespacesResource, name, data, subresources...), &api.Namespace{}) | ||
if obj == nil { | ||
return nil, err | ||
} | ||
return obj.(*api.Namespace), err | ||
} |
37 changes: 37 additions & 0 deletions
37
...ated/federation_internalclientset/typed/core/unversioned/fake/fake_namespace_expansion.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,37 @@ | ||
/* | ||
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 ( | ||
"k8s.io/kubernetes/pkg/api" | ||
"k8s.io/kubernetes/pkg/client/testing/core" | ||
) | ||
|
||
func (c *FakeNamespaces) Finalize(namespace *api.Namespace) (*api.Namespace, error) { | ||
action := core.CreateActionImpl{} | ||
action.Verb = "create" | ||
action.Resource = namespacesResource | ||
action.Subresource = "finalize" | ||
action.Object = namespace | ||
|
||
obj, err := c.Fake.Invokes(action, namespace) | ||
if obj == nil { | ||
return nil, err | ||
} | ||
|
||
return obj.(*api.Namespace), err | ||
} |
Oops, something went wrong.