Skip to content

app

cluster()

Get cluster information

Source code in hpcman/cluster/app.py
@app.callback()
def cluster() -> None:
    """
    Get cluster information
    """

disk()

Get cluster disk-free usage

Source code in hpcman/cluster/app.py
@app.command()
def disk() -> None:
    """
    Get cluster disk-free usage
    """
    raise CommandNotImplemented("cluster module not yet implemented")

paths()

Get cluster paths for standard software/database installs

Source code in hpcman/cluster/app.py
@app.command()
def paths() -> None:
    """
    Get cluster paths for standard software/database installs
    """
    raise CommandNotImplemented("cluster module not yet implemented")

software()

Look for installed software that may not be in $PATH

Source code in hpcman/cluster/app.py
@app.command()
def software() -> None:
    """
    Look for installed software that may not be in $PATH
    """
    raise CommandNotImplemented("cluster module not yet implemented")