Simulate removing keystone services

Ansible modules does not implemenet removing yet
This commit is contained in:
Łukasz Oleś 2015-06-01 14:58:39 +00:00
parent 5df0e3ccc9
commit db1c56eb94
3 changed files with 10 additions and 3 deletions

View File

@ -2,4 +2,5 @@
sudo: yes
tasks:
- name: keystone role
keystone_user: endpoint=http://{{keystone_host}}:{{keystone_port}}/v2.0/ token={{admin_token}} user={{user_name}} tenant={{tenant_name}} role={{role_name}} state=absent
#TODO: not implemented in module
pause: seconds=1

View File

@ -1 +1,6 @@
#todo
- hosts: [{{ ip }}]
sudo: yes
tasks:
- name: keystone service and endpoint
#TODO: not implemented in module
pause: seconds=1

View File

@ -2,4 +2,5 @@
sudo: yes
tasks:
- name: keystone user
keystone_user: endpoint=http://{{keystone_host}}:{{keystone_port}}/v2.0/ token={{admin_token}} user={{user_name}} password={{user_password}} tenant={{tenant_name}} state=absent
#TODO: not implemented in module
pause: seconds=1