Steevo Wiki

You are here: Home » kubernetes » helm

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
kubernetes:helm [2022/05/29 09:01]
admin created
kubernetes:helm [2024/01/26 17:33] (current)
Line 1: Line 1:
-====== Useful Helm commands ======+====== Helm commands ======
  
 === helm template === === helm template ===
Line 9: Line 9:
  
  
 +<code>
 helm template cortex --namespace=cortex --dependency-update -f values_custom.yaml --output-dir './yamls' './' helm template cortex --namespace=cortex --dependency-update -f values_custom.yaml --output-dir './yamls' './'
 +</code>
  
  
-helm template external-secrets external-secrets/external-secrets -n external-secrets -f values_custom.yaml --output-dir './yamls' +<code>
- +
 helm template traefik --namespace=ingress-controller -f values_custom.yaml --output-dir './yamls' './' helm template traefik --namespace=ingress-controller -f values_custom.yaml --output-dir './yamls' './'
 +</code>
  
  
 +<code>
 helm template cert-manager --namespace=cert-manager --dependency-update --output-dir './yamls' './' helm template cert-manager --namespace=cert-manager --dependency-update --output-dir './yamls' './'
 +</code>
  
  
-Helm template from repo chart+=== Helm template from repo chart ===
  
 +
 +<code>
 helm template loki --namespace=logging --dependency-update --output-dir './yamls' grafana/loki-stack helm template loki --namespace=logging --dependency-update --output-dir './yamls' grafana/loki-stack
 +</code>
  
  
-Show available values in chart+=== Show available values in chart ===
  
 +
 +<code>
 helm show values prometheus-community/kube-prometheus-stack --jsonpath {$.prometheus.prometheusSpec} | jq helm show values prometheus-community/kube-prometheus-stack --jsonpath {$.prometheus.prometheusSpec} | jq
 +</code>
  
-Search helm chart+=== Search helm chart ===
  
 +
 +<code>
 helm search repo [tag] helm search repo [tag]
 +</code>
  
-Show helm chart info+=== Show helm chart info ===
  
 +
 +<code>
 helm show chart  mtougeron/k8s-aws-ebs-tagger helm show chart  mtougeron/k8s-aws-ebs-tagger
 +</code>
  
  
-List repositories+=== List repositories ===
  
 +
 +<code>
 helm repo list helm repo list
 +</code>