'.drone.yml' ändern
the build failed Details

This commit is contained in:
an 2018-02-24 07:33:35 +00:00
parent 86c14ea59e
commit 580390cbcd
1 changed files with 4 additions and 4 deletions

View File

@ -2,9 +2,9 @@
prebuild:
image: golang:1.9
environment:
- FOO=$FOO
- FOO=${FOO}
commands:
- echo $FOO
- echo ${FOO}
- IMAGE=dr.dnix.de/$DRONE_REPO_NAME
- REV=$(git rev-list HEAD --count)
- BUILDDATE=$(date)
@ -49,9 +49,9 @@
- cd ~
- mkdir .ssh
- chmod 700 .ssh
- echo "$K8S_SSH_PRIVATE_KEY" >.ssh/id_rsa
- echo "${K8S_SSH_PRIVATE_KEY}" >.ssh/id_rsa
- chmod 600 .ssh/id_rsa
- echo "$K8S_SSH_PUBLIC_KEY" >.ssh/id_rsa.pub
- echo "${K8S_SSH_PUBLIC_KEY}" >.ssh/id_rsa.pub
- chmod 600 .ssh/id_rsa.pub
- ssh -oStrictHostKeyChecking=no root@master01 "kubectl set image deployment/mmflokati-flokati mmflokati-flokati=dr.dnix.de/mmflokati:$BRANCH-$REV -n northbrigade"
- ssh -oStrictHostKeyChecking=no root@master01 "kubectl set image deployment/mmflokati-armleuchter mmflokati-armleuchter=dr.dnix.de/mmflokati:$BRANCH-$REV -n northbrigade"