mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-01-11 10:00:03 -03:30
* project: fix ansible-lint name Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * project: ignore jinja template error in names Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * project: capitalize ansible name Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * project: update notify after name capitalization Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> --------- Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch>
35 lines
1.1 KiB
YAML
35 lines
1.1 KiB
YAML
---
|
|
- name: Check openstack_auth_url value
|
|
fail:
|
|
msg: "openstack_auth_url is missing"
|
|
when: openstack_auth_url is not defined or not openstack_auth_url
|
|
|
|
- name: Check openstack_username value
|
|
fail:
|
|
msg: "openstack_username is missing"
|
|
when: openstack_username is not defined or not openstack_username
|
|
|
|
- name: Check openstack_password value
|
|
fail:
|
|
msg: "openstack_password is missing"
|
|
when: openstack_password is not defined or not openstack_password
|
|
|
|
- name: Check openstack_region value
|
|
fail:
|
|
msg: "openstack_region is missing"
|
|
when: openstack_region is not defined or not openstack_region
|
|
|
|
- name: Check openstack_tenant_id value
|
|
fail:
|
|
msg: "one of openstack_tenant_id or openstack_trust_id must be specified"
|
|
when:
|
|
- openstack_tenant_id is not defined or not openstack_tenant_id
|
|
- openstack_trust_id is not defined
|
|
|
|
- name: Check openstack_trust_id value
|
|
fail:
|
|
msg: "one of openstack_tenant_id or openstack_trust_id must be specified"
|
|
when:
|
|
- openstack_trust_id is not defined or not openstack_trust_id
|
|
- openstack_tenant_id is not defined
|