All Projects â†’ Orkestra-Tech â†’ Orkestra

Orkestra-Tech / Orkestra

Licence: apache-2.0
Functional DevOps with Scala and Kubernetes

Programming Languages

scala
5932 projects

Projects that are alternatives of or similar to Orkestra

Rocket
Automated software delivery as fast and easy as possible 🚀
Stars: ✭ 217 (+112.75%)
Mutual labels:  devops, ci, continuous-integration, continuous-delivery, continuous-deployment, cd
Pipelines
Build pipelines for automation, deployment, testing...
Stars: ✭ 105 (+2.94%)
Mutual labels:  ci, continuous-integration, continuous-delivery, continuous-deployment, cd
Rok8s Scripts
Opinionated scripts for managing application deployment lifecycle in Kubernetes
Stars: ✭ 248 (+143.14%)
Mutual labels:  ci, continuous-integration, continuous-delivery, continuous-deployment, cd
flagsmith-nodejs-client
Flagsmith Node JS Client. Flagsmith lets you manage features flags across web, mobile and server side applications. Get builds out faster. Control who has access to new features.
Stars: ✭ 13 (-87.25%)
Mutual labels:  continuous-integration, continuous-delivery, ci, cd, continuous-deployment
Gocd
Main repository for GoCD - Continuous Delivery server
Stars: ✭ 6,314 (+6090.2%)
Mutual labels:  ci, continuous-integration, continuous-delivery, continuous-deployment, cd
Flint
Fast and configurable filesystem (file and directory names) linter
Stars: ✭ 115 (+12.75%)
Mutual labels:  devops, ci, continuous-integration, continuous-delivery, cd
Nevergreen
🐤 A build monitor with attitude
Stars: ✭ 170 (+66.67%)
Mutual labels:  ci, continuous-integration, continuous-delivery, continuous-deployment, cd
Abstruse
Abstruse is a free and open-source CI/CD platform that tests your models and code.
Stars: ✭ 704 (+590.2%)
Mutual labels:  ci, continuous-integration, continuous-delivery, continuous-deployment, cd
Lastbackend
System for containerized apps management. From build to scaling.
Stars: ✭ 1,536 (+1405.88%)
Mutual labels:  devops, ci, continuous-integration, continuous-delivery, cd
www.go.cd
Github pages repo
Stars: ✭ 39 (-61.76%)
Mutual labels:  continuous-integration, continuous-delivery, ci, cd, continuous-deployment
Piplin
📤 An open source self-hosted continuous integration and deployment system - QQįž¤īŧš 656868
Stars: ✭ 1,044 (+923.53%)
Mutual labels:  devops, continuous-integration, continuous-delivery, continuous-deployment
Cimonitor
Displays CI statuses on a dashboard and triggers fun modules representing the status!
Stars: ✭ 34 (-66.67%)
Mutual labels:  ci, continuous-integration, continuous-deployment, cd
Cds
Enterprise-Grade Continuous Delivery & DevOps Automation Open Source Platform
Stars: ✭ 3,677 (+3504.9%)
Mutual labels:  devops, continuous-integration, continuous-delivery, continuous-deployment
Android-CICD
This repo demonstrates how to work on CI/CD for Mobile Apps 📱 using Github Actions 💊 + Firebase Distribution 🎉
Stars: ✭ 37 (-63.73%)
Mutual labels:  continuous-integration, continuous-delivery, ci, continuous-deployment
Dyn365 Ce Devops
DevOps for Dynamics 365 Customer Engagement (CE) is becoming a popular topic. The goal of this project is to help Dynamics 365 CE solution builders understand and accelerate their implementation of DevOps practices with Dynamics CE and VSTS.
Stars: ✭ 82 (-19.61%)
Mutual labels:  devops, continuous-integration, continuous-delivery, continuous-deployment
Jenkins
Jenkins automation server
Stars: ✭ 18,225 (+17767.65%)
Mutual labels:  devops, continuous-integration, continuous-delivery, continuous-deployment
Origin
Conformance test suite for OpenShift
Stars: ✭ 8,046 (+7788.24%)
Mutual labels:  devops, continuous-integration, continuous-delivery, continuous-deployment
Devops Readme.md
What to Read to Learn More About DevOps
Stars: ✭ 398 (+290.2%)
Mutual labels:  devops, continuous-integration, continuous-delivery, continuous-deployment
Gitlab Ci Pipeline Php
☕ī¸ Docker images for test PHP applications with Gitlab CI (or any other CI platform!)
Stars: ✭ 451 (+342.16%)
Mutual labels:  ci, continuous-integration, continuous-delivery, cd
Hygieia
CapitalOne DevOps Dashboard
Stars: ✭ 3,682 (+3509.8%)
Mutual labels:  devops, continuous-integration, continuous-delivery, continuous-deployment
Orkestra

