blob: 98192a6f13f29e052ce87f840239079008a3a764 [file] [log] [blame]
Artem Panchenko0594cd72017-06-12 13:25:26 +03001# 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
Vladimir Jigulin4ad52a82018-08-12 05:51:30 +040014
15from kubernetes import client
16
Artem Panchenko0594cd72017-06-12 13:25:26 +030017from devops.helpers import helpers
18
19from tcp_tests.managers.k8s.base import K8sBaseResource
20from tcp_tests.managers.k8s.base import K8sBaseManager
21
22
23class K8sPod(K8sBaseResource):
Vladimir Jigulin4ad52a82018-08-12 05:51:30 +040024 resource_type = 'pod'
Artem Panchenko0594cd72017-06-12 13:25:26 +030025
Vladimir Jigulin4ad52a82018-08-12 05:51:30 +040026 def _read(self, **kwargs):
27 return self._manager.api.read_namespaced_pod(
28 self.name, self.namespace, **kwargs)
Artem Panchenko0594cd72017-06-12 13:25:26 +030029
Vladimir Jigulin4ad52a82018-08-12 05:51:30 +040030 def _create(self, body, **kwargs):
31 return self._manager.api.create_namespaced_pod(
32 self.namespace, body, **kwargs)
Artem Panchenko0594cd72017-06-12 13:25:26 +030033
Vladimir Jigulin4ad52a82018-08-12 05:51:30 +040034 def _patch(self, body, **kwargs):
35 return self._manager.api.patch_namespaced_pod(
36 self.name, self.namespace, body, **kwargs)
Artem Panchenko0594cd72017-06-12 13:25:26 +030037
Vladimir Jigulin4ad52a82018-08-12 05:51:30 +040038 def _replace(self, body, **kwargs):
39 return self._manager.api.replace_namespaced_pod(
40 self.name, self.namespace, body, **kwargs)
Artem Panchenko0594cd72017-06-12 13:25:26 +030041
Vladimir Jigulin4ad52a82018-08-12 05:51:30 +040042 def _delete(self, **kwargs):
43 self._manager.api.delete_namespaced_pod(
44 self.name, self.namespace, client.V1DeleteOptions(), **kwargs)
Artem Panchenko0594cd72017-06-12 13:25:26 +030045
Vladimir Jigulin4ad52a82018-08-12 05:51:30 +040046 def wait_phase(self, phases, timeout=60, interval=3):
47 if isinstance(phases, str):
48 phases = [phases]
Artem Panchenko0594cd72017-06-12 13:25:26 +030049
Vladimir Jigulin4ad52a82018-08-12 05:51:30 +040050 helpers.wait(lambda: self.read().status.phase in phases,
51 timeout=timeout, interval=interval,
52 timeout_msg='Timeout waiting, pod {0} phase is not in '
53 '"{1}"'.format(self.name, phases))
54 return self
Artem Panchenko0594cd72017-06-12 13:25:26 +030055
Vladimir Jigulin4ad52a82018-08-12 05:51:30 +040056 def wait_running(self, timeout=240, interval=3):
57 return self.wait_phase('Running', timeout=timeout, interval=interval)
Artem Panchenko0594cd72017-06-12 13:25:26 +030058
59
60class K8sPodManager(K8sBaseManager):
Artem Panchenko0594cd72017-06-12 13:25:26 +030061 resource_class = K8sPod
62
Vladimir Jigulin4ad52a82018-08-12 05:51:30 +040063 @property
64 def api(self):
65 return self._cluster.api_core
Artem Panchenko0594cd72017-06-12 13:25:26 +030066
Vladimir Jigulin4ad52a82018-08-12 05:51:30 +040067 def _list(self, namespace, **kwargs):
68 return self.api.list_namespaced_pod(namespace, **kwargs)
Artem Panchenko0594cd72017-06-12 13:25:26 +030069
Vladimir Jigulin4ad52a82018-08-12 05:51:30 +040070 def _list_all(self, **kwargs):
71 return self.api.list_pod_for_all_namespaces(**kwargs)