Skip to content

Instantly share code, notes, and snippets.

@jacobtomlinson
Last active December 9, 2019 13:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jacobtomlinson/70a8e17af0eb12b8066aac8f954390da to your computer and use it in GitHub Desktop.
Save jacobtomlinson/70a8e17af0eb12b8066aac8f954390da to your computer and use it in GitHub Desktop.
---
layout: default
---
## Getting Started
{{ site.description }}
You can add this repository to your local helm configuration as follows :
```console
$ 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] %}
<h3>
{% if latest_chart.icon %}
<img src="{{ latest_chart.icon }}" style="height:1.2em;vertical-align: text-top;" />
{% endif %}
{{ title }}
</h3>
[Home]({{ latest_chart.home }}) \| [Source]({{ latest_chart.sources[0] }})
{{ latest_chart.description }}
```console
$ 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 | date_to_rfc822 }} |
{% endunless -%}
{% endfor -%}
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment