• Stars
    star
    4,440
  • Rank 9,174 (Top 0.2 %)
  • Language
    Go
  • License
    BSD 3-Clause "New...
  • Created over 7 years ago
  • Updated 6 days ago

Reviews

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

Repository Details

Enterprise-Grade Continuous Delivery & DevOps Automation Open Source Platform

CDS: Continuous Delivery Service

Go Report Card GoDoc

CDS is an Enterprise-Grade Continuous Delivery & DevOps Automation Platform written in Go(lang).

This project is under active development

Documentation

Intuitive UI

CDS provides an intuitive UI that allows you to build complex workflows, run them and dig into the logs when needed.

create and run workflow with CDS ui Create and run workflow with CDS ui.

The most powerful Command Line for a CI/CD Platform

cdsctl is the CDS Command Line - you can script everything with it, cdsctl also provides some cool commands such as cdsctl shell to browse your projects and workflows without the need to open a browser.

See all cdsctl commands

create workflow as code with CDS command line Create workflow as code with CDS command line.

Want a try?

Docker-Compose is your friend, see Ready To Run Tutorials

Blog posts and talks

FAQ

Why CDS? Discover the Origins

What is a CDS workflow?

Most of the CI/CD Tools play with jobs inside a pipeline. CDS introduces a new concept named CDS Workflows. A CDS Workflow allows you to chain pipelines with triggers. A pipeline is structured in sequential stages containing one or multiple concurrent jobs.

Can I use it in production?

Yes! CDS is used in production since 2015 @OVH and it launches more than 7M CDS workers per year. You can install the official release available on https://github.com/ovh/cds/releases

CDS provides everything needed to monitor and measure production activity (logs, metrics, monitoring)

How to backup?

All data are stored in the database - nothing on the filesystem. Just backup your database regularly and you will be safe.

Need some help?

Core Team is available on GitHub

CDS User features

Pipeline

Ability to run multiple jobs simultaneously while keeping an isolation between them. See doc about stages & jobs inside a pipeline. A pipeline is started with a context: 0 or 1 application, 0 or 1 environment.

Workflow

A Workflow makes it possible to chain the pipelines. This is a key feature of CDS. You can create workflows using one or more pipelines, pipelines that can be linked together with joins or forks.

You can imagine having only one workflow builder and deploying your entire microservice stack. The same pipeline can be used several times in a workflow, you can associate an application or an environment. You will only have one deployment pipeline and one build pipeline to maintain, even if you have hundreds of applications.

Workflow templates

A workflow template allows you to share and reuse workflows across multiple teams. Any user can create a Workflow Template, maintain it as code or from UI, and bulk update a set of workflows with a single action.

As a company, you can offer a predefined catalog of Workflows allowing you to standardize test and deployment practices across all your teams.

This also reduces the maintenance efforts since templates allow a scalable centralized management.

Visual configuration with Web UI

You can configure everything with the web UI. Even if you have complex use cases, it's usually easier to create your workflows graphically.

Configuration on Git Repository

Pipeline as code is a well-known concept of CI / CD tools. CDS goes a step further and offers workflow as code. This is done by git-pushing using yaml configuration files of your workflow (+ pipeline, + applications, + environment). This is particularly useful as you can test your new workflow on a dev branch, before merging the changes on the master branch.

Configuration as code on UI

You can modify your workflow with the UI, you can also modify the configuration by editing the yaml file directly in the UI if you wish. This is an excellent way to learn how to use the workflow-as-code feature.

Native Git branching

