2019-11-01 07:59:24 +00:00
|
|
|
---
|
|
|
|
- name: Cinder CSI Driver | check cinder_auth_url value
|
|
|
|
fail:
|
|
|
|
msg: "cinder_auth_url is missing"
|
|
|
|
when: cinder_auth_url is not defined or not cinder_auth_url
|
|
|
|
|
2021-07-15 07:56:48 +00:00
|
|
|
- name: Cinder CSI Driver | check cinder_username value cinder_application_credential_name value
|
2019-11-01 07:59:24 +00:00
|
|
|
fail:
|
2021-07-15 07:56:48 +00:00
|
|
|
msg: "you must either set cinder_username or cinder_application_credential_name"
|
|
|
|
when:
|
|
|
|
- cinder_username is not defined or not cinder_username
|
|
|
|
- cinder_application_credential_name is not defined or not cinder_application_credential_name
|
|
|
|
|
|
|
|
- name: Cinder CSI Driver | check cinder_application_credential_id value
|
|
|
|
fail:
|
|
|
|
msg: "cinder_application_credential_id is missing"
|
|
|
|
when:
|
|
|
|
- cinder_application_credential_name is defined
|
|
|
|
- cinder_application_credential_name|length > 0
|
|
|
|
- cinder_application_credential_id is not defined or not cinder_application_credential_id
|
|
|
|
|
|
|
|
- name: Cinder CSI Driver | check cinder_application_credential_secret value
|
|
|
|
fail:
|
|
|
|
msg: "cinder_application_credential_secret is missing"
|
|
|
|
when:
|
|
|
|
- cinder_application_credential_name is defined
|
|
|
|
- cinder_application_credential_name|length > 0
|
|
|
|
- cinder_application_credential_secret is not defined or not cinder_application_credential_secret
|
2019-11-01 07:59:24 +00:00
|
|
|
|
|
|
|
- name: Cinder CSI Driver | check cinder_password value
|
|
|
|
fail:
|
|
|
|
msg: "cinder_password is missing"
|
2021-07-15 07:56:48 +00:00
|
|
|
when:
|
|
|
|
- cinder_username is defined
|
|
|
|
- cinder_username|length > 0
|
|
|
|
- cinder_application_credential_name is not defined or not cinder_application_credential_name
|
|
|
|
- cinder_application_credential_secret is not defined or not cinder_application_credential_secret
|
|
|
|
- cinder_password is not defined or not cinder_password
|
2019-11-01 07:59:24 +00:00
|
|
|
|
|
|
|
- name: Cinder CSI Driver | check cinder_region value
|
|
|
|
fail:
|
|
|
|
msg: "cinder_region is missing"
|
|
|
|
when: cinder_region is not defined or not cinder_region
|
|
|
|
|
|
|
|
- name: Cinder CSI Driver | check cinder_tenant_id value
|
|
|
|
fail:
|
2020-02-17 09:49:28 +00:00
|
|
|
msg: "one of cinder_tenant_id or cinder_tenant_name must be specified"
|
2019-11-01 07:59:24 +00:00
|
|
|
when:
|
|
|
|
- cinder_tenant_id is not defined or not cinder_tenant_id
|
2021-07-15 07:56:48 +00:00
|
|
|
- cinder_tenant_name is not defined or not cinder_tenant_name
|
|
|
|
- cinder_application_credential_name is not defined or not cinder_application_credential_name
|
2019-11-01 07:59:24 +00:00
|
|
|
|
2021-07-15 07:56:48 +00:00
|
|
|
- name: Cinder CSI Driver | check cinder_domain_id value
|
2019-11-01 07:59:24 +00:00
|
|
|
fail:
|
2021-07-15 07:56:48 +00:00
|
|
|
msg: "one of cinder_domain_id or cinder_domain_name must be specified"
|
2019-11-01 07:59:24 +00:00
|
|
|
when:
|
2021-07-15 07:56:48 +00:00
|
|
|
- cinder_domain_id is not defined or not cinder_domain_id
|
|
|
|
- cinder_domain_name is not defined or not cinder_domain_name
|
|
|
|
- cinder_application_credential_name is not defined or not cinder_application_credential_name
|