Difference between revisions of "Continuous Development"

From SatNOGS Wiki
(layout, categories, misc)
(category)
 
(2 intermediate revisions by the same user not shown)
Line 17: Line 17:
 
* [https://gitlab.com/librespacefoundation/ Libre Space Foundation GitLab]
 
* [https://gitlab.com/librespacefoundation/ Libre Space Foundation GitLab]
  
[[Category:Development]]
+
[[Category:Develop]]
 
[[Category:Infrastructure]]
 
[[Category:Infrastructure]]
 +
[[Category:Software]]

Latest revision as of 22:12, 19 January 2020

Introduction

The Continuous Deployment (CD) workflow for both Network and DB consists of the three steps below.

GitLab CI

We have two different jobs (stage and production) that are triggered when there is a new merge on dev or master respectively. These jobs can been seen at the .gitlab-ci.yml file on both of these repositories.

GitLab Variables

GitLab hosts some secret variables for each environment. Such as IP address, ssh keypairs, etc. GitLab CI uses that variables to remotely push the new code to the servers.

Git Hooks

On servers there is a post-update git hook that runs the deployment tasks (collectstatic, reload gunicorn, etc), on each push.

See also