Difference between revisions of "Helm install"

From wikieduonline
Jump to navigation Jump to search
 
(17 intermediate revisions by the same user not shown)
Line 18: Line 18:
 
* [[Prometheus]]: <code>[[helm install myprometheus prometheus-community/prometheus]]</code>
 
* [[Prometheus]]: <code>[[helm install myprometheus prometheus-community/prometheus]]</code>
  
* [[Grafana]]: [[helm install grafana]]
+
* [[Grafana]]: <code>[[helm install grafana]]</code>
  
 
* [[Fluentd]]: <code>[[helm install fluentd]]</code>
 
* [[Fluentd]]: <code>[[helm install fluentd]]</code>
  
* [[Fluentbit]]: [[helm install fluent-bit]]
+
* [[Fluentbit]]: <code>[[helm install fluent-bit]]</code>
  
* [[Velero]]: [[helm install velero]]
+
* [[Velero]]: <code>[[helm install velero]]</code>
  
* [[Redis]]: [[helm install redis]]
+
* [[Redis]]: <code>[[helm install redis]]</code>
 
* [[MariaDB]]: <code>[[helm install mariadb]]</code>
 
* [[MariaDB]]: <code>[[helm install mariadb]]</code>
  
* [[MySQL]]: [[helm install mysql]]
+
* [[MySQL]]: <code>[[helm install mysql]]</code>
  
* [[Ingress Nginx]]: [[helm install nginx-ingress]]
+
* [[Ingress Nginx]]: <code>[[helm install nginx-ingress]]</code>
  
 +
* [[Mediawiki]]: <code>[[helm install mediawiki]]</code>
 +
 +
* SentinelOne: <code>[[helm install sentinelone]]</code>
 +
 +
* [[Keycloak]]: <code>[[helm install keycloak]]</code>
 +
 +
* [[helm install apache]]
 +
 +
* [[helm install argocd]]
 +
 +
* <code>[[helm install metrics-server]]</code>
 +
 +
* [[helm install kube-ops-view]]
  
  
Line 46: Line 59:
  
 
  [[helm install --name cert-manager --namespace cert-manager]] --version v1.1.0 [[jetstack]]/[[cert-manager]] --set install[[CRDs]]=true
 
  [[helm install --name cert-manager --namespace cert-manager]] --version v1.1.0 [[jetstack]]/[[cert-manager]] --set install[[CRDs]]=true
 
[[helm install kube-ops-view]]
 
  
 
  helm install sentry/sentry-kubernetes your-sentry-test -f values.yaml  --wait --namespace sentry-test --set  
 
  helm install sentry/sentry-kubernetes your-sentry-test -f values.yaml  --wait --namespace sentry-test --set  
Line 66: Line 77:
 
  [[helm install]] <RELEASE_NAME> datadog/[[synthetics-private-location]] --set-file configFile=<MY_WORKER_CONFIG_FILE_NAME>.json
 
  [[helm install]] <RELEASE_NAME> datadog/[[synthetics-private-location]] --set-file configFile=<MY_WORKER_CONFIG_FILE_NAME>.json
  
== Related commands ==
+
== Errors ==
 +
[[timed out waiting for the condition]]
 +
 
 +
== Related ==
 +
* <code>[[kubectl get events]]</code>
 
* <code>[[kubectl get services]]</code>
 
* <code>[[kubectl get services]]</code>
* [[helm status]]
+
* <code>[[helm status]]</code>
 +
* <code>[[helm ls]]</code>
 +
* <code>[[helm get manifest]]</code>
 
* <code>[[minikube addons enable]] ingress</code>
 
* <code>[[minikube addons enable]] ingress</code>
 
* <code>[[helm repo list]]</code>
 
* <code>[[helm repo list]]</code>
 
* <code>[[helm upgrade --install]]</code>
 
* <code>[[helm upgrade --install]]</code>
* <code>[[helm ls]]</code>
 
 
* <code>[[helm rollback]]</code>
 
* <code>[[helm rollback]]</code>
 
* <code>-n, --[[namespace]]</code>
 
* <code>-n, --[[namespace]]</code>
 
* <code>[[helm template]]</code>
 
* <code>[[helm template]]</code>
* <code>[[helm get manifest]]</code>
+
 
 
* <code>[[helm uninstall]]</code>
 
* <code>[[helm uninstall]]</code>
* <code>[[helm install metrics-server]]</code>
 
 
* <code>[[pending-upgrade]]</code>
 
* <code>[[pending-upgrade]]</code>
 
* <code>[[Terraform resource: helm release]]</code>
 
* <code>[[Terraform resource: helm release]]</code>
 +
* [[Terraform resource]]: <code>[[helm_release]]</code>
  
 
== See also ==
 
== See also ==

Latest revision as of 17:43, 10 April 2024

https://helm.sh/docs/helm/helm_install/

Examples[edit]


helm install kubernetes-dashboard/kubernetes-dashboard --name my-release --set=service.externalPort=8080,resources.limits.cpu=200m
helm install my-release kubernetes-dashboard/kubernetes-dashboard


helm install RELEASE_NAME prometheus-community/kube-prometheus-stack
helm install my-duplicated-name kubernetes-dashboard/kubernetes-dashboard
Error: INSTALLATION FAILED: cannot re-use a name that is still in use
helm install --name cert-manager --namespace cert-manager --version v1.1.0 jetstack/cert-manager --set installCRDs=true
helm install sentry/sentry-kubernetes your-sentry-test -f values.yaml  --wait --namespace sentry-test --set 
email.password=%smtp.pass% --set user.password=%user.pass%
Error: INSTALLATION FAILED: non-absolute URLs should be in form of repo_name/path_to_chart, got: your-sentry-test

Yourapp[edit]

helm install yourapp .

manifest example[edit]

resource "kubernetes_manifest" "test-configmap" {
 manifest = {
   "apiVersion" = "v1"
   "kind"       = "ConfigMap"
   "metadata" = {
     "name"      = "test-config"
     "namespace" = "default"
   }
   "data" = {
     "foo" = "bar"
   }
 }
}

Datadog[edit]

helm install <RELEASE_NAME> datadog/synthetics-private-location --set-file configFile=<MY_WORKER_CONFIG_FILE_NAME>.json

Errors[edit]

timed out waiting for the condition

Related[edit]

See also[edit]

Advertising: