Compare commits
2 Commits
c70a6ff984
...
5f16d9940a
Author | SHA1 | Date | |
---|---|---|---|
5f16d9940a | |||
77db2734d4 |
78
.drone.yaml
Normal file
78
.drone.yaml
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
---
|
||||||
|
|
||||||
|
# deployment
|
||||||
|
kind: 'pipeline'
|
||||||
|
type: 'docker'
|
||||||
|
name: 'deployment'
|
||||||
|
|
||||||
|
# disable clone
|
||||||
|
clone:
|
||||||
|
disable: true
|
||||||
|
|
||||||
|
# deployment steps
|
||||||
|
steps:
|
||||||
|
|
||||||
|
# start.simoncor.net deployment
|
||||||
|
- name: 'rp01 - start.simoncor.net'
|
||||||
|
image: 'appleboy/drone-ssh:1.6.3'
|
||||||
|
settings:
|
||||||
|
|
||||||
|
# bastion
|
||||||
|
proxy_host: 'siempie.com'
|
||||||
|
proxy_port: '22'
|
||||||
|
proxy_user:
|
||||||
|
from_secret: 'drone_user'
|
||||||
|
proxy_key:
|
||||||
|
from_secret: 'drone_ssh_key'
|
||||||
|
|
||||||
|
# rp01.siempie.local
|
||||||
|
host: 'rp01.siempie.local'
|
||||||
|
port: '22'
|
||||||
|
user:
|
||||||
|
from_secret: 'drone_user'
|
||||||
|
key:
|
||||||
|
from_secret: 'drone_ssh_key'
|
||||||
|
script:
|
||||||
|
|
||||||
|
# make sure all is clean
|
||||||
|
- 'sudo /usr/bin/git -C /var/www/start.simoncor.net reset --hard HEAD'
|
||||||
|
- 'sudo /usr/bin/git -C /var/www/start.simoncor.net clean -fX'
|
||||||
|
- 'sudo /usr/bin/git -C /var/www/start.simoncor.net clean -fd'
|
||||||
|
|
||||||
|
# fetch latest checkout
|
||||||
|
- 'sudo /usr/bin/git -C /var/www/start.simoncor.net fetch'
|
||||||
|
- "sudo /usr/bin/git -C /var/www/start.simoncor.net -c advice.detachedHead=false
|
||||||
|
checkout '${DRONE_COMMIT_SHA:0:8}'"
|
||||||
|
|
||||||
|
|
||||||
|
# start.simoncor.net deployment
|
||||||
|
- name: 'rp02 - start.simoncor.net'
|
||||||
|
image: 'appleboy/drone-ssh:1.6.3'
|
||||||
|
settings:
|
||||||
|
|
||||||
|
# bastion
|
||||||
|
proxy_host: 'siempie.com'
|
||||||
|
proxy_port: '22'
|
||||||
|
proxy_user:
|
||||||
|
from_secret: 'drone_user'
|
||||||
|
proxy_key:
|
||||||
|
from_secret: 'drone_ssh_key'
|
||||||
|
|
||||||
|
# rp02.siempie.local
|
||||||
|
host: 'rp02.siempie.local'
|
||||||
|
port: '22'
|
||||||
|
user:
|
||||||
|
from_secret: 'drone_user'
|
||||||
|
key:
|
||||||
|
from_secret: 'drone_ssh_key'
|
||||||
|
script:
|
||||||
|
|
||||||
|
# make sure all is clean
|
||||||
|
- 'sudo /usr/bin/git -C /var/www/start.simoncor.net reset --hard HEAD'
|
||||||
|
- 'sudo /usr/bin/git -C /var/www/start.simoncor.net clean -fX'
|
||||||
|
- 'sudo /usr/bin/git -C /var/www/start.simoncor.net clean -fd'
|
||||||
|
|
||||||
|
# fetch latest checkout
|
||||||
|
- 'sudo /usr/bin/git -C /var/www/start.simoncor.net fetch'
|
||||||
|
- "sudo /usr/bin/git -C /var/www/start.simoncor.net -c advice.detachedHead=false
|
||||||
|
checkout '${DRONE_COMMIT_SHA:0:8}'"
|
@ -1,6 +1,6 @@
|
|||||||
baseURL = "https://start.simoncor.net/"
|
baseURL = "https://start.simoncor.net/"
|
||||||
languageCode = "en-us"
|
languageCode = "en-us"
|
||||||
title = "Application Dashboard"
|
title = "/speed/dial"
|
||||||
theme = "slate"
|
theme = "slate"
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user