add postgres version to subsequent helm deploys

If the postgres image version isn't passed to upgrades, helm will revert to the default postgres version. If it crosses incompatible version boundaries, this will break postgres horribly, as it won't be able to read the data files.
This commit is contained in:
Brandon Dimcheff 2019-05-28 02:59:27 +00:00 committed by Stan Hu
parent 2b8d597f2f
commit f3673b87cc
2 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,5 @@
---
title: Fixed ignored postgres version that occurs after the first autodevops deploy when specifying custom $POSTGRES_VERSION
merge_request: 28735
author: Brandon Dimcheff
type: fixed

View File

@ -432,6 +432,7 @@ rollout 100%:
--set postgresql.postgresUser="$POSTGRES_USER" \
--set postgresql.postgresPassword="$POSTGRES_PASSWORD" \
--set postgresql.postgresDatabase="$POSTGRES_DB" \
--set postgresql.imageTag="$POSTGRES_VERSION" \
--set application.migrateCommand="$DB_MIGRATE" \
$HELM_UPGRADE_EXTRA_ARGS \
--namespace="$KUBE_NAMESPACE" \