Skip to content

Commit

Permalink
Prepare release 1.14.0-rc4 (#9157)
Browse files Browse the repository at this point in the history
* Release 1.14.0-rc4

* For listing helm releases exit on error correctly (#9154)

* For listing helm releases exit on error correctly

* Update Application Operator Script

Co-authored-by: Szymon Gibala <[email protected]>

* Update console images

Co-authored-by: Piotr Mścichowski <[email protected]>
Co-authored-by: Szymon Gibala <[email protected]>
Co-authored-by: I332735 <[email protected]>
  • Loading branch information
4 people authored Aug 3, 2020
1 parent 18757b9 commit 493da20
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
5 changes: 3 additions & 2 deletions installation/resources/installer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,9 @@ spec:
fi
echo "---> Get current releases"
set -o pipefail
${HELM_2_BINARY} ls --tls --all --output json | jq '.Releases[] | .Name + " " + .Namespace + " " + .Chart' | tr -d '"' > helm2-releases
set +o pipefail
if [[ ! $(${HELM_3_BINARY} plugin list | grep '2to3') ]]; then
echo "---> Get migration plugin"
${HELM_3_BINARY} plugin install https://github.com/helm/helm-2to3.git
Expand Down Expand Up @@ -178,7 +179,7 @@ spec:
done < helm2-releases
containers:
- name: kyma-installer-container
image: eu.gcr.io/kyma-project/kyma-installer:1.14.0-rc3
image: eu.gcr.io/kyma-project/kyma-installer:1.14.0-rc4
imagePullPolicy: IfNotPresent
args:
- -overrideLogFile=/app/overrides.txt
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,9 @@ if [[ ! $(${HELM_3_BINARY} plugin list | grep '2to3') ]]; then
fi

echo "---> Get current releases "

set -o pipefail
${HELM_2_BINARY} ls --tls --all --output json | jq '.Releases[] | .Name + " " + .Namespace + " " + .Chart' | tr -d '"' > helm2-all-releases
set +o pipefail

echo "---> Migrate Gateway and Application releases"
while read line; do
Expand Down
4 changes: 2 additions & 2 deletions resources/console/charts/web/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ cluster:
console:
image:
pullPolicy: IfNotPresent
tag: 165d891f
tag: a1e46113
service:
externalPort: 80
internalPort: 8080
Expand All @@ -27,7 +27,7 @@ console:
core_ui:
image:
pullPolicy: IfNotPresent
tag: 165d891f
tag: e6cf9326
service:
externalPort: 80
internalPort: 80
Expand Down

0 comments on commit 493da20

Please sign in to comment.