Address ansible_ssh_* var deprecation

Replacing usage of ansible_ssh_host, ansible_ssh_user,
ansible_ssh_port with ansible_host, ansible_user and ansible_port

Change-Id: I4adb6484c13523a2527adc62846b736b0c5f228e
This commit is contained in:
Travis Truman 2016-09-17 17:50:47 -04:00
parent 01e1299110
commit a74af47939
6 changed files with 9 additions and 9 deletions

View File

@ -19,7 +19,7 @@
-avz \
--delete \
{{ keystone_credential_key_repository }}/ \
{{ keystone_system_user_name }}@{{ hostvars[item]['ansible_ssh_host'] }}:{{ keystone_credential_key_repository }}/
{{ keystone_system_user_name }}@{{ hostvars[item]['ansible_host'] }}:{{ keystone_credential_key_repository }}/
become: yes
become_user: "{{ keystone_system_user_name }}"
with_items: "{{ groups['keystone_all'][1:] }}"

View File

@ -19,7 +19,7 @@
-avz \
--delete \
{{ keystone_fernet_tokens_key_repository }}/ \
{{ keystone_system_user_name }}@{{ hostvars[item]['ansible_ssh_host'] }}:{{ keystone_fernet_tokens_key_repository }}/
{{ keystone_system_user_name }}@{{ hostvars[item]['ansible_host'] }}:{{ keystone_fernet_tokens_key_repository }}/
become: yes
become_user: "{{ keystone_system_user_name }}"
with_items: "{{ groups['keystone_all'][1:] }}"

View File

@ -15,14 +15,14 @@
- name: Wait for keystone admin to come up
wait_for:
host: "{{ ansible_ssh_host }}"
host: "{{ ansible_host }}"
port: "{{ keystone_admin_port }}"
timeout: 25
delay: 10
- name: Wait for keystone service to come up
wait_for:
host: "{{ ansible_ssh_host }}"
host: "{{ ansible_host }}"
port: "{{ keystone_service_port }}"
timeout: 25
delay: 10

View File

@ -46,7 +46,7 @@ function autorotate {
-avz \
--delete \
{{ keystone_credential_key_repository }}/ \
{{ keystone_system_user_name }}@{{ hostvars[host]['ansible_ssh_host'] }}:{{ keystone_credential_key_repository }}/
{{ keystone_system_user_name }}@{{ hostvars[host]['ansible_host'] }}:{{ keystone_credential_key_repository }}/
{%- endif %}

View File

@ -35,7 +35,7 @@ function autorotate {
-avz \
--delete \
{{ keystone_fernet_tokens_key_repository }}/ \
{{ keystone_system_user_name }}@{{ hostvars[host]['ansible_ssh_host'] }}:{{ keystone_fernet_tokens_key_repository }}/
{{ keystone_system_user_name }}@{{ hostvars[host]['ansible_host'] }}:{{ keystone_fernet_tokens_key_repository }}/
{%- endif %}

View File

@ -1,8 +1,8 @@
[all]
localhost ansible_become=True
infra1 ansible_ssh_host=10.1.0.2 ansible_host=10.1.0.2 ansible_become=True ansible_user=root
keystone1 ansible_ssh_host=10.1.0.3 ansible_host=10.1.0.3 ansible_become=True ansible_user=root
keystone2 ansible_ssh_host=10.1.0.4 ansible_host=10.1.0.4 ansible_become=True ansible_user=root
infra1 ansible_host=10.1.0.2 ansible_become=True ansible_user=root
keystone1 ansible_host=10.1.0.3 ansible_become=True ansible_user=root
keystone2 ansible_host=10.1.0.4 ansible_become=True ansible_user=root
[all_containers]
infra1