X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?p=stor4nfv.git;a=blobdiff_plain;f=ci%2Fansible%2Fgroup_vars%2Fcommon.yml;h=50749e6717cadd8734daad0714847938f3c4ee10;hp=cbdaaf64b1dae023fe81336202633c9b9deaf508;hb=078bb837513f3b83fdd07f2e10f9abeb0bd485db;hpb=63ff6c6ec9ebbca90ac7304a27c0430dbcecb74f diff --git a/ci/ansible/group_vars/common.yml b/ci/ansible/group_vars/common.yml index cbdaaf6..50749e6 100644 --- a/ci/ansible/group_vars/common.yml +++ b/ci/ansible/group_vars/common.yml @@ -1,3 +1,17 @@ +# 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. @@ -8,32 +22,63 @@ dummy: # GENERAL # ########### -opensds_release: v0.1.4 # The version should be at least v0.1.4. -nbp_release: v0.1.0 # The version should be at least v0.1.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_url: /opt/opensds-{{ opensds_release }}-linux-amd64.tar.gz -opensds_dir: /opt/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_url: /opt/opensds-k8s-{{ nbp_release }}-linux-amd64.tar.gz -nbp_dir: /opt/opensds-k8s-{{ nbp_release }}-linux-amd64 +# 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 + + ########### -# PLUGIN # +# RELEASE # ########### -nbp_plugin_type: standalone # standalone is the default integration way, but you can change it to 'csi', 'flexvolume' +# 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 -flexvolume_plugin_dir: /usr/libexec/kubernetes/kubelet-plugins/volume/exec/opensds.io~opensds +# 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 ########### -#CONTAINER# +# PLUGIN # ########### -container_enabled: false +# '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