Skip to content

Commit

Permalink
chore(charts/substra-backend): bump chart version
Browse files Browse the repository at this point in the history
Signed-off-by: Thibault Camalon <[email protected]>
  • Loading branch information
thbcmlowk committed Jun 3, 2024
1 parent 973e428 commit 36d896b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
11 changes: 9 additions & 2 deletions charts/substra-backend/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Changelog

<!-- towncrier release notes start -->

## [26.6.6] - 2024-06-03

### Changed

- Handle whitespaces in organization names during registration in migrations (#915)

## [26.6.5] - 2024-05-29

### Fixed
Expand All @@ -12,7 +19,7 @@
### Fixed

- whitespace removal removed newline in `networkpolicy-orchestrator-client.yaml` (#914)

## [26.6.3] - 2024-05-27

### Changed
Expand All @@ -25,7 +32,7 @@

- Allow all ingress on server pod (#912)
- Add a variable (`orchestrator.sameCluster`) to allow more communication between backend and orchestrator (#912)

## [26.6.1] - 2024-05-23

### Fix
Expand Down
2 changes: 1 addition & 1 deletion charts/substra-backend/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: substra-backend
home: https://github.com/Substra
version: 26.6.5
version: 26.6.6
appVersion: 0.45.0
kubeVersion: ">= 1.19.0-0"
description: Main package for Substra
Expand Down
4 changes: 2 additions & 2 deletions charts/substra-backend/templates/job-migrations.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ spec:
## IncomingOrganization
while IFS= read -r org_password; do
# Extract the password as the last word
password=$(echo "$user_password" | awk '{print $NF}')
password=$(echo "$org_password" | awk '{print $NF}')
# Extract the username by removing the last word
orgname=$(echo "$user_password" | sed 's/ [^ ]*$//')
orgname=$(echo "$org_password" | sed 's/ [^ ]*$//')
./manage.py create_incoming_organization "$orgname" "$password"
done < /accounts/incoming_organizations
Expand Down

0 comments on commit 36d896b

Please sign in to comment.