Hello Team, 
 

I am trying to do integration of Ansible with OpenStack. I got the below 
error. So please help me to solve this error.

error:

TASK [launch an instance] 
******************************************************
fatal: [localhost]: FAILED! => {"changed": false, "extra_data": null, 
"failed": true, "msg": "Error fetching server list on envvars:RegionOne: 
(Inner Exception: Expecting to find domain in project - the server could 
not comply with the request since it is either malformed or otherwise 
incorrect. The client is assumed to be in error. (HTTP 400) (Request-ID: 
req-fba6a8d8-05f9-4c28-9b7b-1923b12fa60e))"}
    to retry, use: --limit 
@/root/balu/ans_playbooks/openstack/openstack.retry

The playbook is below.

# automatically assigns a floating IP 
- name: launch a compute instance 
  hosts: all 
  sudo: yes 
  tasks: 
  - name: echo PATH into bashrc 
    action: lineinfile dest=~/.bash_profile line='export 
user_domain_name=default' insertafter='EOF' regexp='export 
user_domain_name.*'  state=present 
 
  - name: launch an instance 
    os_server: 
     state: present 
     auth: 
      auth_url: http://controller:5000/v3/ 
      username: ********
      password: *********
      project_name: Sample 
     name: vm1 
     region_name: RegionOne 
     availability_zone: nova 
     image: 34d91b63-ffa5-4601-b3cf-e04deaac8dec 
     key_name: ubuntutestkeypair1 
     timeout: 200 
     flavor: m1.medium 
     security_groups: default 
     auto_ip: yes 

Please help me. Thanks in advance.


-- 
You received this message because you are subscribed to the Google Groups 
"Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/e9054cfd-1dd3-4627-8f16-a3b739e8a7f5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to