Content¶
Guides
References
Resources
Commits
apache-airflow-providers-ssh
¶This is a provider package for ssh
provider. All classes for this provider package
are in airflow.providers.ssh
python package.
You can install this package on top of an existing Airflow 2 installation (see Requirements
below)
for the minimum Airflow version supported) via
pip install apache-airflow-providers-ssh
PIP package |
Version required |
---|---|
|
|
|
|
|
|
Add .bash and other extensions to SSHOperator template_ext (#28617)
Add test_connection method for SSHHook (#28184)
SSH task exit code added to XCOM as 'ssh_exit' key (#27370)
Remove outdated compat imports/code from providers (#28507)
[misc] Get rid of 'pass' statement in conditions (#27775)
This release of provider is only available for Airflow 2.3+ as explained in the Apache Airflow providers support policy.
Move min airflow version to 2.3.0 for all providers (#27196)
Added docs regarding templated field (#27301)
Added environment to templated SSHOperator fields (#26824)
Apply log formatter on every output line in SSHOperator (#27442)
A few docs fixups (#26788)
SSHOperator ignores cmd_timeout (#27182) (#27184)
Less verbose logging in ssh operator (#24915)
Convert sftp hook to use paramiko instead of pysftp (#24512)
Update providers to use functools compat for ''cached_property'' (#24582)
This release of provider is only available for Airflow 2.2+ as explained in the Apache Airflow providers support policy https://github.com/apache/airflow/blob/main/README.md#support-for-providers
Add disabled_algorithms as an extra parameter for SSH connections (#24090)
fixing SSHHook bug when using allow_host_key_change param (#24116)
Add a retry with wait interval for SSH operator (#14489)
Add banner_timeout feature to SSH Hook/Operator (#21262)
Add a retry with wait interval for SSH operator #14489 (#19981)
Delay the creation of ssh proxy until get_conn() (#20474) (#20474)
Refactor SSHOperator so a subclass can run many commands (#10874) (#17378)
update minimum version of sshtunnel to 0.3.2 (#18684)
Correctly handle get_pty attribute if command passed as XComArg or template (#19323)
[Airflow 16364] Add conn_timeout and cmd_timeout params to SSHOperator; add conn_timeout param to SSHHook (#17236)
Add support for non-RSA type key for SFTP hook (#16314)
SSHHook: Using correct hostname for host_key when using non-default ssh port (#15964)
Correctly load openssh-gerenated private keys in SSHHook (#16756)
Auto-apply apply_default decorator (#15667)
Warning
Due to apply_default decorator removal, this version of the provider requires Airflow 2.1.0+.
If your Airflow version is < 2.1.0, and you want to install this provider version, first upgrade
Airflow to at least version 2.1.0. Otherwise your Airflow package version will be upgraded
automatically and you will have to manually run airflow upgrade db
to complete the migration.
Display explicit error in case UID has no actual username (#15212)
Updated documentation and readme files.
[AIRFLOW-7044] Host key can be specified via SSH connection extras. (#12944)
Initial version of the provider.