Latest version Gitter

Orkestra is an Open Source Continuous Integration / Continuous Deployment server as a library running on Kubernetes.
It leverages Kubernetes concepts such as Jobs or Secrets, and configuration as code in Scala to take the most of compile time type safety and compatibility with Scala or Java libraries.

Key features:

  • Configured completely via code which can be version controlled
  • Fully scalable
  • Highly Available
  • Extendable via any Scala/Java libraries

Quick start

Requirements

Installation

project/plugins.sbt:

addSbtPlugin("tech.orkestra" % "sbt-orkestra" % "<latest version>")

build.sbt:

lazy val orkestra = orkestraProject("orkestra", file("orkestra"))
  .settings(
    libraryDependencies ++= Seq(
      "tech.orkestra" %%% "orkestra-github" % orkestraVersion, // Optional Github plugin
      "tech.orkestra" %%% "orkestra-cron" % orkestraVersion, // Optional Cron plugin
      "tech.orkestra" %% "orkestra-lock" % orkestraVersion // Optional Lock plugin
    )
  )

Simple example

Given the above installation, here is a minimal project with one job:

orkestra/src/main/scala/orkestra.scala:

import tech.orkestra._
import tech.orkestra.Dsl._
import tech.orkestra.board._
import tech.orkestra.job._
import tech.orkestra.model._

// We extend OrkestraServer to create the web server
object Orkestra extends OrkestraServer {
  // Configuring the UI
  lazy val board = deployFrontendJobBoard
  // Configuring the jobs
  lazy val jobs = Set(deployFrontendJob)
  
  // Creating the job and configuring UI related settings
  lazy val deployFrontendJobBoard = JobBoard[() => Unit](JobId("deployFrontend"), "Deploy Frontend")()
  // Creating the job from the above definition (this will be compiled to JVM)
  lazy val deployFrontendJob = Job(deployFrontendJobBoard) { implicit workDir => () =>
    println("Deploying Frontend")
  }
}

This example is described in Jobs & Boards.

See example projects

Deployment on Kubernetes with Minikube

We provide some basic Kubernetes Deployment in kubernetes-dev that you can use to deploy on a dev environment.
Assuming that you are in one of the example projects (or in your own project), here is how to deploy on Kubernetes with Minikube:

minikube start --memory 4096              # Start Minikube
eval `minikube docker-env`                # Make docker use the docker engine of Minikube
sbt orkestraJVM/Docker/publishLocal       # Publish the docker artifact
kubectl apply -f ../kubernetes-dev        # Apply the deployment to Kubernetes
kubectl proxy                             # Proxy the Kubernetes api

Visit Orkestra on http://127.0.0.1:8001/api/v1/namespaces/orkestra/services/orkestra:http/proxy.
You can troubleshoot any deployment issue with minikube dashboard.

More on how to configure the deployment in Config.

Documentation

Find all the documentation on https://orkestra.tech:

Talks and articles:

Origins of Orkestra

DriveTribe

Orkestra has been created at DriveTribe by its Scala backend team that had to do DevOps. Obsessed by functional programming they decided to apply the same paradigm to their DevOps.

Related projects

Contributing

Contributions to Orkestra are more than welcomed! See CONTRIBUTING.md for all the information and getting help.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].