• Stars
    star
    142
  • Rank 257,678 (Top 6 %)
  • Language
    Python
  • License
    MIT License
  • Created almost 10 years ago
  • Updated almost 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A Python API for configuring GoCD

Gomatic

Travis Pypi Gitter chat

This is a Python API for configuring ThoughtWorks GoCD.

What does it do?

If you wanted to configure a pipeline something like that shown in the GoCD documentation then you could run the following script:

#!/usr/bin/env python
from gomatic import *

configurator = GoCdConfigurator(HostRestClient("localhost:8153"))
pipeline = configurator \
    .ensure_pipeline_group("Group") \
    .ensure_replacement_of_pipeline("first_pipeline") \
    .set_git_url("http://git.url")
stage = pipeline.ensure_stage("a_stage")
job = stage.ensure_job("a_job")
job.add_task(ExecTask(['thing']))

configurator.save_updated_config()

How does it work?

Gomatic uses the same mechanism as editing the config XML through the GoCD web based UI. The GoCdConfigurator gets the current config XML from the GoCD server, re-writes it as a result of the methods called, then posts the re-written config XML back to the GoCD server when save_updated_config is called.

Gomatic doesn't use the RESTful Go API because that is (currently) far too limited for our needs.

Limitations

We wrote it for our purposes and find it very useful; however, the current version has limitations (e.g. only really supports "Custom Command" task type) and allows you to try to configure GoCD incorrectly (which GoCD will refuse to allow). We will continue to work on it and will address its current limitations.

We believe it works for the following versions (as indicated by integration_test.py):

  • 16.7.0-3819
  • 16.8.0-3929
  • 16.9.0-4001
  • 16.10.0-413
  • 16.11.0-418
  • 16.12.0-435
  • 17.1.0-4511
  • 17.2.0-4587
  • 17.3.0-4704
  • 17.4.0-4892
  • 17.5.0-5095
  • 17.6.0-5142
  • 17.7.0-5147
  • 17.8.0-5277
  • 17.9.0-5368
  • 17.10.0-5380
  • 17.11.0-5520
  • 17.12.0-5626
  • 18.1.0-5937
  • 18.2.0-6228
  • 18.3.0-6540
  • 18.4.0-6640
  • 18.5.0-6679
  • 18.6.0-9515
  • 18.7.0-9515
  • 18.8.0-7433
  • 18.9.0-7478
  • 18.10.0-7703
  • 18.11.0-8024
  • 18.12.0-8222
  • 19.1.0-8469
  • 19.2.0-8641
  • 19.3.0-8959
  • 19.4.0-9155
  • 19.5.0-9272
  • 19.6.0-9515

We don't support the below versions anymore, however we did at some point in time, so it might still work in newer versions:

  • 13.1.1-16714
  • 13.2.2-17585
  • 13.3.1-18130
  • 13.4.0-18334
  • 13.4.1-18342
  • 14.1.0-18882
  • 14.2.0-377
  • 14.3.0-1186
  • 14.4.0-1356
  • 15.1.0-1863
  • 15.2.0-2248
  • 16.1.0-2855
  • 16.2.1-3027
  • 16.3.0-3183 [unsupported from 0.6.8 onwards]
  • 16.4.0-3223 [unsupported from 0.6.8 onwards]
  • 16.5.0-3305 [unsupported from 0.6.8 onwards]
  • 16.6.0-3590 [unsupported from 0.6.8 onwards]

Install

We've written it using Python 2.7 but have been working on supporting python 3.5 and use tox to ensure that all unit tests are passing for both 2.7 and 3.5. You can install gomatic it using "pip":

sudo pip install gomatic

which will install the gomatic package.

Usage

We won't document all of the options. Most of the behaviour is covered by unit tests, so look at them.

Dry run

You can see what effect Gomatic will have on the config XML by using configurator.save_updated_config(save_config_locally=True, dry_run=True). If you have kdiff3 installed, Gomatic will open it showing the diff (if there is a difference) between the config XML before and after the changes made by the GoCdConfigurator. If you don't have kdiff3 installed, use a diff tool of your choice to diff the files config-before.xml vs config-after.xml.

Reverse engineering of existing pipeline

If you have already set up a pipeline through the UI and now want to retrospectively write a script to do the equivalent, you can get Gomatic to show you the script to create an existing pipeline:

python -m gomatic.go_cd_configurator -s <GoCD server hostname> -p <pipeline name>

This mechanism can also be useful if you can't work out how to script something; you just make the change you want through the GoCD web based UI and then reverse engineer to see how to do it using Gomatic. Bear in mind that Gomatic does not currently support every configuration option available in GoCD, so it might not be possible to do everything you want to do.

Gotchas

  • Gomatic does not prevent you from creating config XML that GoCD will not accept. For example, if you create a stage that has no jobs, Gomatic won't complain until you try to run save_updated_config, at which time the GoCD server will reject the config XML.
  • Gomatic does not check that the version of GoCD it is configuring supports all the features used. For example, versions of GoCD before 15.2 do not support encrypted environment variables on stages and jobs.

Developing Gomatic

You need to install Python's virtualenv tool and create a virtual environment (once):

