Sign in

Machine resources Unavailable

There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.

Checks for various resource constraints preventing kubectl from running.

  1. 1

    No space left on the device

    There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.

    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