| 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 |  | 
| Vladimir Jigulin | 5775bbb | 2018-10-03 10:34:54 +0400 | [diff] [blame] | 17 | from devops.helpers import helpers | 
|  | 18 |  | 
| Artem Panchenko | 0594cd7 | 2017-06-12 13:25:26 +0300 | [diff] [blame] | 19 | from tcp_tests.managers.k8s.base import K8sBaseResource | 
|  | 20 | from tcp_tests.managers.k8s.base import K8sBaseManager | 
|  | 21 |  | 
|  | 22 |  | 
|  | 23 | class K8sIngress(K8sBaseResource): | 
| Vladimir Jigulin | 4ad52a8 | 2018-08-12 05:51:30 +0400 | [diff] [blame] | 24 | resource_type = 'ingress' | 
| Artem Panchenko | 0594cd7 | 2017-06-12 13:25:26 +0300 | [diff] [blame] | 25 |  | 
| Vladimir Jigulin | 4ad52a8 | 2018-08-12 05:51:30 +0400 | [diff] [blame] | 26 | def _read(self, **kwargs): | 
|  | 27 | return self._manager.api.read_namespaced_ingress( | 
|  | 28 | self.name, self.namespace, **kwargs) | 
| Artem Panchenko | 0594cd7 | 2017-06-12 13:25:26 +0300 | [diff] [blame] | 29 |  | 
| Vladimir Jigulin | 4ad52a8 | 2018-08-12 05:51:30 +0400 | [diff] [blame] | 30 | def _create(self, body, **kwargs): | 
|  | 31 | return self._manager.api.create_namespaced_ingress( | 
|  | 32 | self.namespace, body, **kwargs) | 
|  | 33 |  | 
|  | 34 | def _patch(self, body, **kwargs): | 
|  | 35 | return self._manager.api.patch_namespaced_ingress( | 
|  | 36 | self.name, self.namespace, body, **kwargs) | 
|  | 37 |  | 
|  | 38 | def _replace(self, body, **kwargs): | 
|  | 39 | return self._manager.api.replace_namespaced_ingress( | 
|  | 40 | self.name, self.namespace, body, **kwargs) | 
|  | 41 |  | 
|  | 42 | def _delete(self, **kwargs): | 
|  | 43 | self._manager.api.delete_namespaced_ingress( | 
|  | 44 | self.name, self.namespace, client.V1DeleteOptions(), **kwargs) | 
| Artem Panchenko | 0594cd7 | 2017-06-12 13:25:26 +0300 | [diff] [blame] | 45 |  | 
| Vladimir Jigulin | 5775bbb | 2018-10-03 10:34:54 +0400 | [diff] [blame] | 46 | def wait_ready(self, timeout=120, interval=2): | 
|  | 47 | helpers.wait( | 
|  | 48 | lambda: self.read().status.load_balancer.ingress is not None, | 
|  | 49 | timeout=timeout, interval=interval) | 
|  | 50 | return self | 
|  | 51 |  | 
| Artem Panchenko | 0594cd7 | 2017-06-12 13:25:26 +0300 | [diff] [blame] | 52 |  | 
|  | 53 | class K8sIngressManager(K8sBaseManager): | 
| Artem Panchenko | 0594cd7 | 2017-06-12 13:25:26 +0300 | [diff] [blame] | 54 | resource_class = K8sIngress | 
|  | 55 |  | 
| Vladimir Jigulin | 4ad52a8 | 2018-08-12 05:51:30 +0400 | [diff] [blame] | 56 | @property | 
|  | 57 | def api(self): | 
|  | 58 | return self._cluster.api_extensions | 
| Artem Panchenko | 0594cd7 | 2017-06-12 13:25:26 +0300 | [diff] [blame] | 59 |  | 
| Vladimir Jigulin | 4ad52a8 | 2018-08-12 05:51:30 +0400 | [diff] [blame] | 60 | def _list(self, namespace, **kwargs): | 
|  | 61 | return self.api.list_namespaced_ingress(namespace, **kwargs) | 
| Artem Panchenko | 0594cd7 | 2017-06-12 13:25:26 +0300 | [diff] [blame] | 62 |  | 
| Vladimir Jigulin | 4ad52a8 | 2018-08-12 05:51:30 +0400 | [diff] [blame] | 63 | def _list_all(self, **kwargs): | 
|  | 64 | return self.api.list_ingress_for_all_namespaces(**kwargs) |