diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 18:24:20 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 18:24:20 +0000 |
commit | 483eb2f56657e8e7f419ab1a4fab8dce9ade8609 (patch) | |
tree | e5d88d25d870d5dedacb6bbdbe2a966086a0a5cf /doc/mgr/ssh.rst | |
parent | Initial commit. (diff) | |
download | ceph-upstream.tar.xz ceph-upstream.zip |
Adding upstream version 14.2.21.upstream/14.2.21upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'doc/mgr/ssh.rst')
-rw-r--r-- | doc/mgr/ssh.rst | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/doc/mgr/ssh.rst b/doc/mgr/ssh.rst new file mode 100644 index 00000000..1d1e9663 --- /dev/null +++ b/doc/mgr/ssh.rst @@ -0,0 +1,45 @@ +================ +SSH orchestrator +================ + +The SSH orchestrator is an orchestrator module that does not rely on a separate +system such as Rook or Ansible, but rather manages nodes in a cluster by +establishing an SSH connection and issuing explicit management commands. + +Orchestrator modules only provide services to other modules, which in turn +provide user interfaces. To try out the SSH module, you might like +to use the :ref:`Orchestrator CLI <orchestrator-cli-module>` module. + +Requirements +------------ + +- The Python `remoto` library version 0.35 or newer + +Configuration +------------- + +The SSH orchestrator can be configured to use an SSH configuration file. This is +useful for specifying private keys and other SSH connection options. + +:: + + # ceph config set mgr mgr/ssh/ssh_config_file /path/to/config + +An SSH configuration file can be provided without requiring an accessible file +system path as the method above does. + +:: + + # ceph ssh set-ssh-config -i /path/to/config + +To clear this value use the command: + +:: + + # ceph ssh clear-ssh-config + +Development +----------- + +Instructions for setting up a development environment can be found in the Ceph +source tree at `src/pybind/mgr/ssh/README.md`. |