CaaS storage seed code
[ta/caas-storage.git] / ansible / roles / kubernetes_storage / tasks / main.yaml
1 ---
2 # Copyright 2019 Nokia
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #     http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16   - name: create kubernetes secret for Ceph auth tokens
17     include_tasks: create_ceph_auth_secret.yaml
18     with_items: "{{ auth_tokens }}"
19     loop_control:
20       loop_var: token
21     when: ( ceph_configured | default(False) )
22
23   - name: create kubernetes ceph storage class
24     import_tasks: create_ceph_storage_class.yaml
25     when: ( ceph_configured | default(False) )
26
27   - name: create kubernetes local storage class
28     import_tasks: create_local_storage_class.yaml
29     when: ( not ceph_configured | default(True) )
30