All Projects → microbean → Microbean Helm

microbean / Microbean Helm

Licence: apache-2.0
A Java API for Helm, the Kubernetes package manager.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Microbean Helm

multitenant-microservices-demo
Full Isolation in Multi-Tenant SaaS with Kubernetes + Istio
Stars: ✭ 57 (-42.42%)
Mutual labels:  helm, helm-charts, kubernetes-deployment
Charts
JFrog official Helm Charts
Stars: ✭ 148 (+49.49%)
Mutual labels:  helm-charts, helm, kubernetes-deployment
Kube Charts Mirror
kubernetes helm 国内镜像,每三天更新一次
Stars: ✭ 282 (+184.85%)
Mutual labels:  helm-charts, helm
Ingressmonitorcontroller
A Kubernetes controller to watch ingresses and create liveness alerts for your apps/microservices in UptimeRobot, StatusCake, Pingdom, etc. – [✩Star] if you're using it!
Stars: ✭ 306 (+209.09%)
Mutual labels:  helm-charts, helm
Helm Charts
Kubernetes Helm Charts for the Center for Open Science
Stars: ✭ 88 (-11.11%)
Mutual labels:  helm-charts, helm
chartcenter
The Central Helm Repository for the Community
Stars: ✭ 40 (-59.6%)
Mutual labels:  helm, helm-charts
Charts
The IBM/charts repository provides helm charts for IBM and Third Party middleware.
Stars: ✭ 254 (+156.57%)
Mutual labels:  helm-charts, helm
Cp Helm Charts
The Confluent Platform Helm charts enable you to deploy Confluent Platform services on Kubernetes for development, test, and proof of concept environments.
Stars: ✭ 539 (+444.44%)
Mutual labels:  helm-charts, helm
anchore-charts
Helm charts for Anchore tools and services
Stars: ✭ 38 (-61.62%)
Mutual labels:  helm, helm-charts
Helmsman
Helm Charts as Code
Stars: ✭ 854 (+762.63%)
Mutual labels:  helm-charts, helm
Stock Analysis Engine
Backtest 1000s of minute-by-minute trading algorithms for training AI with automated pricing data from: IEX, Tradier and FinViz. Datasets and trading performance automatically published to S3 for building AI training datasets for teaching DNNs how to trade. Runs on Kubernetes and docker-compose. >150 million trading history rows generated from +5000 algorithms. Heads up: Yahoo's Finance API was disabled on 2019-01-03 https://developer.yahoo.com/yql/
Stars: ✭ 605 (+511.11%)
Mutual labels:  helm-charts, helm
Helm Charts
Prometheus community Helm charts
Stars: ✭ 962 (+871.72%)
Mutual labels:  helm-charts, helm
k8s-ovpn-chart
[DEPRECATED] Helm chart for a private OpenVPN server
Stars: ✭ 19 (-80.81%)
Mutual labels:  helm, helm-charts
charts
My helm charts
Stars: ✭ 15 (-84.85%)
Mutual labels:  helm, helm-charts
Helm Elasticstack
Kubernetes Helm Charts and Tools to run Elastic Stack(ELK) on Azure Container Service(AKS)
Stars: ✭ 76 (-23.23%)
Mutual labels:  helm-charts, helm
helm-charts
docs.renovatebot.com/helm-charts
Stars: ✭ 51 (-48.48%)
Mutual labels:  helm, helm-charts
Go Api Boilerplate
Go Server/API boilerplate using best practices DDD CQRS ES gRPC
Stars: ✭ 373 (+276.77%)
Mutual labels:  helm-charts, helm
Video Transcode Queue
A sample video upload platform as a kubernetes cluster (WIP)
Stars: ✭ 66 (-33.33%)
Mutual labels:  helm-charts, helm
khelm
A Helm chart templating CLI, kpt function and kustomize plugin
Stars: ✭ 46 (-53.54%)
Mutual labels:  helm, helm-charts
gradle-helm-plugin
A Gradle plugin for building, publishing and managing Helm charts.
Stars: ✭ 42 (-57.58%)
Mutual labels:  helm, helm-charts

microBean Helm

Build Status Maven Central

The microBean Helm project lets you work with the server-side componentry of Helm from Java.

This means your Java applications can now manage applications in your Kubernetes cluster using the Helm notions of charts and releases.

Until now, Java developers had to use the helm command line client to do these operations.

Announcements

Project announcements may be found in the wiki. You are encouraged to take a look!

Versioning

The microBean Helm project's version number tracks the Helm and Tiller release it works with, together with its own version semantics. For example, a microBean Helm version of 2.12.3.0.0.1 means that the Helm version it tracks is 2.12.3 and the (SemVer-compatible) version of the non-generated code that is part of this project is 0.0.1.

Installation

To install microBean Helm, simply include it as a dependency in your project. If you're using Maven, the dependency stanza should look like this:

<dependency>
  <groupId>org.microbean</groupId>
  <artifactId>microbean-helm</artifactId>
  <!-- See http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.microbean%22%20AND%20a%3A%22microbean-helm%22 for available releases. -->
  <version>2.12.3.0.0.1</version>
  <type>jar</type>
</dependency>

Releases are available in Maven Central. Snapshots are available in Sonatype Snapshots.

Documentation

The microBean Helm project documentation is online.

Helm

Helm is the package manager for Kubernetes. It consists of a command line program named helm and a server-side component named Tiller. helm serves as a Tiller client.

Tiller

Tiller is the server-side component of Helm. Tiller accepts and works with Helm charts—packaged Kubernetes manifest templates together with their values. microBean Helm lets you build and work with those charts and the releases they produce from Java and send them back and forth to and from Tiller.

Tiller Installation

In a normal Helm usage scenario, Tiller is installed just-in-time by the helm command line client (via the helm init subcommand). It runs as a Pod in a Kubernetes cluster. microBean Helm features the TillerInstaller class that can do the same thing from Java.

Tiller Connectivity

Because Tiller normally runs as a Pod, communicating with it from outside the cluster is not straightforward. The helm command line client internally forwards a local port to a port on the Tiller Pod and, via this tunnel, establishes communication with the Tiller server. The microBean Helm project does the same thing but via a Java library.

Tiller Communication

Tiller is fundamentally a gRPC application. The microBean Helm project generates the Java bindings to its gRPC API, allowing applications to communicate with Tiller using Java classes.

ReleaseManager

Ideally, business logic for installing and updating releases would be entirely encapsulated within the Tiller server. Unfortunately, this is not the case. The helm command-line program investigates and processes a Helm chart's requirements.yaml file at installation time and uses it to alter what is actually dispatched to Tiller. For this reason, if you are using the microBean Helm project, you must use the non-generated ReleaseManager class to perform your Helm-related operations, since it contains a port of the business logic embedded in the helm program.

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