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.

19 lines
559 B
Bash

#!/bin/bash
# You can use this installation script to install production ready clusters.
# Make sure to create `values-local.yaml` and edit the values to reflect your
# website.
# Edit the `releaseName` variable below if you want to release several
# production sites.
# Additional parameters can be provided to the script and will be forwarded to
# the `helm` command.
set -v
releaseName="wordpress-production"
# Upgrade or install application using the current git branch as docker tag
helm upgrade $releaseName . --install -f values-local.yaml "$@"