blob: eb92a129bdbe0e767c78f8ce8b68dd2466ac6ae7 [file] [log] [blame]
Vladimir Jigulin4ad52a82018-08-12 05:51:30 +04001# 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
15from kubernetes import client
16
17from tcp_tests.managers.k8s.base import K8sBaseResource
18from tcp_tests.managers.k8s.base import K8sBaseManager
19
20
21class K8sNetworkPolicy(K8sBaseResource):
22 resource_type = 'networkpolicy'
23
24 def _read(self, **kwargs):
25 return self._manager.api.read_namespaced_network_policy(
26 self.name, self.namespace, **kwargs)
27
28 def _create(self, body, **kwargs):
29 return self._manager.api.create_namespaced_network_policy(
30 self.namespace, body, **kwargs)
31
32 def _patch(self, body, **kwargs):
33 return self._manager.api.patch_namespaced_network_policy(
34 self.name, self.namespace, body, **kwargs)
35
36 def _replace(self, body, **kwargs):
37 return self._manager.api.replace_namespaced_network_policy(
38 self.name, self.namespace, body, **kwargs)
39
40 def _delete(self, **kwargs):
41 self._manager.api.delete_namespaced_network_policy(
42 self.name, self.namespace, client.V1DeleteOptions(), **kwargs)
43
44
45class K8sNetworkPolicyManager(K8sBaseManager):
46 resource_class = K8sNetworkPolicy
47
48 @property
49 def api(self):
50 return self._cluster.api_extensions
51
52 def _list(self, namespace, **kwargs):
53 return self.api.list_namespaced_network_policy(namespace, **kwargs)
54
55 def _list_all(self, **kwargs):
56 return self.api.list_network_policy_for_all_namespaces(**kwargs)