Add comments to deploy script wrappers

This commit is contained in:
Emanuel Borsboom 2016-02-19 10:51:27 -08:00
parent 04b51783a1
commit bb4bf8d67d
4 changed files with 6 additions and 0 deletions

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash
# See description at https://github.com/fpco/devops-helpers#wrappers
set -xe
cd "$(dirname "${BASH_SOURCE[0]}")/.."
ENV="$1"; shift

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash
# See description at https://github.com/fpco/devops-helpers#wrappers
set -xe
cd "$(dirname "${BASH_SOURCE[0]}")/../.."
stack image container "$@"

View File

@ -1,3 +1,5 @@
#!/usr/bin/env bash
# See description at https://github.com/fpco/devops-helpers#wrappers
set -xe
exec "$(dirname "${BASH_SOURCE[0]}")/../common/devops-helpers/docker/push_helper.sh" \
--repo fpco/stackage-server "$@"

View File

@ -1,4 +1,6 @@
#!/usr/bin/env bash
# See description at https://github.com/fpco/devops-helpers#wrappers
set -xe
exec "$(dirname ${BASH_SOURCE[0]})/../common/devops-helpers/kubernetes/deploy_rc_helper.sh" \
--app "stackage-server" \
--repo fpco/stackage-server \