All Projects → flant → Helm Charts

flant / Helm Charts

Licence: mit
Public Helm charts from Flant.

Projects that are alternatives of or similar to Helm Charts

helm-charts
Dex Helm chart repository
Stars: ✭ 16 (-38.46%)
Mutual labels:  helm-charts
laravel-kubernetes-helm
Deploy a Laravel Application on Kubernetes with Helm
Stars: ✭ 31 (+19.23%)
Mutual labels:  helm-charts
K8sapp
Application template that satisfies the Kubernetes requirements (Golang)
Stars: ✭ 321 (+1134.62%)
Mutual labels:  helm-charts
helm-charts
docs.renovatebot.com/helm-charts
Stars: ✭ 51 (+96.15%)
Mutual labels:  helm-charts
smartcheck-helm
Helm chart to deploy Trend Micro Deep Security Smart Check.
Stars: ✭ 41 (+57.69%)
Mutual labels:  helm-charts
Argo Helm
ArgoProj Helm Charts
Stars: ✭ 263 (+911.54%)
Mutual labels:  helm-charts
khelm
A Helm chart templating CLI, kpt function and kustomize plugin
Stars: ✭ 46 (+76.92%)
Mutual labels:  helm-charts
Awesome Helm
Collaborative list of awesome helm charts and resources. PRs are welcome!
Stars: ✭ 543 (+1988.46%)
Mutual labels:  helm-charts
chartcenter
The Central Helm Repository for the Community
Stars: ✭ 40 (+53.85%)
Mutual labels:  helm-charts
Ingressmonitorcontroller
A Kubernetes controller to watch ingresses and create liveness alerts for your apps/microservices in UptimeRobot, StatusCake, Pingdom, etc. – [✩Star] if you're using it!
Stars: ✭ 306 (+1076.92%)
Mutual labels:  helm-charts
charts
My helm charts
Stars: ✭ 15 (-42.31%)
Mutual labels:  helm-charts
k8s-ovpn-chart
[DEPRECATED] Helm chart for a private OpenVPN server
Stars: ✭ 19 (-26.92%)
Mutual labels:  helm-charts
Kube Charts Mirror
kubernetes helm 国内镜像,每三天更新一次
Stars: ✭ 282 (+984.62%)
Mutual labels:  helm-charts
anchore-charts
Helm charts for Anchore tools and services
Stars: ✭ 38 (+46.15%)
Mutual labels:  helm-charts
Go Api Boilerplate
Go Server/API boilerplate using best practices DDD CQRS ES gRPC
Stars: ✭ 373 (+1334.62%)
Mutual labels:  helm-charts
gradle-helm-plugin
A Gradle plugin for building, publishing and managing Helm charts.
Stars: ✭ 42 (+61.54%)
Mutual labels:  helm-charts
Charts
The IBM/charts repository provides helm charts for IBM and Third Party middleware.
Stars: ✭ 254 (+876.92%)
Mutual labels:  helm-charts
Stock Analysis Engine
Backtest 1000s of minute-by-minute trading algorithms for training AI with automated pricing data from: IEX, Tradier and FinViz. Datasets and trading performance automatically published to S3 for building AI training datasets for teaching DNNs how to trade. Runs on Kubernetes and docker-compose. >150 million trading history rows generated from +5000 algorithms. Heads up: Yahoo's Finance API was disabled on 2019-01-03 https://developer.yahoo.com/yql/
Stars: ✭ 605 (+2226.92%)
Mutual labels:  helm-charts
Cp Helm Charts
The Confluent Platform Helm charts enable you to deploy Confluent Platform services on Kubernetes for development, test, and proof of concept environments.
Stars: ✭ 539 (+1973.08%)
Mutual labels:  helm-charts
Artifactory Docker Examples
Examples for using Artifactory Docker distribution in various environments
Stars: ✭ 292 (+1023.08%)
Mutual labels:  helm-charts

Installing charts from Flant's ChartMuseum

Our main directory for public charts is https://charts.flant.com/common/github. To use it, you need to add this repository to your Helm (e.g. it will be called flant_common_github):

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

Now you can helm install the charts you need. Currently, we have the following charts (generated automatically via GitHub Actions):

  • 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's Helm library with useful helpers/functions.

Using ChartMuseum in your apps

To use these charts in your apps, you need to add the corresponding .helm/requirements.yaml file.

For example, to use a chart for the Loghouse, you'll need to put the following in its requirements.yaml:

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

Adding a 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>
    
  3. Chart should be disabled by default:
    .helm/charts/<new chart name>/values.yaml:
    =================================================
    enabled: false
    

Charts publishing

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].