Skip to content

Commit

Permalink
Minimized helm upgrade
Browse files Browse the repository at this point in the history
Set SKIP_BUILDS: YES
  • Loading branch information
warrenchristian1telus committed Dec 10, 2024
1 parent f85aaf8 commit 404d956
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ env:
USER: ${{ github.actor }}

# Skip builds for faster deployments / testing ("YES" or build)
SKIP_BUILDS: "NO"
SKIP_BUILDS: "YES"
SKIP_DEPLOY: "NO"
# Clean builds before deployments (delete all resources, other than backups) ("YES" or allow collisions)
CLEAN_BUILDS: "NO"
Expand Down
12 changes: 6 additions & 6 deletions openshift/scripts/deploy-mariadb-galera.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ if helm list -q | grep -q "^$DB_DEPLOYMENT_NAME$"; then

helm upgrade $DB_DEPLOYMENT_NAME \
oci://registry-1.docker.io/bitnamicharts/mariadb-galera \
--set rootUser.password=$DB_PASSWORD \
--set db.user=$DB_USER \
--set db.password=$DB_PASSWORD \
--set db.name=$DB_NAME \
--set galera.mariabackup.password=$DB_PASSWORD \
--set galera.mariabackup.forcePassword=true
--set rootUser.password=$DB_PASSWORD
# --set db.user=$DB_USER \
# --set db.password=$DB_PASSWORD \
# --set db.name=$DB_NAME \
# --set galera.mariabackup.password=$DB_PASSWORD \
# --set galera.mariabackup.forcePassword=true

else
echo "Helm deployment $DB_DEPLOYMENT_NAME NOT FOUND. Beginning deployment..."
Expand Down

0 comments on commit 404d956

Please sign in to comment.