<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-GB">
	<id>https://halfface.se/wiki/index.php?action=history&amp;feed=atom&amp;title=Helm</id>
	<title>Helm - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://halfface.se/wiki/index.php?action=history&amp;feed=atom&amp;title=Helm"/>
	<link rel="alternate" type="text/html" href="https://halfface.se/wiki/index.php?title=Helm&amp;action=history"/>
	<updated>2026-04-19T08:57:17Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.43.1</generator>
	<entry>
		<id>https://halfface.se/wiki/index.php?title=Helm&amp;diff=16324&amp;oldid=prev</id>
		<title>Ekaanbj: /* Get all info about helm chart */</title>
		<link rel="alternate" type="text/html" href="https://halfface.se/wiki/index.php?title=Helm&amp;diff=16324&amp;oldid=prev"/>
		<updated>2025-09-30T07:32:24Z</updated>

		<summary type="html">&lt;p&gt;&lt;span class=&quot;autocomment&quot;&gt;Get all info about helm chart&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;=helm=&lt;br /&gt;
Install helm cli&lt;br /&gt;
 sudo curl -vL https://mirror.openshift.com/pub/openshift-v4/x86_64/clients/helm/latest/helm-linux-amd64 -o /usr/local/bin/helm ; sudo chmod 755 /usr/local/bin/helm&lt;br /&gt;
Autocompletion&lt;br /&gt;
 . &amp;lt;(helm completion bash)&lt;br /&gt;
List all helm charts in all namespaces&lt;br /&gt;
 helm list -aA&lt;br /&gt;
Status&lt;br /&gt;
 helm status -n openshift-marketplace cecp-infra-operatorhub -o yaml&lt;br /&gt;
==remove/uninstall/delete==&lt;br /&gt;
 helm uninstall &amp;lt;release&amp;gt; -n &amp;lt;namespace&amp;gt;&lt;br /&gt;
==install helm chart==&lt;br /&gt;
 helm upgrade --install akhq akhq/akhq&lt;br /&gt;
Install specific version&lt;br /&gt;
 helm install strimzi-kafka-operator strimzi/strimzi-kafka-operator --namespace kafka --create-namespace --version 0.34.0&lt;br /&gt;
Upgrade specific version&lt;br /&gt;
 helm upgrade strimzi-kafka-operator strimzi/strimzi-kafka-operator --version 0.41.0&lt;br /&gt;
 helm upgrade metrics-server metrics-server/metrics-server --version 3.11.0 --namespace kube-system&lt;br /&gt;
&lt;br /&gt;
==Which versions exist==&lt;br /&gt;
 helm search repo metrics-server/metrics-server --versions&lt;br /&gt;
&lt;br /&gt;
==repo==&lt;br /&gt;
Add repo&lt;br /&gt;
 helm repo add akhq https://akhq.io/&lt;br /&gt;
List repos&lt;br /&gt;
 helm repo list&lt;br /&gt;
Update repo&lt;br /&gt;
 helm repo update&lt;br /&gt;
Which versions of helm chart exists.&lt;br /&gt;
 helm search repo strimzi-kafka-operator --versions&lt;br /&gt;
&lt;br /&gt;
=read helm secrets=&lt;br /&gt;
 kubectl get secret sh.helm.release.v1.strimzi.v4 -o json | jq -r &amp;#039;.data.release| @base64d &amp;#039; | base64 -d | zcat | sed &amp;#039;s/\\n/\n/g&amp;#039;&lt;br /&gt;
 kubectl get secret sh.helm.release.v1.strimzi.v4 -o go-template=&amp;#039;{{.data.release | base64decode | base64decode}}&amp;#039; | gzip -d | jq .&lt;br /&gt;
=look at history of helm chart=&lt;br /&gt;
 helm history strimzi-kafka-operator&lt;br /&gt;
=helm rollback(Take number from helm history...)=&lt;br /&gt;
 helm rollback -n kafka strimzi-kafka-operator 3&lt;br /&gt;
=Get info about release=&lt;br /&gt;
notes, hooks, supplied values, and generated manifest file of the given release.&lt;br /&gt;
 helm get all kube-prometheus-stack -n monitoring&lt;/div&gt;</summary>
		<author><name>Ekaanbj</name></author>
	</entry>
</feed>