Merge "Fix improper designate-manage command usage."

This commit is contained in:
Zuul 2023-08-17 11:55:40 +00:00 committed by Gerrit Code Review
commit dbad6c1f28
2 changed files with 8 additions and 2 deletions

@ -1,6 +1,6 @@
---
- name: Update DNS pools
- name: Non-destructive DNS pools update
become: true
command: "{{ kolla_container_engine }} exec -t designate_worker designate-manage pool update --file /etc/designate/pools.yaml"
command: "{{ kolla_container_engine }} exec -t designate_worker designate-manage pool update"
run_once: True
delegate_to: "{{ groups['designate-worker'][0] }}"

@ -0,0 +1,6 @@
---
fixes:
- |
Fix improper use of ``--file`` parameter with
``designate-manage pool update`` command.
`LP#2012292 <https://bugs.launchpad.net/kolla-ansible/+bug/2012292>`