Skip to content

Latest commit

 

History

History
46 lines (34 loc) · 1.14 KB

index.md

File metadata and controls

46 lines (34 loc) · 1.14 KB
layout
default

Getting Started

{{ site.description }}

You can add this repository to your local helm configuration as follows :

$ helm repo add {{ site.repo_name }} {{ site.url }}
$ helm repo update

Charts

{% for helm_chart in site.data.index.entries %} {% assign title = helm_chart[0] | capitalize %} {% assign all_charts = helm_chart[1] | sort: 'created' | reverse %} {% assign latest_chart = all_charts[0] %}

{% if latest_chart.icon %} {% endif %} {{ title }}

[Home]({{ latest_chart.home }}) | [Source]({{ latest_chart.sources[0] }})

{{ latest_chart.description }}

$ helm install {{ site.repo_name }}/{{ latest_chart.name }} --name myrelease --version {{ latest_chart.version }}
Chart Version App Version Date
{% for chart in all_charts -%}
{% unless chart.version contains "-" -%}
[{{ chart.name }}-{{ chart.version }}]({{ chart.urls[0] }}) {{ chart.appVersion }} {{ chart.created
{% endunless -%}
{% endfor -%}

{% endfor %}