Deploy swarm stacks against a SSH based remote docker daemon context
This repository has been archived on 2021-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
3wc 171b627e0a
continuous-integration/drone/push Build is passing Details
Wait for success using docker-stack-wait-deploy
2020-09-25 16:11:48 +02:00
.drone.yml Use latest tag instead 2020-09-25 12:43:41 +02:00
Dockerfile Fix bash version 2020-09-25 12:55:10 +02:00
LICENSE Bootstrapping stack deploy plugin 2020-09-23 08:32:50 +02:00
README.md Explain latest tag 2020-09-25 13:30:33 +02:00
plugin.sh Wait for success using docker-stack-wait-deploy 2020-09-25 16:11:48 +02:00

README.md

stack-ssh-deploy

Build Status

Deploy swarm stacks against a SSH based remote docker daemon context.

This is meant to be used as a Drone plugin.

Settings

With defaults

  • compose (default: compose.yml): compose file to use for deploying
  • host (default: swarm.autonomic.zone): Host to deploy to (don't include ssh://)
  • port (default: 222): SSH port to connect to
  • user (default: drone): System user to connect via SSH with

Without defaults

  • deploy_key: SSH private key part for ssh public key authentication
  • stack: Name of the stack to be deployed

Example

---
kind: pipeline
name: deploy to swarm
steps:
  - name: stack deploy
    image: decentral1se/stack-ssh-deploy:latest
    settings:
      stack: mystack
      deploy_key:
        from_secret: drone_deploy_key

Publishing

The version can be bumped in the .drone.yml file. We're sticking with latest as we iterate on the code right now.

If you push a commit to master, the Drone config will publish to Docker Hub.