All Projects → manifoldco → Heighliner

manifoldco / Heighliner

Licence: bsd-3-clause
Continuous Delivery from GitHub to your Kubernetes cluster

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to Heighliner

terraform-provider-spinnaker
Terraform Provider to manage spinnaker pipelines
Stars: ✭ 36 (-87.8%)
Mutual labels:  continuous-delivery
alloy-runner
AlloyCI Runner
Stars: ✭ 16 (-94.58%)
Mutual labels:  continuous-delivery
makefile-for-monorepos
A flexible and extensible makefile for monorepos with docker/docker-compose.
Stars: ✭ 115 (-61.02%)
Mutual labels:  continuous-delivery
Gauntlet
🔖 Guides, Articles, Podcasts, Videos and Notes to Build Reliable Large-Scale Distributed Systems.
Stars: ✭ 336 (+13.9%)
Mutual labels:  continuous-delivery
pipelines-as-code
Pipelines as Code
Stars: ✭ 37 (-87.46%)
Mutual labels:  continuous-delivery
chuck demos
Store ChucK code with continuous integration of audio to SoundCloud
Stars: ✭ 13 (-95.59%)
Mutual labels:  continuous-delivery
ccv
Conventional Commits Versioner
Stars: ✭ 19 (-93.56%)
Mutual labels:  continuous-delivery
Expo Github Action
Expo CLI in your GitHub Actions workflow
Stars: ✭ 281 (-4.75%)
Mutual labels:  continuous-delivery
tc-radiate
Build radiator for TeamCity - GitHub hosted, Standalone HTML+JS
Stars: ✭ 15 (-94.92%)
Mutual labels:  continuous-delivery
Android-CICD
This repo demonstrates how to work on CI/CD for Mobile Apps 📱 using Github Actions 💊 + Firebase Distribution 🎉
Stars: ✭ 37 (-87.46%)
Mutual labels:  continuous-delivery
couchbase-index-manager
Command-line interface to manage Couchbase indexes, synchronizing them to index definitions.
Stars: ✭ 14 (-95.25%)
Mutual labels:  continuous-delivery
github-docker
⚓ Build and publish your repository as a Docker image and push it to GitHub Package Registry in one step.
Stars: ✭ 33 (-88.81%)
Mutual labels:  continuous-delivery
updatebot
a simple bot for updating dependencies in source code
Stars: ✭ 30 (-89.83%)
Mutual labels:  continuous-delivery
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 (-95.59%)
Mutual labels:  continuous-delivery
deploy-drone
Deploy Drone CI to enable continuous integration ⚡️ on your product
Stars: ✭ 88 (-70.17%)
Mutual labels:  continuous-delivery
hygieia
CapitalOne DevOps Dashboard
Stars: ✭ 3,697 (+1153.22%)
Mutual labels:  continuous-delivery
generate-changelog
generates changelog from git based on jira tickets
Stars: ✭ 18 (-93.9%)
Mutual labels:  continuous-delivery
Serverless Plugin Canary Deployments
Canary deployments for your Serverless application
Stars: ✭ 283 (-4.07%)
Mutual labels:  continuous-delivery
Tweek
Tweek - an open source feature manager
Stars: ✭ 268 (-9.15%)
Mutual labels:  continuous-delivery
growthbook
Open Source Feature Flagging and A/B Testing Platform
Stars: ✭ 2,342 (+693.9%)
Mutual labels:  continuous-delivery

Heighliner

Build Status codecov Go Report Card GoDoc

A Heighliner is truly big. Its hold will tuck all of our frigates and transports into a little corner-we'll be just one small part of the ship's manifest.

Heighliner aims to make your workflow with GitHub and Kubernetes easy. Automatically deploy previews of GitHub pull requests to your cluster and use GitHub Releases to deploy to staging and production.

Warning: this project is still under heavy development and is not recommended for production usage yet. Breaking changes might occur until v1.0.0.

Goals

Cloud Native. Instead of templating, Heighliner runs your infrastructure as software, keeping the state of your deployments always as they should be.

Connected. The cluster is aware of container registry and source code repository state. It reacts to them (creating new deploys), and reflects into them (updating GitHub PR deployment status). Preview deploys are automatically created and destroyed. Deploys can auto-update based on Semantic Versioning policies, or be manually controlled.

Complete. A Heighliner Microservice comes with DNS and TLS out of the box.

Convention and Configuration. Reasonable defaults allow you to get up and running without much effort, but can be overridded for customization.

Installation

Heighliner consists out of multiple components, we've explained these in detail in the design docs and in an introductory blog post

For a full installation process, have a look at the installation docs or our getting started guide

Usage

Configure a GitHub Repository

Ensure that you have an API token installed in your cluster. Follow our how to for further instructions.

The GitHub repository resource is used to synchronize releases and pull requests with cluster state, and update pull requests with deployment status.

apiVersion: hlnr.io/v1alpha1
kind: GitHubRepository
metadata:
  name: cool-repository
spec:
  repo: my-repository
  owner: my-account
  configSecret:
    name: my-github-secret

Configure a Versioning Policy

The versioning policy resource defines how microservices are updated based on available releases.

apiVersion: hlnr.io/v1alpha1
kind: VersioningPolicy
metadata:
  name: release-patch
spec:
  semVer:
    version: release
    level: patch

Configure an Image Policy

The image policy resource synchronizes Docker container images with cluster state. It cross references with GitHub releases, filtering out images that do not match the versioning policy.

apiVersion: hlnr.io/v1alpha1
kind: ImagePolicy
metadata:
  name: my-image-policy
spec:
  image: my-docker/my-image
  imagePullSecrets:
  - name: my-docker-secrets
  versioningPolicy:
    name: release-patch
  filter:
    github:
      name: cool-repository

Configure a Network Policy

The network policy resource handles exposing instances of versioned microservices within the cluster, or to the outside world. domain can be templated for use with preview releases (pull requests).

apiVersion: hlnr.io/v1alpha1
kind: NetworkPolicy
metadata:
  name: hlnr-www
spec:
  microservice:
    name: my-microservice
  ports:
  - name: headless
    port: 80
    targetPort: 80
  externalDNS:
  - domain: my-domain.com
    port: headless
    tlsGroup: my-cert-manager-tls-group
  updateStrategy:
    latest: {}

Configure a Microservice

The microservice resource is a template for deployments of images that match the image policy.

apiVersion: hlnr.io/v1alpha1
kind: Microservice
metadata:
  name: my-microservice
spec:
  imagePolicy:
    name: my-image-policy

Contributing

Thanks for taking the time to join the community and helping out!

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].