pip install virtualenv

Then, to create the virtual environment, either:

  • install autoenv and cd into the root directory of Gomatic

Or:

  • execute .env in the root directory of Gomatic and then execute source venv/bin/activate

Then, if you are using IntelliJ IDEA:

  1. File -> Project Structure -> Project SDK
  2. New -> Python SDK -> Add local
  3. select .../gomatic/venv/bin/python

Run the tests

Unit tests:

  1. pip install -r requirements.txt
  2. ./build.sh

Integration tests (takes a long time to download many versions of GoCD) (requires docker to be installed in order to run):

  1. python -m unittest tests.integration_test

Contributing to Gomatic via pull request

To have the best chance of your pull request being merged, please:

  1. Include tests for any new functionality
  2. Separate out different changes into different pull requests
  3. Don't delete any existing tests unless absolutely necessary
  4. Don't change too much in one pull request

CI and releasing packages to pypi

Gomatic uses travis-ci to run the unit tests and deploy to pypi. Only tagged commits are deployed to pypi.

  1. update value of version in setup.py
  2. git tag -a v<version> -m 'version <version>' (e.g. git tag -a v0.3.10 -m 'version 0.3.10')
  3. git push origin --tags

Alternatively, run:

  1. bumpversion [major|minor|patch]
  2. git push origin --tags

More Repositories

1

ansible-gocd

Ansible playbook to install ThoughtWorks open-source continuous delivery tool, Go. Also available on Ansible Galaxy https://galaxy.ansible.com/list#/roles/1690
Shell
70
star
2

gocd-build-status-notifier

GoCD build status notifier plugin
Java
48
star
3

script-executor-task

Go task plugin to run Shell scripts
Java
33
star
4

docker-elastic-agents-plugin

Docker-based elastic agents for GoCD
Java
31
star
5

gocd-golang-agent

GoLang agent for GoCD
Go
29
star
6

gocd-oauth-login

GoCD OAuth Login
Java
24
star
7

docker-swarm-elastic-agent-plugin

Docker swarm based elastic agents for GoCD
Java
17
star
8

email-notifier

GoCD plugin to send Email notifications.
Java
14
star
9

gocd-cli

Go
13
star
10

google-oauth-authorization-plugin

The plugin allows user to login in GoCD using google account
Java
13
star
11

github-oauth-authorization-plugin

Java
13
star
12

gocd-groovy-dsl-config-plugin

Plugin to declare GoCD pipelines and environments configuration using a Groovy DSL
Java
11
star
13

gitlab-oauth-authorization-plugin

The plugin allows user to login in GoCD using GitLab(or GitLab Enterprise). It also supports authorization, which can be used by server admin to map GoCD roles with GitLab projects or groups with access level.
Java
10
star
14

elastic-agent-skeleton-plugin

A skeleton starting point for users wanting to implement elastic agent plugins for GoCD
Java
10
star
15

deb-repo-poller

GoCD plugin to poll debain repository
Java
8
star
16

getting-started-repo

A repository for use with the "Getting Started" documentation.
Batchfile
8
star
17

go-nuget-poller-plugin-2.0

Nuget poller plugin for GoCD
Java
7
star
18

openstack-elastic-agent

Elastic Agent plugin for Openstack
Java
7
star
19

notification-skeleton-plugin

A skeleton starting point for users wanting to implement notification plugins for GoCD
Java
6
star
20

gocd-trial-launcher

Universal launcher to make a better GoCD trial experience
Go
6
star
21

gocd-guest-login-plugin

An authentication plugin for GoCD (https://www.gocd.org), which allows a guest user to login, without providing a username or password
Java
6
star
22

gocd-oss-cookbooks

GoCD agent images used for building GoCD
Shell
5
star
23

gocd-golang-bootstrapper

Go
3
star
24

gitter-notifier

GoCD Gitter build status notifier plugin
Java
3
star
25

gocd-okta-oauth-authorization-plugin

The plugin allows user to login in GoCD using their Okta account
Java
3
star
26

helm-deploy-script

Deployment scripts for deployments to Kubernetes with Helm
Shell
2
star
27

gocd_auth_plugin_guest_user

An authentication plugin for GoCD (https://www.go.cd), which allows a guest user to login, without providing a username or password
2
star
28

deb-repo-query

repoquery kind of tool for debian package repositories
Java
2
star
29

authorization-skeleton-plugin

Java
2
star
30

gitter-activity-feed-plugin

GoCD Plugin for send activity feed to gitter
Java
1
star
31

gocd-plugin-base

Helper utility to write gocd plugins
Java
1
star
32

secrets-skeleton-plugin

This is merely a skeleton plugin that plugin developers can fork to get quickly started with writing secrets plugins for GoCD.
Java
1
star
33

package-material-skeleton-plugin

Package material plugin skeleton for GoCD
Java
1
star
34

xunit-converter-task

GoCD plugin to convert test reports to XUnit format
Java
1
star
35

task-skeleton-plugin

Skeleton for a task plugin
Java
1
star
36

openstack-elastic-agent-tools

Files that can be used to create openstack image to configure and speed up job that use elastic agent
Python
1
star