-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.tpl
60 lines (54 loc) · 1.69 KB
/
index.tpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html>
<head>
<title>Helm Charts</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/github-markdown-css/2.10.0/github-markdown.min.css" />
<style>
.markdown-body {
box-sizing: border-box;
min-width: 200px;
max-width: 980px;
margin: 0 auto;
padding: 45px;
}
@media (max-width: 767px) {
.markdown-body {
padding: 15px;
}
}
</style>
</head>
<body>
<section class="markdown-body">
<h1>Helm Charts for Validated Patterns</h1>
<h2>Usage</h2>
<pre lang="no-highlight"><code>
helm repo add validated-patterns https://charts.validatedpatterns.io
</code></pre>
<p>These is the list of charts used by the Validated Patterns project.
For more information consult the <a
href="https://validatedpatterns.io">Validated Patterns</a> website.
<h2>Charts</h2>
<ul>
{{range $key, $chartEntry := .Entries }}
<li>
<p>
{{ (index $chartEntry 0).Name }}
(<a href="{{ (index (index $chartEntry 0).Urls 0) }}" title="{{ (index (index $chartEntry 0).Urls 0) }}">
{{ (index $chartEntry 0).Version }}
@
{{ (index $chartEntry 0).AppVersion }}
</a>)
</p>
<p>
{{ (index $chartEntry 0).Description }}
</p>
</li>
{{end}}
</ul>
</section>
<time datetime="{{ .Generated.Format "2006-01-02T15:04:05" }}" pubdate id="generated">{{ .Generated.Format "Mon Jan 2 2006 03:04:05PM MST-07:00" }}</time>
</body>
</html>