You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/changelogs/fragments/59522-renamed-module-tls-cl...

3 lines
434 B
YAML

[2.9] pulp_repo: renamed module tls client auth params to avoid overlaping with fetch_url (#65014) * 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> (cherry picked from commit 1e59017d272eda0125ae200c29bd3c0b3197c9e5) * 2.10 -> 2.9.2 * * Adjust messages. * Fix one more. (cherry picked from commit d1c58bc94274c4e91370333467a0868f4456993c)
5 years ago
bugfixes:
- pulp_repo - the ``client_cert`` and ``client_key`` options were used for both requests to the Pulp instance 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 the Pulp instance. (https://github.com/ansible/ansible/issues/59513)