Skip to content
Vincent Viallet edited this page May 15, 2014 · 5 revisions

devops lets you manage your servers through Git.

Creating a repository

Creating a repository is done through the web interface on the profile page.

Once created the repository is reachable at [email protected]:{user}/{repo} with:

  • {user}: your login user on devops
  • {repo}: the newly created repo name

Note: You need to already have your SSH public key to be able to create a repository.

Cloning a repository

No magic here!

git clone [email protected]:USER/REPO

Git folder structure

devops expect the following file structure:

./
./nodes/...
./tasks/...
./scripts/...

Respectively the nodes, tasks and scripts folders need to hold your ... nodes, tasks, scripts files.

In each of the folders are provided sample files that can be used as references to create the definitions.

Nodes

Nodes are described more in detail here.

Tasks

Tasks are described more in detail here.

Scripts

Scripts are described more in detail here.

Clone this wiki locally