Artem Panchenko | 0594cd7 | 2017-06-12 13:25:26 +0300 | [diff] [blame] | 1 | # Copyright 2017 Mirantis, Inc. |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 4 | # not use this file except in compliance with the License. You may obtain |
| 5 | # a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 11 | # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 12 | # License for the specific language governing permissions and limitations |
| 13 | |
| 14 | |
Vladimir Jigulin | 4ad52a8 | 2018-08-12 05:51:30 +0400 | [diff] [blame] | 15 | from kubernetes import client |
| 16 | |
Artem Panchenko | 0594cd7 | 2017-06-12 13:25:26 +0300 | [diff] [blame] | 17 | from tcp_tests.managers.k8s.base import K8sBaseResource |
| 18 | from tcp_tests.managers.k8s.base import K8sBaseManager |
| 19 | |
| 20 | |
| 21 | class K8sNamespace(K8sBaseResource): |
Vladimir Jigulin | 4ad52a8 | 2018-08-12 05:51:30 +0400 | [diff] [blame] | 22 | resource_type = 'namespace' |
Artem Panchenko | 0594cd7 | 2017-06-12 13:25:26 +0300 | [diff] [blame] | 23 | |
Vladimir Jigulin | 4ad52a8 | 2018-08-12 05:51:30 +0400 | [diff] [blame] | 24 | def _read(self, **kwargs): |
| 25 | return self._manager.api.read_namespace(self.name, **kwargs) |
Artem Panchenko | 0594cd7 | 2017-06-12 13:25:26 +0300 | [diff] [blame] | 26 | |
Vladimir Jigulin | 4ad52a8 | 2018-08-12 05:51:30 +0400 | [diff] [blame] | 27 | def _create(self, body, **kwargs): |
| 28 | return self._manager.api.create_namespace(body, **kwargs) |
| 29 | |
| 30 | def _patch(self, body, **kwargs): |
| 31 | return self._manager.api.patch_namespace(self.name, body, **kwargs) |
| 32 | |
| 33 | def _replace(self, body, **kwargs): |
| 34 | return self._manager.api.replace_namespace(self.name, body, **kwargs) |
| 35 | |
| 36 | def _delete(self, **kwargs): |
| 37 | self._manager.api.delete_namespace( |
| 38 | self.name, client.V1DeleteOptions(), **kwargs) |
Artem Panchenko | 0594cd7 | 2017-06-12 13:25:26 +0300 | [diff] [blame] | 39 | |
| 40 | |
| 41 | class K8sNamespaceManager(K8sBaseManager): |
Artem Panchenko | 0594cd7 | 2017-06-12 13:25:26 +0300 | [diff] [blame] | 42 | resource_class = K8sNamespace |
| 43 | |
Vladimir Jigulin | 4ad52a8 | 2018-08-12 05:51:30 +0400 | [diff] [blame] | 44 | @property |
| 45 | def api(self): |
| 46 | return self._cluster.api_core |
Artem Panchenko | 0594cd7 | 2017-06-12 13:25:26 +0300 | [diff] [blame] | 47 | |
Vladimir Jigulin | 4ad52a8 | 2018-08-12 05:51:30 +0400 | [diff] [blame] | 48 | def _list(self, namespace, **kwargs): |
| 49 | return self.api.list_namespace(**kwargs) |
Artem Panchenko | 0594cd7 | 2017-06-12 13:25:26 +0300 | [diff] [blame] | 50 | |
Vladimir Jigulin | 4ad52a8 | 2018-08-12 05:51:30 +0400 | [diff] [blame] | 51 | def _list_all(self, **kwargs): |
| 52 | return self._list(None, **kwargs) |