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

releaseName="wordpress-production"

# Upgrade or install application using the current git branch as docker tag
helm upgrade $releaseName . --install -f values-local.yaml "$@"