Helm Charts

Defining your extensions as Helm charts is one of two methods you can use to run k0s with your preferred extensions (the other being through the use of Manifest Deployer).

k0s supports two methods for deploying applications using Helm charts:

  • Use Helm command in runtime to install applications. Refer to the Helm Quickstart Guide for more information.
  • Insert Helm charts directly into the k0s configuration file, k0s.yaml. This method does not require a separate install of helm tool and the charts automatically deploy at the k0s bootstrap phase.

Helm charts in k0s configuration

Adding Helm charts into the k0s configuration file gives you a declarative way in which to configure the cluster. k0s controller manages the setup of Helm charts that are defined as extensions in the k0s configuration file.

Wait for install

Each chart is proccesed the same way CLI tool does with following options:

  • --wait
  • --wait-for-jobs
  • --timeout 10m

It is possible to customize timeout by using .Timeout field.

Chart configuration

FieldDefault valueDescription
name-Release name
chartname-chartname in form “repository/chartname” or path to tgz file
version-version to install
timeout10mtimeout to wait for release install
values-yaml as a string, custom chart values
namespace-namespace to install chart into
order0order to apply manifest. For equal values, alphanum ordering is used

Example

In the example, Prometheus is configured from “stable” Helms chart repository. Add the following to k0s.yaml and restart k0s, after which Prometheus should start automatically with k0s.

  1. spec:
  2. extensions:
  3. helm:
  4. concurrencyLevel: 5
  5. repositories:
  6. - name: stable
  7. url: https://charts.helm.sh/stable
  8. - name: prometheus-community
  9. url: https://prometheus-community.github.io/helm-charts
  10. charts:
  11. - name: prometheus-stack
  12. chartname: prometheus-community/prometheus
  13. version: "14.6.1"
  14. timeout: 20m
  15. order: 1
  16. values: |
  17. alertmanager:
  18. persistentVolume:
  19. enabled: false
  20. server:
  21. persistentVolume:
  22. enabled: false
  23. namespace: default
  24. # We don't need to specify the repo in the repositories section for OCI charts
  25. - name: oci-chart
  26. chartname: oci://registry:8080/chart
  27. version: "0.0.1"
  28. order: 2
  29. values: ""
  30. namespace: default
  31. # Other way is to use local tgz file with chart
  32. # the file must exist on all controller nodes
  33. - name: tgz-chart
  34. chartname: /tmp/chart.tgz
  35. version: "0.0.1"
  36. order: 2
  37. values: ""
  38. namespace: default

Example extensions that you can use with Helm charts include:

Helm debug logging

Running k0s controller with --debug=true enables helm debug logging.