summaryrefslogtreecommitdiffstats
path: root/share/newton_base/util.py
diff options
context:
space:
mode:
Diffstat (limited to 'share/newton_base/util.py')
-rw-r--r--share/newton_base/util.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/share/newton_base/util.py b/share/newton_base/util.py
index aa03b65b..b06529bb 100644
--- a/share/newton_base/util.py
+++ b/share/newton_base/util.py
@@ -177,3 +177,20 @@ class VimDriverUtils(object):
return result
return profiled_func
return wrapper
+
+
+ @staticmethod
+ def check_k8s_cluster(viminfo):
+ """
+ check if cloud region is k8s cluster
+ """
+ software_version = viminfo.get("cloud_extra_info_json", {})\
+ .get("isystem", {}).get("software_version")
+
+ is_k8s_cluster = False
+ if software_version == "19.12":
+ is_k8s_cluster = True
+ elif software_version == "19.10":
+ is_k8s_cluster = True
+
+ return is_k8s_cluster