dokku_test_deploy/.drone.yml
Dovi Cowan 9ca3b2daea
Some checks failed
continuous-integration/drone/push Build is failing
add volumes to share ssh between steps
2023-02-21 02:00:03 +00:00

62 lines
1.7 KiB
YAML

kind: pipeline
type: docker
name: deploy
platform:
os: linux
arch: amd64
pool:
use: ubuntu:latest
environment:
BRANCH: main
DOKKU_HOST: apps1.fnukinternal.net
DOKKU_APP_NAME: dokku-ci-deploy
DOKKU_USER: dokku
JUMP_HOST: 192.168.0.24
JUMP_USER: jumpuser
steps:
- name: configure-environment
pull: always
image: bitnami/git:2.39.2
volumes:
- name: ssh
path: ~/.ssh
environment:
SSH_PRIVATE_KEY:
from_secret: dokku_ssh_key
JUMP_PRIVATE_KEY:
from_secret: dokku_ssh_key
commands:
- mkdir -p ~/.ssh
- echo -e "Host jump\n Hostname $JUMP_HOST\n User $JUMP_USER\n IdentityFile ~/.ssh/id_rsa\n StrictHostKeyChecking no" > ~/.ssh/config
- echo -e "Host dokku\n Hostname $DOKKU_HOST\n User $DOKKU_USER\n IdentityFile ~/.ssh/id_rsa\n ProxyCommand ssh -o 'StrictHostKeyChecking no' jump nc %h %p" >> ~/.ssh/config
- chmod 400 ~/.ssh/config
- echo -e "Host *\n StrictHostKeyCheAlso note the environment section cannot expand environment variables or evaluate shell expressions. If you need to construct variables it should be done in the commands section.cking no\n UserKnownHostsFile=/dev/null" > ~/.ssh/config.jump
- echo -e "Host *\n StrictHostKeyChecking no\n UserKnownHostsFile=/dev/null" > ~/.ssh/config.dokku
- chmod 400 ~/.ssh/config.jump
- chmod 400 ~/.ssh/config.dokku
- echo "$JUMP_PRIVATE_KEY" > ~/.ssh/id_rsa
- chmod 600 ~/.ssh/id_rsa
- apt-get update && apt-get install git -y
- name: add-remote
image: bitnami/git:2.39.2
volumes:
- name: ssh
path: ~/.ssh
commands:
- git remote add dokku dokku:$DOKKU_APP_NAME
- name: push-to-dokku
image: bitnami/git:2.39.2
volumes:
- name: ssh
path: ~/.ssh
commands:
- git push dokku $BRANCH
trigger:
branch:
- main