Update the latest version of ansible script
[stor4nfv.git] / ci / ansible / roles / nbp-installer / scenarios / csi.yml
1 # Copyright (c) 2018 Huawei Technologies Co., Ltd. All Rights Reserved.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #     http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 ---
16 - name: Configure opensds endpoint IP in opensds csi plugin
17   lineinfile:
18     dest: "{{ nbp_work_dir }}/csi/deploy/kubernetes/csi-configmap-opensdsplugin.yaml"
19     regexp: '^  opensdsendpoint'
20     line: '  opensdsendpoint: {{ opensds_endpoint }}'
21     backup: yes
22
23 - name: Configure opensds auth strategy in opensds csi plugin
24   lineinfile:
25     dest: "{{ nbp_work_dir }}/csi/deploy/kubernetes/csi-configmap-opensdsplugin.yaml"
26     regexp: '^  opensdsauthstrategy'
27     line: '  opensdsauthstrategy: {{ opensds_auth_strategy }}'
28     backup: yes
29
30 - name: Configure keystone os auth url in opensds csi plugin
31   lineinfile:
32     dest: "{{ nbp_work_dir }}/csi/deploy/kubernetes/csi-configmap-opensdsplugin.yaml"
33     regexp: '^  osauthurl'
34     line: '  osauthurl: {{ keystone_os_auth_url }}'
35     backup: yes
36   when: opensds_auth_strategy == "keystone"
37
38 - name: Prepare and deploy opensds csi plugin
39   shell: |
40     . /etc/profile
41     kubectl create -f deploy/kubernetes
42   args:
43     chdir: "{{ nbp_work_dir }}/csi"
44   ignore_errors: yes