Difference between revisions of "Helm install"
Jump to navigation
Jump to search
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]]: [[helm install nginx-ingress]] | ||
− | + | * [[Mediawiki]]: <code>[[helm install mediwiki]]</code> | |
Revision as of 16:04, 3 January 2024
https://helm.sh/docs/helm/helm_install/
helm install --help
helm install --set
helm install --dry-run
helm install --debug
helm install --timeout
helm install --namespace
helm install --values
helm install --generate-name
helm install --create-namespace
helm install -f myvalues.yaml -f override.yaml myredis ./redis
helm upgrade --install
helm install --repo https://example.com/charts/ mynginx nginx
Examples
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 kube-ops-view
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
- Elasticsearch: helm install elasticsearch
Yourapp
helm install yourapp .
manifest example
resource "kubernetes_manifest" "test-configmap" { manifest = { "apiVersion" = "v1" "kind" = "ConfigMap" "metadata" = { "name" = "test-config" "namespace" = "default" } "data" = { "foo" = "bar" } } }
Datadog
helm install <RELEASE_NAME> datadog/synthetics-private-location --set-file configFile=<MY_WORKER_CONFIG_FILE_NAME>.json
Related commands
kubectl get services
kubectl apply
helm status
minikube addons enable ingress
helm repo list
helm upgrade --install
helm ls
helm rollback
-n, --namespace
helm template
helm get manifest
helm uninstall
helm install metrics-server
pending-upgrade
Terraform resource: helm release
See also
Advertising: