diff --git a/.travis.yml b/.travis.yml index e73d4d328..331a27f19 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,4 +16,4 @@ before_script: script: - chmod +x ./ci_check.sh - - echo | /bin/bash ./ci_check.sh + - travis_wait 30 echo | /bin/bash ./ci_check.sh diff --git a/CHANGELOG/CHANGELOG-v1.1.0.md b/CHANGELOG/CHANGELOG-v1.1.0.md new file mode 100644 index 000000000..09095e178 --- /dev/null +++ b/CHANGELOG/CHANGELOG-v1.1.0.md @@ -0,0 +1,36 @@ +# Changelog + +[Full Changelog](https://github.com/sodafoundation/installer/compare/v1.0.1...HEAD) + +**Closed issues:** + +- Installation for Delfin failed [\#391](https://github.com/sodafoundation/installer/issues/391) +- Installation of SODA fails when delfin is enabled . [\#390](https://github.com/sodafoundation/installer/issues/390) +- Install iSCSI packages on CentOS [\#380](https://github.com/sodafoundation/installer/issues/380) + +**Merged pull requests:** + +- After redis config change restart service [\#392](https://github.com/sodafoundation/installer/pull/392) ([joseph-v](https://github.com/joseph-v)) +- enabled\_backends change [\#389](https://github.com/sodafoundation/installer/pull/389) ([vineela1999](https://github.com/vineela1999)) +- Fix dashboard image release version [\#373](https://github.com/sodafoundation/installer/pull/373) ([joseph-v](https://github.com/joseph-v)) + +## [v1.0.1](https://github.com/sodafoundation/installer/tree/v1.0.1) (2020-09-22) + +[Full Changelog](https://github.com/sodafoundation/installer/compare/v1.0.0...v1.0.1) + +**Closed issues:** + +- Add support of NetApp NAS Backend through Ansible [\#384](https://github.com/sodafoundation/installer/issues/384) +- Support SODA projects installation on CentOS 8 [\#377](https://github.com/sodafoundation/installer/issues/377) +- Test cases updated for installer [\#346](https://github.com/sodafoundation/installer/issues/346) + +**Merged pull requests:** + +- Update tag for release version v1.0.1 [\#387](https://github.com/sodafoundation/installer/pull/387) ([joseph-v](https://github.com/joseph-v)) +- Adding support for NetApp NAS as backend installation [\#385](https://github.com/sodafoundation/installer/pull/385) ([kumarashit](https://github.com/kumarashit)) +- Support installation on CentOS [\#379](https://github.com/sodafoundation/installer/pull/379) ([kumarashit](https://github.com/kumarashit)) +- Change default port of redis to support delfin installation with multi-cloud [\#374](https://github.com/sodafoundation/installer/pull/374) ([joseph-v](https://github.com/joseph-v)) + + + +\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)* diff --git a/ansible/group_vars/common.yml b/ansible/group_vars/common.yml index 9b0d8f4e2..d0bdec6a6 100644 --- a/ansible/group_vars/common.yml +++ b/ansible/group_vars/common.yml @@ -34,7 +34,7 @@ deploy_project: all install_from: release # These fields below will specify the tag based on install_from type repo_branch: master -release_version: v1.0.1 +release_version: v1.1.0 # This field indicates which os family the system will be running, currently # support 'Debian' and 'RedHat' diff --git a/ansible/group_vars/delfin.yml b/ansible/group_vars/delfin.yml index 38d145384..8ecd5cf50 100644 --- a/ansible/group_vars/delfin.yml +++ b/ansible/group_vars/delfin.yml @@ -52,7 +52,7 @@ delfin_remote_url: https://github.com/sodafoundation/delfin.git ########### # If user specifies intalling from release,then he can choose the specific version -delfin_release: "v0.6.0" +delfin_release: "v1.0.0" # These fields are NOT suggested to be modified delfin_download_url: https://github.com/sodafoundation/delfin/archive/{{ delfin_release }}.tar.gz diff --git a/ansible/group_vars/orchestration.yml b/ansible/group_vars/orchestration.yml index b1c907af1..c8a928b33 100644 --- a/ansible/group_vars/orchestration.yml +++ b/ansible/group_vars/orchestration.yml @@ -65,7 +65,7 @@ orchestration_st2_installer_remote_url: https://github.com/StackStorm/st2-docker ########### # If user specifies intalling from release,then he can choose the specific version -orchestration_release: v0.10.0 # "{{ release_version }}" The version should be greater than v0.5.4 +orchestration_release: v0.12.0 # "{{ release_version }}" The version should be greater than v0.5.4 # These fields are NOT suggested to be modified orchestration_download_url: https://github.com/sodafoundation/orchestration/archive/{{ orchestration_release }}.tar.gz diff --git a/charts/OpenSDS Installation using Helm.md b/charts/OpenSDS Installation using Helm.md index 7c9ba4238..c2c92b08c 100644 --- a/charts/OpenSDS Installation using Helm.md +++ b/charts/OpenSDS Installation using Helm.md @@ -334,8 +334,8 @@ Logout of the dashboard as admin and login the dashboard again as a non-admin us #### For CSI Plugin ``` -wget https://github.com/sodafoundation/nbp/releases/download/v1.0.1/opensds-sushi-v1.0.1-linux-amd64.tar.gz -tar zxvf opensds-sushi-v1.0.1-linux-amd64.tar.gz +wget https://github.com/sodafoundation/nbp/releases/download/v1.1.0/opensds-sushi-v1.1.0-linux-amd64.tar.gz +tar zxvf opensds-sushi-v1.1.0-linux-amd64.tar.gz cd /opensds-sushi-linux-amd64 ``` diff --git a/charts/csiplugin-block/values.yaml b/charts/csiplugin-block/values.yaml index baa72d6a8..3cee0f489 100755 --- a/charts/csiplugin-block/values.yaml +++ b/charts/csiplugin-block/values.yaml @@ -3,7 +3,7 @@ # Declare variables to be passed into your templates. -image: sodafoundation/csiplugin-block:v1.0.1 +image: sodafoundation/csiplugin-block:v1.1.0 # ImagePullPolicy: valid values are "IfNotPresent", "Never", and "Always" imagePullPolicy: IfNotPresent # ImageRestartPolicy: valid values are "Never", and "Always" diff --git a/charts/csiplugin-file/values.yaml b/charts/csiplugin-file/values.yaml index dbf238468..d0858b4a5 100644 --- a/charts/csiplugin-file/values.yaml +++ b/charts/csiplugin-file/values.yaml @@ -2,7 +2,7 @@ # This is a YAML-formatted file. # Declare variables to be passed into your templates. -image: sodafoundation/csiplugin-file:v1.0.1 +image: sodafoundation/csiplugin-file:v1.1.0 # ImagePullPolicy: valid values are "IfNotPresent", "Never", and "Always" imagePullPolicy: IfNotPresent diff --git a/charts/opensds/values.yaml b/charts/opensds/values.yaml index 948a9c09c..223daaa64 100644 --- a/charts/opensds/values.yaml +++ b/charts/opensds/values.yaml @@ -72,7 +72,7 @@ osdsdock: name: dock replicaCount: 1 - image: sodafoundation/dock:v1.0.1 + image: sodafoundation/dock:v1.1.0 # ImagePullPolicy: valid values are "IfNotPresent", "Never", and "Always" imagePullPolicy: IfNotPresent @@ -101,7 +101,7 @@ osdsdashboard: name: dashboard replicaCount: 1 - image: sodafoundation/dashboard:v1.0.1 + image: sodafoundation/dashboard:v1.1.0 # ImagePullPolicy: valid values are "IfNotPresent", "Never", and "Always" imagePullPolicy: IfNotPresent diff --git a/charts/servicebroker/values.yaml b/charts/servicebroker/values.yaml index 269d2fa13..0a293b5ff 100644 --- a/charts/servicebroker/values.yaml +++ b/charts/servicebroker/values.yaml @@ -3,7 +3,7 @@ name: servicebroker image: - service-broker: sodafoundation/service-broker:v1.0.1 + service-broker: sodafoundation/service-broker:v1.1.0 etcd-store: quay.io/coreos/etcd:latest # ImagePullPolicy; valid values are "IfNotPresent", "Never", and "Always"