Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(doc): table layout #135

Merged
merged 1 commit into from
Nov 8, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions docs/defining-charts.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -48,22 +48,22 @@ The following properties can be configured on a chart:
|===
| Property | Description | Default

`chartName`
The name of the chart, as used in various `helm` CLI commands. The plugin will make sure that the chart sources are
in a directory with this name when calling `helm`.
Defaults to the name of the chart in the DSL.

`chartVersion`
The version of the chart, as used by `helm`.
Defaults to the Gradle project version.

`sourceDir`
The directory containing the chart sources (`Chart.yaml` file, etc.).
Defaults to `src/main/helm` for the `main` chart (see below), _required_ for all other charts.

`extraFiles`
An optional Gradle `CopySpec` that allows injecting files from external sources into the chart.
By default, no files are copied.
| `chartName`
| The name of the chart, as used in various `helm` CLI commands. The plugin will make sure that the chart sources are
in a directory with this name when calling `helm`.
| Defaults to the name of the chart in the DSL.

| `chartVersion`
| The version of the chart, as used by `helm`.
| Defaults to the Gradle project version.

| `sourceDir`
| The directory containing the chart sources (`Chart.yaml` file, etc.).
| Defaults to `src/main/helm` for the `main` chart (see below), _required_ for all other charts.

| `extraFiles`
| An optional Gradle `CopySpec` that allows injecting files from external sources into the chart.
| By default, no files are copied.
|===


Expand Down