From 74e9126fdb6d4866ac3884d3d21aeea0c2111b9a Mon Sep 17 00:00:00 2001 From: SamYaple Date: Tue, 22 Dec 2015 19:59:40 +0000 Subject: [PATCH] Remove unneeded variables passed into keystone During the bootstrap we no longer need to pass in this info TrivialFix Related-Bug: #1526251 Related-Id: Ieee215b9de1618b3d31f3d1a766a9d0ebafdee4d Change-Id: I82460cf11dea4692c0469bf2b9afddd794a30ec1 --- ansible/roles/keystone/tasks/bootstrap.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/ansible/roles/keystone/tasks/bootstrap.yml b/ansible/roles/keystone/tasks/bootstrap.yml index 937939cce0..16502957b9 100644 --- a/ansible/roles/keystone/tasks/bootstrap.yml +++ b/ansible/roles/keystone/tasks/bootstrap.yml @@ -55,13 +55,6 @@ env: KOLLA_BOOTSTRAP: KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}" - KEYSTONE_ADMIN_PASSWORD: "{{ keystone_admin_password }}" - REGION_NAME: "{{ openstack_region_name }}" - PUBLIC_URL: "http://{{ kolla_external_address }}:{{ keystone_public_port }}/v2.0" - INTERNAL_URL: "http://{{ kolla_internal_address }}:{{ keystone_public_port }}/v2.0" - ADMIN_URL: "http://{{ kolla_internal_address }}:{{ keystone_admin_port }}/v2.0" - OS_TOKEN: "{{ keystone_admin_token }}" - OS_URL: "http://{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}:{{ keystone_admin_port }}/v2.0" run_once: True delegate_to: "{{ groups['keystone'][0] }}" when: database_created