Move test-vars into overrides file

Using an in-role test-vars.yml file is an old pattern, and
this role clearly never got the pattern update. This patch
fixes that.

Change-Id: Iac3afc77db87d245e99c0deb5c1bf3ec02fc881a
This commit is contained in:
Jesse Pretorius 2018-06-12 19:33:31 +01:00 committed by Jesse Pretorius (odyssey4me)
parent 33d5e31717
commit ee57df2a83
3 changed files with 15 additions and 15 deletions

View File

@ -13,6 +13,21 @@
# See the License for the specific language governing permissions and
# limitations under the License.
barbican_galera_password: SuperSecrete
barbican_developer_mode: true
barbican_galera_address: "{{ hostvars[groups['galera_all'][0]]['ansible_host'] }}"
barbican_galera_database: barbican
barbican_keystone_auth: yes
barbican_rabbitmq_password: secrete
barbican_rabbitmq_userid: barbican
barbican_rabbitmq_vhost: /barbican
barbican_service_password: secrete
barbican_venv_tag: testing
barbican_service_publicurl: "http://{{ hostvars[groups['barbican_all'][0]]['ansible_host'] }}:9311"
barbican_service_internalurl: "{{ barbican_service_publicurl }}"
barbican_service_adminurl: "{{ barbican_service_publicurl }}"
tempest_run: yes
tempest_plugins:

View File

@ -42,4 +42,3 @@
- role: "os_barbican"
vars_files:
- common/test-vars.yml
- test-vars.yml

View File

@ -1,14 +0,0 @@
barbican_galera_password: SuperSecrete
barbican_developer_mode: true
barbican_galera_address: "{{ hostvars[groups['galera_all'][0]]['ansible_host'] }}"
barbican_galera_database: barbican
barbican_keystone_auth: yes
barbican_rabbitmq_password: secrete
barbican_rabbitmq_userid: barbican
barbican_rabbitmq_vhost: /barbican
barbican_service_password: secrete
barbican_venv_tag: testing
barbican_service_publicurl: "http://{{ hostvars[groups['barbican_all'][0]]['ansible_host'] }}:9311"
barbican_service_internalurl: "{{ barbican_service_publicurl }}"
barbican_service_adminurl: "{{ barbican_service_publicurl }}"