Skip to content

Commit 04e0832

Browse files
authoredNov 2, 2021
Merge pull request #445 from nirarg/fence-kubevirt
fence_kubevirt: Fix kubevirt VM status
2 parents 1c423ab + c23bfc3 commit 04e0832

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed
 

‎agents/kubevirt/fence_kubevirt.py

+13-6
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import logging
55
sys.path.append("@FENCEAGENTSLIBDIR@")
66
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
88

99
try:
1010
from kubernetes.client.exceptions import ApiException
@@ -35,20 +35,27 @@ def get_power_status(conn, options):
3535
vmi_api = conn.resources.get(api_version=apiversion,
3636
kind='VirtualMachineInstance')
3737
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)
4339
except ApiException as e:
4440
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)
4547
return "off"
4648
logging.error("Failed to get power status, with API Exception: %s", e)
4749
fail(EC_STATUS)
4850
except Exception as e:
4951
logging.error("Failed to get power status, with Exception: %s", e)
5052
fail(EC_STATUS)
5153

54+
def translate_status(instance_status):
55+
if instance_status == "Running":
56+
return "on"
57+
return "unknown"
58+
5259
def set_power_status(conn, options):
5360
logging.debug("Starting set status operation")
5461
try:

0 commit comments

Comments
 (0)
Please sign in to comment.