Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ammbra/helm-vs-operators
This repository contains the sample code associated with the talk "The automation challenge: Kubernetes Operators vs Helm Charts"
https://github.com/ammbra/helm-vs-operators
helm java11 kubernetes practices quarkus reactjs
Last synced: 4 months ago
JSON representation
This repository contains the sample code associated with the talk "The automation challenge: Kubernetes Operators vs Helm Charts"
- Host: GitHub
- URL: https://github.com/ammbra/helm-vs-operators
- Owner: ammbra
- License: cc0-1.0
- Created: 2021-02-06T19:34:38.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-02-10T18:09:31.000Z (12 months ago)
- Last Synced: 2024-09-30T13:02:32.345Z (4 months ago)
- Topics: helm, java11, kubernetes, practices, quarkus, reactjs
- Language: JavaScript
- Homepage:
- Size: 506 KB
- Stars: 8
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.adoc
- License: LICENSE
Awesome Lists containing this project
README
= Helm vs Operators
:home: https://github.com/ammbra/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:** https://docs.openshift.com/container-platform/4.4/cli_reference/helm_cli/getting-started-with-helm-on-openshift-container-platform.html#on-windows-10[On Windows 10]
** https://docs.openshift.com/container-platform/4.4/cli_reference/helm_cli/getting-started-with-helm-on-openshift-container-platform.html#on-macos[On MacOS]Always validate your helm installation by running:
[source, bash, subs="normal,attributes"]
----
$ helm version
----*Congratulations*! You are ready to code!
Please follow the navigation links.
|===
{home}/tree/main/event[Navigate to event microservice]|{home}/tree/main/landmark[Navigate to landmark microservice] | {home}/tree/main/ticket-store[Navigate to ticket-store microservice]
|==='''
=== CompatibilityThe Java code in the repositories is compatible with Java11.
'''
=== LicenseThis code is dedicated to the public domain to the maximum extent permitted by applicable law, pursuant to http://creativecommons.org/publicdomain/zero/1.0/[CC0].