summaryrefslogtreecommitdiffstats
path: root/ci/ansible/group_vars/common.yml
blob: 50749e6717cadd8734daad0714847938f3c4ee10 (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
79
80
81
82
83
84
# Copyright (c) 2018 Huawei Technologies Co., Ltd. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

---
# Dummy variable to avoid error because ansible does not recognize the
# file as a good configuration file when no variable in it.
dummy:


###########
# GENERAL #
###########

# This field indicates which way user prefers to install, currently support
# 'repository', 'release' and 'container'
install_from: repository

# These fields are NOT suggested to be modifie
opensds_work_dir: /opt/opensds-linux-amd64
nbp_work_dir: /opt/opensds-k8s-linux-amd64
opensds_config_dir: /etc/opensds
opensds_driver_config_dir: "{{ opensds_config_dir }}/driver"
opensds_log_dir: /var/log/opensds


##############
# REPOSITORY #
##############

# If user specifies intalling from repository, then he can choose the specific
# repository branch
opensds_repo_branch: master
nbp_repo_branch: master

# These fields are NOT suggested to be modified
opensds_remote_url: https://github.com/opensds/opensds.git
nbp_remote_url: https://github.com/opensds/nbp.git


###########
# RELEASE #
###########

# If user specifies intalling from release,then he can choose the specific version
opensds_release: v0.2.0 # The version should be at least v0.2.0
nbp_release: v0.2.0 # The version should be at least v0.2.0

# These fields are NOT suggested to be modified
opensds_download_url: https://github.com/opensds/opensds/releases/download/{{ opensds_release }}/opensds-{{ opensds_release }}-linux-amd64.tar.gz
opensds_tarball_dir: /tmp/opensds-{{ opensds_release }}-linux-amd64
nbp_download_url: https://github.com/opensds/nbp/releases/download/{{ nbp_release }}/opensds-k8s-{{ nbp_release }}-linux-amd64.tar.gz
nbp_tarball_dir: /tmp/opensds-k8s-{{ nbp_release }}-linux-amd64


#############
# CONTAINER #
#############

container_enabled: false


###########
# PLUGIN  #
###########

# 'hotpot_only' is the default integration way, but you can change it to 'csi'
# or 'flexvolume'
nbp_plugin_type: hotpot_only
# The IP (127.0.0.1) should be replaced with the opensds actual endpoint IP
opensds_endpoint: http://127.0.0.1:50040

# These fields are NOT suggested to be modified
flexvolume_plugin_dir: /usr/libexec/kubernetes/kubelet-plugins/volume/exec/opensds.io~opensds