Skip to content
Snippets Groups Projects
test-install.sh.example 659 B
Newer Older
#!/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
# 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