Example #1
0
def instances_login_cmd(args):
    instance = pick_instance(args)
    run_remote_shell(args, instance)
Example #2
0
def admin_cmd(args):
    run_remote_shell(args, AdminInstance.instance())
Example #3
0
def builder_login_cmd(args):
    instance = BuilderInstance.instance()
    run_remote_shell(args, instance)
Example #4
0
def instances_login(cfg: Config):
    """Log in to one of the instances."""
    instance = pick_instance(cfg)
    run_remote_shell(instance)
Example #5
0
File: ce.py Project: iCodeIN/infra
def conan_login_cmd(args):
    instance = ConanInstance.instance()
    run_remote_shell(args, instance)
Example #6
0
def runner_login():
    """Log in to the runner machine."""
    instance = RunnerInstance.instance()
    run_remote_shell(instance)
Example #7
0
def builder_login():
    """Log in to the builder machine."""
    instance = BuilderInstance.instance()
    run_remote_shell(instance)
Example #8
0
File: conan.py Project: ojeda/infra
def conan_login():
    """Log in to the conan instance."""
    instance = ConanInstance.instance()
    run_remote_shell(instance)