mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-03-09 11:47:47 +03:00
Deploy Cinder CSI driver to provision volumes over OpenStack (#5184)
* Deploy Cinder CSI driver to provision volumes over OpenStack * Deploy Cinder CSI StorageClass * Cinder CSI doc
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
79128dcd6b
commit
b0ee1f6cc6
@@ -0,0 +1,34 @@
|
||||
---
|
||||
- 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
|
||||
|
||||
- name: Cinder CSI Driver | check cinder_username value
|
||||
fail:
|
||||
msg: "cinder_username is missing"
|
||||
when: cinder_username is not defined or not cinder_username
|
||||
|
||||
- name: Cinder CSI Driver | check cinder_password value
|
||||
fail:
|
||||
msg: "cinder_password is missing"
|
||||
when: cinder_password is not defined or not cinder_password
|
||||
|
||||
- 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:
|
||||
msg: "one of cinder_tenant_id or cinder_trust_id must be specified"
|
||||
when:
|
||||
- cinder_tenant_id is not defined or not cinder_tenant_id
|
||||
- cinder_trust_id is not defined
|
||||
|
||||
- name: Cinder CSI Driver | check cinder_trust_id value
|
||||
fail:
|
||||
msg: "one of cinder_tenant_id or cinder_trust_id must be specified"
|
||||
when:
|
||||
- cinder_trust_id is not defined or not cinder_trust_id
|
||||
- cinder_tenant_id is not defined
|
||||
Reference in New Issue
Block a user