diff --git a/pre_install_report/README.md b/pre_install_report/README.md index 2978c60..41b462e 100644 --- a/pre_install_report/README.md +++ b/pre_install_report/README.md @@ -58,7 +58,7 @@ $ export INGRESS_HOST=externalIP=$(kubectl -n get service get service -o jsonpath='{.spec.ports[?(@.name=="http")].port}') $ export INGRESS_HTTPS_PORT=$(kubectl -n get service -o jsonpath='{.spec.ports[?(@.name=="https")].port}') ``` -The command to determine the Ingress Host may be slightly different with Amazon EKS: +The command to determine the Ingress Host may be slightly different with Amazon Elastic Kubernetes Service(EKS): ``` $ export INGRESS_HOST=externalIP=$(kubectl -n get service -o jsonpath='{.status.loadBalancer.ingress[*].hostname}') ``` diff --git a/pre_install_report/library/pre_install_check.py b/pre_install_report/library/pre_install_check.py index 55ff145..1b5da78 100644 --- a/pre_install_report/library/pre_install_check.py +++ b/pre_install_report/library/pre_install_check.py @@ -739,7 +739,7 @@ def evaluate_nodes(self, nodes_data, global_data, cluster_info, quantity_): alloc_memory = str(node['allocatableMemory']) total_memory = total_memory + quantity_(str(node['memory'])) total_allocatable_memory = total_allocatable_memory + quantity_(alloc_memory) - # nodestatus = False + try: nodeReady = str(node['Ready']) if nodeReady == "True":