From 0e7993dfb9e145d11d1037ba8c93b542161f7c85 Mon Sep 17 00:00:00 2001 From: Roland Tepp Date: Thu, 30 Sep 2021 10:52:29 +0300 Subject: [PATCH] fix(doc): table layout 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. --- docs/defining-charts.adoc | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/docs/defining-charts.adoc b/docs/defining-charts.adoc index 95300da0..1fb36587 100644 --- a/docs/defining-charts.adoc +++ b/docs/defining-charts.adoc @@ -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. |===