Last active
October 3, 2018 02:10
-
-
Save jdolitsky/b3f41e1a920f999a69244cf54fb912c6 to your computer and use it in GitHub Desktop.
codefresh-helm-azure-install-hackmd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '1.0' | |
steps: | |
get_tiller_version: | |
title: Determine Tiller version | |
image: codefresh/cfstep-helm:latest | |
commands: | |
- cf_export TILLER_VERSION=$(helm --kube-context "$KUBE_CONTEXT" version --template={{.Server.SemVer}} | cut -c2-) | |
install_chart: | |
title: Install HackMD chart into cluster | |
image: codefresh/cfstep-helm:${{TILLER_VERSION}} | |
environment: | |
- ACTION=install | |
- CHART_REF=hackmd | |
- RELEASE_NAME=hackmd | |
- VALUE_service_type=LoadBalancer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment