Completed
Pull Request — master (#466)
by
unknown
02:40
created

NodeUnmanage.run()   B

Complexity

Conditions 2

Size

Total Lines 25

Duplication

Lines 0
Ratio 0 %
Metric Value
cc 2
dl 0
loc 25
rs 8.8571
1
#!/usr/bin/env python
2
3
# Licensed to the StackStorm, Inc ('StackStorm') under one or more
4
# contributor license agreements.  See the NOTICE file distributed with
5
# this work for additional information regarding copyright ownership.
6
# The ASF licenses this file to You under the Apache License, Version 2.0
7
# (the "License"); you may not use this file except in compliance with
8
# the License.  You may obtain a copy of the License at
9
#
10
#     http://www.apache.org/licenses/LICENSE-2.0
11
#
12
# Unless required by applicable law or agreed to in writing, software
13
# distributed under the License is distributed on an "AS IS" BASIS,
14
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
# See the License for the specific language governing permissions and
16
# limitations under the License.
17
18
from datetime import datetime, timedelta
19
20
from lib.actions import OrionBaseAction
21
22
23
class NodeUnmanage(OrionBaseAction):
24
    def run(self, node, platform, minutes):
25
        """
26
        Unmanage an Orion node
27
        """
28
29
        if minutes > self.config['unmanage_max']:
30
            raise ValueError(
31
                "minutes ({}) greater than unmanage_max ({})".format(
32
                    minutes, self.config['unmanage_max']))
33
34
        self.connect(platform)
35
36
        NodeId = "N:{}".format(self.get_node_id(node))
37
        now = datetime.utcnow()
38
        later = now + timedelta(minutes=minutes)
39
40
        self.invoke("Orion.Nodes",
41
                    "Unmanage",
42
                    NodeId,
43
                    now,
44
                    later,
45
                    False)
46
47
        # The Invoke returns None, so return something.
48
        return True
49