/helm-vs-operators

This repository contains the sample code associated with the talk "The automation challenge: Kubernetes Operators vs Helm Charts"

Primary LanguageJavaScriptCreative Commons Zero v1.0 UniversalCC0-1.0

Helm vs Operators

Helm setup

Helm is a packager for Kubernetes that bundles related manifest files and packages them into a single logical deployment unit: Chart. Simplified, for many engineers Helm makes it easy to start using Kubernetes with real applications. Helm Charts are useful for addressing the installation complexities and simple upgrades of particularly stateless applications like web apps. Say goodbye to the many, long, hard-coded yaml files and embrace an easier way to manage your deployed applications!

In v3, Helm is used entirely through the helm CLI. The Helm CLI is a utility usually run interactively outside of the cluster.

Users find a chart for the desired software, parameterize its resources through Helm to deploy Kubernetes artifacts and this eventually brings up said software.

Before diving into installing Helm, make sure you have installed Go, version 1.12 or higher. The bellow links describe how to install Helm on different platforms using the CLI:

Always validate your helm installation by running:

$ helm version

Congratulations! You are ready to code!

Please follow the navigation links.

Navigate to event microservice

Navigate to landmark microservice

Navigate to ticket-store microservice


Compatibility

The Java code in the repositories is compatible with Java11.


License

This code is dedicated to the public domain to the maximum extent permitted by applicable law, pursuant to CC0.