You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
--reuse — don't create a new runner if the repository already has one registered with the same --name or including all the specified --labels, even if it's busy.
--cloud-ssh-private=<key> — private key (RSA PEM) to provision the runner instance; only supported on AWS and Azure, intended for debugging purposes.
Examples
Using --cloud-ssh-private
Generate a new RSA PEM private key for debugging purposes:
$ ssh-keygen -t rsa -m pem -b 4096 -f key.pem
Pass the contents of the generated private key file when invoking the cml-runner command:
Access the instance from your local system by using the generated key as an indentity file:
$ ssh -i key.pem ubuntu@IP_ADDRESS
Note: the IP_ADDRESS placeholder should be replaced by the instance address returned by cml-runner after a succesful execution; search for instanceIp on the logs to find it.