We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is your feature request related to a problem? Please describe.
pre-cf-push.sh
post-deploy.sh
Describe alternatives you've considered
Currently, CF apps such use the following workaround:
coab-depls/common-broker-scripts/pre-cf-push.sh:
coab-depls/common-broker-scripts/pre-cf-push.sh
BOSH_CLI_VERSION="3.0.1" #--- Install bosh cli printf "%bInstall bosh cli \"${BOSH_CLI_VERSION}\"...%b\n" "${YELLOW}" "${STD}" curl "https://s3.amazonaws.com/bosh-cli-artifacts/bosh-cli-${BOSH_CLI_VERSION}-linux-amd64" -L -s -o /usr/local/bin/bosh if [ $? != 0 ] ; then printf "\n%bERROR: Install bosh cli failed%b\n\n" "${RED}" "${STD}" ; exit 0 fi chmod 755 /usr/local/bin/bosh
coab-depls/common-broker-scripts/post-deploy.sh:
coab-depls/common-broker-scripts/post-deploy.sh
# Load bash to benefit from standard portable bash syntax apk add --update bash && rm -rf /var/cache/apk/*
coab-depls/common-broker-scripts/setUpSmokeTestEnv.bash
#--- Parameters BOSH_CLI_VERSION="3.0.1" #--- Install bosh cli printf "%bInstall bosh cli \"${BOSH_CLI_VERSION}\"...%b\n" "${YELLOW}" "${STD}" curl "https://s3.amazonaws.com/bosh-cli-artifacts/bosh-cli-${BOSH_CLI_VERSION}-linux-amd64" -L -s -o /usr/local/bin/bosh if [ $? != 0 ] ; then printf "\n%bERROR: Install bosh cli failed%b\n\n" "${RED}" "${STD}" ; exit 0 fi chmod 755 /usr/local/bin/bosh # Install missing tools apk add --quiet --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing cloudfoundry-cli
The text was updated successfully, but these errors were encountered:
We may consider usage of Kpack
Sorry, something went wrong.
No branches or pull requests
Is your feature request related to a problem? Please describe.
pre-cf-push.sh
andpost-deploy.sh
hooksDescribe alternatives you've considered
Currently, CF apps such use the following workaround:
coab-depls/common-broker-scripts/pre-cf-push.sh
:coab-depls/common-broker-scripts/post-deploy.sh
:coab-depls/common-broker-scripts/setUpSmokeTestEnv.bash
The text was updated successfully, but these errors were encountered: