|
4 | 4 | import logging
|
5 | 5 | sys.path.append("@FENCEAGENTSLIBDIR@")
|
6 | 6 | from fencing import *
|
7 |
| -from fencing import fail, fail_usage, run_delay, EC_STATUS |
| 7 | +from fencing import fail, fail_usage, run_delay, EC_STATUS, EC_FETCH_VM_UUID |
8 | 8 |
|
9 | 9 | try:
|
10 | 10 | from kubernetes.client.exceptions import ApiException
|
@@ -35,20 +35,27 @@ def get_power_status(conn, options):
|
35 | 35 | vmi_api = conn.resources.get(api_version=apiversion,
|
36 | 36 | kind='VirtualMachineInstance')
|
37 | 37 | vmi = vmi_api.get(name=name, namespace=namespace)
|
38 |
| - if vmi is not None: |
39 |
| - phase = vmi.status.phase |
40 |
| - if phase == "Running": |
41 |
| - return "on" |
42 |
| - return "off" |
| 38 | + return translate_status(vmi.status.phase) |
43 | 39 | except ApiException as e:
|
44 | 40 | if e.status == 404:
|
| 41 | + try: |
| 42 | + vm_api = conn.resources.get(api_version=apiversion, kind='VirtualMachine') |
| 43 | + vm = vm_api.get(name=name, namespace=namespace) |
| 44 | + except ApiException as e: |
| 45 | + logging.error("VM %s doesn't exist", name) |
| 46 | + fail(EC_FETCH_VM_UUID) |
45 | 47 | return "off"
|
46 | 48 | logging.error("Failed to get power status, with API Exception: %s", e)
|
47 | 49 | fail(EC_STATUS)
|
48 | 50 | except Exception as e:
|
49 | 51 | logging.error("Failed to get power status, with Exception: %s", e)
|
50 | 52 | fail(EC_STATUS)
|
51 | 53 |
|
| 54 | +def translate_status(instance_status): |
| 55 | + if instance_status == "Running": |
| 56 | + return "on" |
| 57 | + return "unknown" |
| 58 | + |
52 | 59 | def set_power_status(conn, options):
|
53 | 60 | logging.debug("Starting set status operation")
|
54 | 61 | try:
|
|
0 commit comments