You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
659 B
Bash
18 lines
659 B
Bash
#!/bin/bash
|
|
|
|
# Use this installation script to test development branches. It will
|
|
# automatically set the docker tags to tags generated by the CI system.
|
|
# Copy this script to `test-install.sh` and edit the values file names if you
|
|
# need to.
|
|
# Make sure you configure the helm chart by copying `values-local.yaml.example`
|
|
# to `values-local.yaml` and editing it.
|
|
|
|
|
|
set -v
|
|
|
|
# Makes sure you use docker image tags for the branch you're working on now
|
|
. variables.sh
|
|
|
|
# Upgrade or install application using the current git branch as docker tag
|
|
helm upgrade $releaseName . --install -f values-local.yaml --set initImage.tag=$dockerTag --set image.tag=$dockerTag
|