Ability to launch builds based on a branch pattern. This allows, for example, to deploy dev/* branches to "staging" and deploy the master branch to "prod".

Note that CDS's default behavior is to launch the whole workflow on every git commit. This behavior can be altered using "run conditions".

Native GitHub / Bitbucket Server / GitLab / Gerrit integration

2-way integration with most popular git-based products.

  1. Ability to get notified and start a build when a change is pushed.
  2. Ability to notify the git-based tool of the success/failure of the build.

CDS natively supports GitHub, GitLab, Bitbucket Server, and Gerrit. The link between your git repo and CDS is via a CDS application: 1 Git repository == a CDS application. Through this integration, CDS will push the build status of your commits : Building, Success, or Failed.

Multiple VCS Support in Pipeline/Job

CDS gives you the possibility to clone from different git repositories within a single workflow. A CDS workflow can involve several different applications - or none if you do not want to have a connection with a git repo.

Job's Services

Ability to start ephemeral services (a database, a web server, etc.) to support your job. This is particularly handy while testing your code.

In CDS these services are called Service Prerequisites. You just need to specify the corresponding docker image and run params.

Take a simple example: you have a pipeline that builds a docker image containing your application. Your application needs a redis and a PostgreSQL to work. You can, in a CDS job, put three prerequisite services: a redis, a PostgreSQL, and your application. CDS will take care of making a private network between its services so that they can communicate with each other. Your CDS job can thus perform integration tests on your application starting with a real database and a real cache.

Please read: https://ovh.github.io/cds/docs/concepts/requirement/requirement_service/

Secure Remote Caching

A remote cache is used by a team of developers and/or a continuous integration (CI) system to share build outputs. If your build is reproducible, the outputs from one machine can be safely reused on another machine, which can make builds significantly faster

Doc: https://ovh.github.io/cds/docs/components/worker/cache/

Enterprise Notification Bus

As an Enterprise-Grade platform, CDS can send a wide range of its internal events (e.g. build finished) in an event bus. This event flow can then feed other services (reporting, notifications, etc., ).

Built-in Hooks

Ability to launch a workflow manually or with git pushes or via a scheduler or via a webhook. In addition to the above, CDS can also be triggered using an event bus (kafka or RabbitMQ).

Continuous Deployment & Environment Support

Ability to manage multiple environments (e.g. dev/prod/staging) in a secure way with segregated access rights. In practice, an environment is a set of variables that you can use within your workflows.

With CDS, You can use a deployment pipeline on your preproduction environment and use that same deployment pipeline on your production environment. The ability to deploy to production can be limited to a pre-established group of users.

Enterprise-grade permissions / Support of ACLs delegation

Users are free to create groups and manage users in their groups. A group can have the right to read, write and execute their projects and their workflows. You can also restrict the execution of some pipelines to some groups if you wish.

Build Artifacts Cloud

If you use CDS as a CI / CD tool, you will probably have built artifacts. CDS jobs are isolated from each other, but you can pass artifacts from one job to another using the Artifact Upload and Artifact Download actions. At the end of a CDS job, all the files are deleted from the workers. To persist artifacts, CDS can use a Swift Storage or a given filesystem (not recommended though).

Tests & Vulnerabilities Reports

CDS clearly displays the results of unit tests and vulnerabilities detected during builds.

Self-Service Project Creation

A CDS project is like a tenant. All users can create a CDS project, this project will bring together applications, environments, pipelines and of course workflows.

CDS projects are isolated from one another, but the same group may have access rights to multiple projects if you wish.

Execution Environment Customization

A worker model is a worker execution context. Let's say, you need to run a job that requires GoLang v1.11.5. In CDS, you just need to create a Go worker model, containing a go in version 1.11.5. A worker model can be a docker image, an OpenStack image or a VSphere image. Although CDS administrators can offer shared worker models, users can create their own template workers if they wish.

Self-Service User’s Integrations

On a CDS project, you can add integrations like OpenStack, Kubernetes, etc ... This will offer you features within your workflows. For example, with the Kubernetes integration, you can add your own cluster to your CDS project and thus be able to use the Deploy Application action to deploy your newly built application on your cluster, in helm format if you wish. You can of course develop your own integrations.

Multi-Tenancy

After reading the previous points, you've understood: self-service is everywhere. All users can create their project/workflow/ worker models/workflow templates/actions... And run Jobs in a totally isolated environment. CDS projects are builders, on which you can add integrations. All this allows you to have only one instance of CDS for your entire company.

Command Line Interface (cdsctl): 100% of features supported

All you can do with the UI is available via the Command-Line Interface (CLI), named "cdsctl". cdsctl is available on all the OS: Darwin, FreeBSD, Linux, OpenBSD... cdsctl will allow you to create, launch, export, import your workflows, monitor your CDS and navigate through your projects and workflows. No need to go to the UI of CDS or your repository manager to check the status of your commit, git push && cdsctl workflow --track will display your workflow in your command line.

REST API & SDK

Do you have even more advanced automation needs, or the desire to develop an application that queries CDS? The REST API and the SDK will allow you to easily develop your software.

CDS Administration features

Self-Hosting

CDS has been open-source since October 2016. You can install it freely in your company or at home. Some tutorials are available to help you start a CDS, docker-compose, Install with binaries.

High Availability / Scalability / Upgrade without User Downtime

High availability is a very important point for a CI / CD tool. CDS is stateless, nothing is stored on the filesystem. This makes it possible to launch several CDS APIs behind a load balancer. Thus, you can scale the API of CDS to your needs. It also allows upgrades of CDS in a full day without impact on users. In production @OVH, CDS can be updated several times a day, without impacting users or stopping CDS workers. Asking your users to stop working while updating the Continuous Delivery tool would be ironic, isn't it? ;-)

Built-in Metrics

CDS natively exposes monitoring data. You will be able to feed your instance prometheus or warp10 using beamium.

Extensibility Plugins

A CDS job consists of steps. Each step is a built-in type action (script, checkoutApplication, Artifact upload/download...). You can create your actions, using existing actions - or develop your action as a plugin. All languages are supported, as long as the language supports GRPC.

OS/Arch Compatibility

CDS is agnostic to languages and platforms. Users can launch Jobs on Linux, Windows, FreeBSD, OS X, Raspberry ... in a Virtual Machine spawn on demand, in a docker container, on a dedicated host.

So, if your company uses multiple technologies, CDS will not be a blocker for building and deploying your internal software.

Auto-Scale OnDemand multi-cloud

One of the initial objectives of CDS at OVH: build and deploy 150 applications as a container in less than 7 minutes. This has become a reality since 2015. What is the secret key? Auto-Scale on Demand!

Thus, you can have hundreds of worker models and when necessary, CDS will start the workers using the hatcheries.

A hatchery is like an incubator, it gives birth to the CDS Workers and the right to life and death over them.

Several types of hatchery are available:

So yes, buzzwords or not, a multi-cloud Auto-scale OnDemand is a reality with CDS :-)

License

3-clause BSD

More Repositories

1

the-bastion

Authentication, authorization, traceability and auditability for SSH accesses.
Perl
1,385
star
2

utask

µTask is an automation engine that models and executes business processes declared in yaml. ✏️📋
Go
1,053
star
3

venom

🐍 Manage and run your integration tests with efficiency - Venom run executors (script, HTTP Request, web, imap, etc... ) and assertions
Go
974
star
4

debian-cis

PCI-DSS compliant Debian 10/11/12 hardening
Shell
609
star
5

celery-director

Simple and rapid framework to build workflows with Celery
Python
512
star
6

svfs

The Swift Virtual File System
Go
373
star
7

php-ovh

Lightweight PHP wrapper for OVH APIs. That's the easiest way to use OVH.com APIs in your PHP applications.
PHP
287
star
8

python-ovh

Thin wrapper around OVH's APIs. Handles all the hard work including credential creation and requests signing.
Python
266
star
9

docs

Official repository containing all docs & guides of OVH Group
HTML
213
star
10

manager

OVHcloud Control Panel
JavaScript
203
star
11

overthebox

OverTheBox - Aggregate and encrypt your multiple internet connections.
Shell
193
star
12

public-cloud-roadmap

Agile roadmap for OVHcloud Public Cloud services. Discover the features our product teams are working on, comment and influence our backlog.
183
star
13

terraform-provider-ovh

Terraform OVH provider
Go
178
star
14

metronome

Metronome is a distributed and fault-tolerant event scheduler
Go
135
star
15

node-ovh

Node.js wrapper for the OVH APIs
JavaScript
125
star
16

go-ovh

Simple go wrapper for the OVH API
Go
124
star
17

ai-training-examples

Jupyter Notebook
121
star
18

symmecrypt

Golang symmetric encryption library
Go
106
star
19

overthebox-feeds

OverTheBox - LEDE/OpenWrt feed
HTML
106
star
20

ovh-ttyrec

Enhanced (but compatible) version of the classic ttyrec
C
105
star
21

overthebox-openwrt

OverTheBox - OpenWrt fork
C
98
star
22

sv2chisel

(System)Verilog to Chisel translator
Scala
97
star
23

celery-dyrygent

Celery extension which allows to orchestrate 100/1000/10000 tasks combined into a complex workflow
Python
93
star
24

tat

Tat Engine - Text And Tags
Go
89
star
25

beamium

Prometheus to Warp10 metrics forwarder
Rust
84
star
26

ip-reputation-monitoring

Monitor the reputation of your IP ranges
Python
82
star
27

depc

QoS Measurement & Dependency Graph Platform
Python
80
star
28

configstore

Golang configuration management library
Go
62
star
29

erlenmeyer

Erlenmeyer is a proxy used to parse common Open Source TimeSeries DataBase query endpoints like OpenTSDB, Prometheus/PromQL, InfluxQL or Graphite. Parsed queries are translated into WarpScript to produce native Warp 10 queries.
Go
60
star
30

tsl

TSL is a HTTP proxy which generate WarpScript or a PromQl script based on a TSL query.
Go
56
star
31

noderig

Export OS stats as Sensision Metrics
Go
55
star
32

ovh-ui-kit

OVHcloud UI Kit - Master UI Framework
JavaScript
53
star
33

terraform-ovh-commons

This repo contains commons resources to interact with OVH Public Cloud using Terraform.
HTML
53
star
34

php-ovh-sms

PHP for ovh sms API
PHP
49
star
35

ovh-cli

OVH Command Line Interface
Python
41
star
36

infrastructure-roadmap

34
star
37

summit2016-RankingPredict

Deprecated, No more maintained - Deprecated, no longer maintained
R
34
star
38

ovh-warp10-datasource

Grafana datasource for Warp10 platform
TypeScript
32
star
39

the-bastion-ansible-wrapper

Using Ansible through The Bastion
Python
30
star
40

csharp-ovh

Thin wrapper around OVH's APIs. Handles all the hard work including credential creation and requests signing
C#
27
star
41

order-cart-examples

Example code snippets demonstrating how to use new order with cart on api.ovh.com
PHP
25
star
42

ldp-tail

OVH Logs Data Platform - Tail CLI tooling
Go
24
star
43

haproxy-exporter

Export HAProxy stats as Sensision Metrics
Go
21
star
44

fossil

Fossil is a proxy for securing unencrypted Graphite metrics collection
Go
20
star
45

java-ovh

Thin wrapper around OVH's APIs. Handles all the hard work including credential creation and requests signing
Java
19
star
46

tatwebui

Tat Web UI - Text And Tags
JavaScript
19
star
47

terraform-ovh-publiccloud-network

HCL
19
star
48

python-apispec-fromfile

APISpec plugin to import OpenAPI specifications from a file
Python
18
star
49

design-system

A collection of assets, guidelines and UI components for building consistent user experiences across OVHcloud products.
TypeScript
18
star
50

public-cloud-examples

Jupyter Notebook
18
star
51

cerberus-ux

HTML
15
star
52

lxd-puppet-module

Ruby
14
star
53

website-evidence-collector-batch

A tool to launch website-evidence-collector on several URLs or Sitemaps and generate a full report.
JavaScript
14
star
54

osarchiver

OpenStack databases archiver
Python
14
star
55

jerem

Jerem is a golang bot that scrap JIRA project to extract Metrics. Those Metrics can then be send to a Warp 10 Backend.
Go
14
star
56

cerberus-core

Cerberus is a toolkit to receive, parse, process and automate abuse reports handling received by ISP or hosting providers.
Python
14
star
57

ovh-ui-kit-bs

A bootstrap theme for the OVH managers, based on ovh-ui-kit
Less
13
star
58

prescience-client

Desktop python client for using OVH Prescience service
Jupyter Notebook
13
star
59

gulp-drupal-stack

OVH Gulp tasks for Drupal themes and modules
JavaScript
12
star
60

public-cloud-databases-examples

OVHcloud Public Cloud Databases Training examples
HCL
12
star
61

distronaut

Find distribution installers all across the web !
Go
12
star
62

serving-runtime

Exposes a serialized machine learning model through a HTTP API.
Java
12
star
63

metronome-ui

User interface for Metronome
JavaScript
11
star
64

private-cloud-roadmap

11
star
65

swift-ovh

This Swift package is a lightweight wrapper for OVH APIs. That's the easiest way to use OVH.com APIs in your Swift applications. Apple platforms supported: iOS, OSX, tvOS, watchOS.
Swift
11
star
66

rtm

RTM (OVH Real Time Monitoring)
Perl
11
star
67

telephony-example-cti-dashboard

Shows signaling events provided by OVH France telephony services CTI
CSS
11
star
68

drucker

Drucker is a lightweight Drupal Developer Environment.
Shell
10
star
69

phishing-mitigation

Tilera-based phishing mitigation layer
JavaScript
10
star
70

lhasa

List and map micro-services-based information system and observe how they interact. Track their activities, then gamify their continuous improvement.
Go
10
star
71

overthebox-lede

OverTheBox - LEDE fork
C
8
star
72

python-logging-gelf

A python logging bundle to send logs using GELF
Python
8
star
73

webpaas-cli

PHP
7
star
74

owstats-ui

JavaScript
7
star
75

vbridge

X11 cloud desktop software
C
7
star
76

djehouty

Djehouty intends to be a set of logging formatters and handlers to easily send log entries.
Python
7
star
77

crystal-ovh

Lightweight Crystal wrapper around OVH's APIs.
Crystal
7
star
78

ovhdata-cli

Rust
7
star
79

pulumi-ovh

Pulumi provider for OVHcloud
Python
7
star
80

python-warp10client

Python
7
star
81

data-processing-spark-submit

Spark CLI wrapper to run your jobs on OVHcloud Data Processing
Go
7
star
82

interpretability-engine

Interpret Machine Learning black-box models deployed on Serving Engine
Python
6
star
83

terraform-provider-mimirtool

Terraform provider for Grafana Mimir
Go
6
star
84

webhosting-ssh-bashrc

Shell
6
star
85

tat-contrib

Go
6
star
86

puppet-thebastion

Puppet module for Thebastion management.
Ruby
6
star
87

public-cloud-databases-operator

This operator allow you to automaticaly authorize your Kubernetes cluster IP on your OVHcloud cloud databases service.
Go
6
star
88

docs-developer-env

Easy to deploy developer environment, for writing/testing guides & documentations for docs.ovh.com
Shell
6
star
89

terraform-ovh-publiccloud-docker-swarm

HCL
5
star
90

terraform-ovh-publiccloud-spark

HCL
5
star
91

summit2016-webhosting-example-rondcoin

PHP
5
star
92

collectd-write-warp10

Python
5
star
93

docs-rendering

[DEPRECATED] Official rendering engine for static generation of OVH Docs platform
HTML
5
star
94

fiowebviewer

Python
5
star
95

yubico-piv-checker

Go
4
star
96

puppet-mimir

Ruby
4
star
97

pingdom-to-graphite

A tool for copying metrics from Pingdom to Graphite.
JavaScript
4
star
98

ovh-winston-ldp

A graylog2 TCP/TLS transport for winston library
JavaScript
4
star
99

bringyourownlinux

Shell
4
star
100

.github

Community health files for the @ovh organization
3
star