mirror of https://github.com/ansible/ansible.git
renamed module tls client auth params to avoid overlaping with fetch_url (#59522)
* renamed module tls client auth parameters to avoid overlaping with ansible fetch_url * added version_added info for params * Updated version_added Updated version_added info from 2.9 to 2.10 * Update pulp_repo.py removed version_added for renamed params * Apply suggestions from code review added ca_cert alias and 'version_added' Co-Authored-By: Mark Chappell <mchappel@redhat.com> * Apply suggestions from code review added old behavior for client_cert and client_key which will deprecate in 2.14 Co-Authored-By: Mark Chappell <mchappel@redhat.com> * Update pulp_repo.py fix for linting error ansibot is complaining * added changelog fragment for 59522 * Apply suggestions from code review more informative depreciation warning and changelog fragment Co-Authored-By: Felix Fontein <felix@fontein.de> * added mention for changes in client_key and client_cert behavior * fixed too long line (linting) * deprecated ca_cert alias to have consistent module params in Ansible 2.14 * fixed indentation for deprecation warning * changed deprecated alias handling to argument_spec * moved deprecated_aliases insied argument dict, thanks tremble * suggestions from felixfontein Move doc info about client_cert and client_key into its own paragraph Co-Authored-By: Felix Fontein <felix@fontein.de>pull/65017/head
parent
1d0a832692
commit
1e59017d27
@ -0,0 +1,2 @@
|
||||
bugfixes:
|
||||
- pulp_repo - the ``client_cert`` and ``client_key`` options were used for both requests to pulp.io and for the repo to sync with, resulting in errors when they were used. Use the new options ``feed_client_cert`` and ``feed_client_key`` for client certificates that should only be used for repo synchronisation, and not for communication with pulp.io. (https://github.com/ansible/ansible/issues/59513)
|
Loading…
Reference in New Issue