blob: c549566a4e4f4620c07877df2d57c3e2d4ed77a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
# #############################################################################
# Copyright (c) 2018 Intel Corp.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
# #############################################################################
---
- name: ensure opensds.conf exists
stat:
path: /etc/opensds/opensds.conf
ignore_errors: "true"
register: opensds_exists
- name: configure ceph.yaml, opensds.conf
remote_user: root
shell: |
cd /root/gopath/src/github.com/os-stor4nfv/stor4nfv/ci/ansible
cp group_vars/ceph/ceph.yaml /etc/opensds/driver/
sed -i 's/^ enabled_backends.*/ enabled_backends: ceph/g' /etc/opensds/opensds.conf
sudo cat >> /etc/opensds/opensds.conf << OPENSDS_GLOABL_CONFIG_DOC
[ceph]
name = ceph
description = Ceph Test
driver_name = ceph
config_path = /etc/opensds/driver/ceph.yaml
OPENSDS_GLOABL_CONFIG_DOC
when:
- opensds_exists.stat.exists
- name: copy ceph.conf from ceph-mon container
remote_user: root
shell: |
mkdir -p /etc/ceph
cp /proc/$(lxc-info -n $(lxc-ls --line | grep ceph-mon) -p -H)/root/etc/ceph/ceph.conf \
/etc/ceph/ceph.conf
when:
- opensds_exists.stat.exists
- name: ensure osdsdock exists
stat:
path: /opt/opensds-hotpot-linux-amd64/bin/osdsdock
ignore_errors: "true"
register: osdsdock_exists
- name: start osdsdock daemon
remote_user: root
shell: |
/opt/opensds-hotpot-linux-amd64/bin/osdsdock -daemon
ignore_errors: "true"
when:
- osdsdock_exists.stat.exists
- name: ensure osdsctl exists
stat:
path: /opt/opensds-hotpot-linux-amd64/bin/osdsctl
ignore_errors: "true"
register: osdsctl_exists
- name: run cinder-compatible-api, create opensds default profile
remote_user: root
shell: |
cd $HOME/gopath/src/github.com/os-stor4nfv/stor4nfv/ci/ansible;
export OPENSDS_ENDPOINT=http://{{ public_vip.ip }}:50040;
export CINDER_ENDPOINT=http://{{ internal_vip.ip }}:8776/v3;
chmod +x ../bin/cindercompatibleapi;
( ( nohup ../bin/cindercompatibleapi > /var/log/cindercompatibleapi.log 2>&1 ) & );
cp /opt/opensds-hotpot-linux-amd64/bin/osdsctl /usr/local/bin;
export OPENSDS_AUTH_STRATEGY=noauth;
osdsctl profile create '{"name": "default", "description": "default policy"}'
ignore_errors: "true"
when:
- osdsctl_exists.stat.exists
|