(Update) We now support establishing an SSH conne...
# slurm-flyte-wg
c
(Update) We now support establishing an SSH connection using the following configuration:
Copy code
ssh_config={
    "host": "<hostname-or-ip-address>",
    "username": "<username>",
    "client_keys": "<file-path-to-private-key>"  # Support both string and list of strings
}
, where
host
and
username
are required, and
client_keys
is optional. Here are the common use cases: 1. Use OpenSSH client config files – Load settings from
~/.ssh/config
2. Specify private key paths explicitly – Define key file paths in the
client_keys
field 3. Use the
FLYTE_SLURM_PRIVATE_KEY
secret
– Write the private key content to a local file, then add its path to
client_keys