Skip to content

Latest commit

 

History

History
42 lines (31 loc) · 1.59 KB

README.md

File metadata and controls

42 lines (31 loc) · 1.59 KB

Flant Helm charts

Install chart

All the charts in this repo are available in our ChartMuseum located at https://charts.flant.com/common/github.
To be able to use them, you will need to add our ChartMuseum to the Helm's list of repositories:

helm repo add flant_common_github https://charts.flant.com/common/github
helm repo update

Now you can helm install the charts you need:

  • k8s-image-availability-exporterk8s-iae is a Prometheus exporter that warns you proactively about images that are defined in Kubernetes objects but are not available in the container registry;
  • loghouseloghouse is a log management solution for Kubernetes based on ClickHouse and Fluentd;
  • flant-lib — Flant Helm library with useful helpers/functions.

Alternatively, you can make your charts explicitly depend on one of the charts from this repo by adding a dependencies section to your requirements.yaml or Chart.yaml:

dependencies:
- name: loghouse
  version: ~0.3
  repository: https://charts.flant.com/common/github
  condition: loghouse.enabled

Add new chart

  1. Place a chart in .helm/charts/<new chart name>
  2. Add a dependency for it:
    .helm/requirements.yaml:
    ===============================
    - name: <new chart name>
      condition: <new chart name>.enabled
      version: ~<major version only, minor/patch not required>

Each new commit in master branch triggers automatic publishing to ChartMuseum at https://charts.flant.com/common/github.