Skip to content

Commit

Permalink
fix(doc): table layout
Browse files Browse the repository at this point in the history
The table of configuration options was missing column separators, so all the table content was lumped together into a single column.

Added column separators for better/cleaner layout.
  • Loading branch information
luolong authored Sep 30, 2021
1 parent d9ae913 commit 0e7993d
Showing 1 changed file with 16 additions and 16 deletions.
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

0 comments on commit 0e7993d

Please sign in to comment.