Skip to content

Commit

Permalink
[#776] deploy stable release (#782)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-semenets authored and Dmitrii Suslov committed Feb 6, 2019
1 parent dbe7130 commit f56bc14
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## [0.10.0](https://github.com/legion-platform/legion/tree/0.10.0) (2019-02-05)
## [0.10.0](https://github.com/legion-platform/legion/tree/0.10.0) (2019-02-06)

### Added
- Model HTTP API request & response logging [\#624](https://github.com/legion-platform/legion/issues/624)
Expand Down Expand Up @@ -28,6 +28,7 @@
- Pin all third-party docker images with sha [\#761](https://github.com/legion-platform/legion/issues/761)

### Fixed
- Legion deployment from pubic repositories [\#776](https://github.com/legion-platform/legion/issues/776)
- EDGE generates same request IDs after configuration reloads [\#762](https://github.com/legion-platform/legion/issues/762)
- Param param_update_version_string is missed in Release CI stage [\#706](https://github.com/legion-platform/legion/issues/706)
- Add missed CI post stage [\#697](https://github.com/legion-platform/legion/issues/697)
Expand Down
8 changes: 4 additions & 4 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -267,9 +267,9 @@ EOL
"""
}
sh """
twine upload -r ${env.param_local_pypi_distribution_target_name} '/src/legion/dist/legion-${Globals.buildVersion}.*'
twine upload -r ${env.param_local_pypi_distribution_target_name} '/src/legion_test/dist/legion_test-${Globals.buildVersion}.*'
twine upload -r ${env.param_local_pypi_distribution_target_name} '/src/legion_airflow/dist/legion_airflow-${Globals.buildVersion}.*'
twine upload -r ${env.param_local_pypi_distribution_target_name} '/src/legion/dist/legion-*'
twine upload -r ${env.param_local_pypi_distribution_target_name} '/src/legion_test/dist/legion_test-*'
twine upload -r ${env.param_local_pypi_distribution_target_name} '/src/legion_airflow/dist/legion_airflow-*'
"""

if (env.param_stable_release) {
Expand Down Expand Up @@ -299,7 +299,7 @@ EOL
"""
}
sh """
twine upload -r ${env.param_pypi_distribution_target_name} '/src/legion/dist/legion-${Globals.buildVersion}.*'
twine upload -r ${env.param_pypi_distribution_target_name} '/src/legion/dist/legion-*'
"""
} else {
print("Skipping package upload")
Expand Down
1 change: 1 addition & 0 deletions deploy/ansible/roles/charts_common/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
shell: helm --kube-context {{ cluster_name }} repo add {{ item }}
with_items:
- default http://storage.googleapis.com/kubernetes-charts/
- legion-helm {{ helm_repo }}

- name: Update helm repositories
shell: helm --kube-context {{ cluster_name }} repo update
Expand Down

0 comments on commit f56bc14

Please sign in to comment.