Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Helm and ArgoCD: Like peanut butter and chocolate
Search
Red Hat Livestreaming
March 11, 2021
Technology
240
0
Share
Embed
Copy iframe code
Copy JS code
Copy link
Start on current slide
Helm and ArgoCD: Like peanut butter and chocolate
GitOps Guide to the Galaxy: Working with Helm
YouTube:
https://youtu.be/1FzOlSed5ts
Red Hat Livestreaming
March 11, 2021
More Decks by Red Hat Livestreaming
See All by Red Hat Livestreaming
What_s_New_in_OpenShift_4.21.pdf
redhatlivestreaming
2
1.8k
What's Next in OpenShift Q4 CY2025
redhatlivestreaming
1
5.9k
What's new in OpenShift 4.20
redhatlivestreaming
3
17k
Ask an OpenShift Expert - Ep 159 - Workload Availability
redhatlivestreaming
2
240
What's new in OpenShift 4.19
redhatlivestreaming
3
30k
What's Next in OpenShift Q2 CY2025
redhatlivestreaming
2
30k
What's New in OpenShift 4.18
redhatlivestreaming
2
45k
What's Next In Red Hat OpenShift (Fourth Quarter 2024)
redhatlivestreaming
3
47k
What's New in OpenShift 4.17
redhatlivestreaming
2
55k
Other Decks in Technology
See All in Technology
【GCC2026】TrueHDRIを用いたルックデブ環境とライティングテクニック
bandainamcostudios
PRO
0
210
AIコーディングの次。コードレビューと理解負荷を解消して組織の開発生産性を高める
moongift
PRO
2
2.7k
【GCC2026】大規模言語モデルを活用した内製検索サービスの社内展開や業務活用
bandainamcostudios
PRO
0
480
型落ちシンクライアント端末のPoEモジュールを自作したかった話
logica0419
0
270
Genie Codeハンズオン応用編
taka_aki
0
140
AI画像認識を活用したゲーム内決済処理検証の自動化
gree_tech
PRO
0
110
Invisible to AI? Making TYPO3 Sites Quotable by AI Search Systems
wolfgangwagner
0
240
LLM Internals: 언어 모델의 계보와 알고리즘 진화 (2023~2026)
inureyes
PRO
1
870
フィジカルAIの知識ゼロの僕でも AIを使えばここまでできた
tatsuya1970
0
130
:syncing_time:
sksat
2
330
AIに持続⼒を与える 判断の⻑期記憶設計
eiei114
1
620
AI時代のアウトプット――変わったこと、変わらないこと / Devsumi 2026 Kansai #devsumi
jnchito
0
500
Featured
See All Featured
Skip the Path - Find Your Career Trail
mkilby
1
190
Become a Pro
speakerdeck
PRO
31
6.2k
"I'm Feeling Lucky" - Building Great Search Experiences for Today's Users (#IAC19)
danielanewman
230
23k
Facilitating Awesome Meetings
lara
57
7.1k
GitHub's CSS Performance
jonrohan
1033
470k
YesSQL, Process and Tooling at Scale
rocio
174
15k
We Are The Robots
honzajavorek
0
300
Information Architects: The Missing Link in Design Systems
soysaucechin
1
1.1k
Chasing Engaging Ingredients in Design
codingconduct
0
280
Conquering PDFs: document understanding beyond plain text
inesmontani
PRO
4
3k
No one is an island. Learnings from fostering a developers community.
thoeni
21
3.8k
Bootstrapping a Software Product
garrettdimon
PRO
306
120k
Transcript
Helm and ArgoCD Like peanutbutter and chocolate. GitOps Guide to
the Galaxy 1 Christian Hernandez Cloud Platforms BU
2 Helm is a package manager for Kubernetes applications define,
install and update applications
3 a package consisting of related Kubernetes YAML files a
place where Charts can be stored, shared and distributed a specific instance of a Chart deployed on Kubernetes Chart Repository Release
4 How does Helm work? OPENSHIFT NAMESPACE Image Repository Releases
Helm Chart (templates) Values (configs) Helm CLI
Helm Templates apiVersion: build.openshift.io/v1 kind: BuildConfig . . . spec:
. . . source: type: Git git: uri: {{ .Values.build.uri }} contextDir: {{ .Values.build.contextDir }} {{- if and .Values.build.native.useDefaultDockerfile (eq .Values.build.mode “native”) }} dockerfile: |- FROM registry.redhat.com/quarkus/mandrel-20-rhel8 AS builder . . . {{- end }} strategy: {{- if eq .Values.build.mode “jvm” }} type: Source sourceStrategy: . . . apiVersion: apps/v1 kind: Deployment metadata: . . . spec: replicas: {{ .Values.deploy.replicas }} . . . template: spec: containers: - name: web image: {{ .Release.Name }}:{{ .Values.image.tag }} {{- if .Values.deploy.resources }} resources: {{- toYaml .Values.deploy.resources | nindent 12 }} {{- end }} . . .
Configuration using “Values” build: uri: https://github.com/deweya/quarkus-quickstarts contextDir: getting-started mode: jvm
deploy: resources: limits: cpu: 500m memory: 2Gi Create a values.yaml file $ helm install quarkus-app redhat-charts/quarkus --values values.yaml Install the Helm chart BuildConfig ImageStream
Helm Integration with ArgoCD • Charts can be sourced from:
◦ Git Repositories ◦ Helm Repositories • Override Chart Values ◦ Separate Values files ◦ Individual parameters • Managed via UI or CLI • Values.yaml file can only be stored if you’re hosting your own helm repo
Let’s Explore! Hacking away at it until it works. GitOps
Guide to the Galaxy 8 Keyboard time!