mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
2.4 KiB
YAML
83 lines
2.4 KiB
YAML
# Test code for the vcenter license module.
|
|
# (c) 2017, Dag Wieers <dag@wieers.com>
|
|
|
|
# This file is part of Ansible
|
|
#
|
|
# Ansible is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Ansible is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
- name: Make sure pyvmomi is installed
|
|
pip:
|
|
name: pyvmomi
|
|
state: latest
|
|
|
|
- name: Store the vCenter container IP
|
|
set_fact:
|
|
vcenter_host: "{{ lookup('env', 'vcenter_host') }}"
|
|
|
|
- debug:
|
|
var: vcenter_host
|
|
|
|
- name: Wait for vcsim controller to come online {{ vcenter_host }}
|
|
wait_for:
|
|
host: "{{ vcenter_host }}"
|
|
port: 5000
|
|
state: started
|
|
|
|
- name: Kill vcsim
|
|
uri:
|
|
url: http://{{ vcenter_host }}:5000/killall
|
|
|
|
- name: Start vcsim
|
|
uri:
|
|
url: http://{{ vcenter_host }}:5000/spawn?cluster=2
|
|
register: vcsim_instance
|
|
|
|
- name: Wait for vcsim server to come up online {{ vcenter_host }}
|
|
wait_for:
|
|
host: "{{ vcenter_host }}"
|
|
port: 443
|
|
state: started
|
|
|
|
- debug:
|
|
var: vcsim_instance
|
|
|
|
# FIXME: ServerFaultCode: LicenseManager:LicenseManager does not implement: AddLicense
|
|
#- name: Add a vCenter evaluation license
|
|
# vcenter_license:
|
|
# hostname: '{{ vcenter_host }}'
|
|
# username: '{{ vcsim_instance["json"]["username"] }}'
|
|
# password: '{{ vcsim_instance["json"]["password"] }}'
|
|
# validate_certs: no
|
|
# license: 00000-00000-00000-00000-00000
|
|
# state: present
|
|
|
|
#- name: Remove an (unused) vCenter evaluation license
|
|
# vcenter_license:
|
|
# hostname: '{{ vcenter_host }}'
|
|
# username: '{{ vcsim_instance["json"]["username"] }}'
|
|
# password: '{{ vcsim_instance["json"]["password"] }}'
|
|
# validate_certs: no
|
|
# license: 00000-00000-00000-00000-00000
|
|
# state: absent
|
|
|
|
#- name: Add an invalid vCenter license
|
|
# vcenter_license:
|
|
# hostname: '{{ vcenter_host }}'
|
|
# username: '{{ vcsim_instance["json"]["username"] }}'
|
|
# password: '{{ vcsim_instance["json"]["password"] }}'
|
|
# validate_certs: no
|
|
# license: 00000-00000-00000-00000-00001
|
|
# state: present
|
|
# ignore_errors: yes
|