Unable to run kubectl

Checks for general contraints and errors preventing kubectl itself from being started.

op = _exe(master_ip, "kubectl get nodes") m = re.match(r'The connection to the server .* was refused - did you specify the right host or port?', op) if m: context.log("ERROR", "Found problem")
copied
  1. 1

    Checks for various resource constraints preventing kubectl from running.

    1
    1. 1.1

      Checks for disk utilization and returns an error if it crossed a given threshold.

      import shutil u = shutil.disk_usage("/") utilization = 100 * u.used / u.total if utilization > threshold: context.log("ERROR", "Disk usage too high")
      copied
      1.1