Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
H
helm3
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
helm3
Commits
9b58f101
Commit
9b58f101
authored
Aug 17, 2016
by
Adnan Abdulhussein
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
docs(notes.txt): Add NOTES.txt to Chart spec, and describe chart documentation
parent
6e4344ba
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
0 deletions
+20
-0
charts.md
docs/charts.md
+20
-0
No files found.
docs/charts.md
View file @
9b58f101
...
@@ -25,6 +25,7 @@ wordpress/
...
@@ -25,6 +25,7 @@ wordpress/
Chart.yaml # A YAML file containing information about the chart
Chart.yaml # A YAML file containing information about the chart
LICENSE # OPTIONAL: A plain text file containing the license for the chart
LICENSE # OPTIONAL: A plain text file containing the license for the chart
README.md # OPTIONAL: A human-readable README file
README.md # OPTIONAL: A human-readable README file
NOTES.txt # OPTIONAL: A plain text file containing short usage notes
values.yaml # The default configuration values for this chart
values.yaml # The default configuration values for this chart
charts/ # OPTIONAL: A directory containing any charts upon which this chart depends.
charts/ # OPTIONAL: A directory containing any charts upon which this chart depends.
templates/ # OPTIONAL: A directory of templates that, when combined with values,
templates/ # OPTIONAL: A directory of templates that, when combined with values,
...
@@ -88,6 +89,25 @@ in the `Chart.yaml` as a token in the package name. The system assumes
...
@@ -88,6 +89,25 @@ in the `Chart.yaml` as a token in the package name. The system assumes
that the version number in the chart package name matches the version number in
that the version number in the chart package name matches the version number in
the
`Chart.yaml`
. Failure to meet this assumption will cause an error.
the
`Chart.yaml`
. Failure to meet this assumption will cause an error.
## Chart LICENSE, README and NOTES
Charts can also contain files that describe the installation, configuration, usage and license of a
chart. A README for a chart should be formatted in Markdown (README.md), and should generally
contain:
-
A description of the application or service the chart provides
-
Any prerequisites or requirements to run the chart
-
Descriptions of options in
`values.yaml`
and default values
-
Any other information that may be relevant to the installation or configuration of the chart
The chart can also contain a short plain text NOTES.txt file that will be printed out after
installation, and when viewing the status of a release. This file is evaluated as a
[
template
](
#templates-and-values
)
, and can be used to display usage notes, next steps, or any other
information relevant to a release of the chart. For example, instructions could be provided for
connecting to a database, or accessing a web UI. Since this file is printed to STDOUT when running
`helm install`
or
`helm status`
, it is recommended to keep the content brief and point to the README
for greater detail.
## Chart Dependencies
## Chart Dependencies
In Helm, one chart may depend on any number of other charts. These
In Helm, one chart may depend on any number of other charts. These
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment