From a78336ad355515f3142a06f3cc18acf46faf924f Mon Sep 17 00:00:00 2001 From: Lukas Eichler Date: Tue, 27 Feb 2018 09:16:02 +0100 Subject: [PATCH] docs(helm): Added kubeVersion to documentation. docs(helm): Added kubeVersion to documentation and examples. Adjusted wording for the Chart.kubeVersion description Removing redundant wording for Chart.kubeVersion description --- docs/charts.md | 1 + docs/examples/nginx/Chart.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/docs/charts.md b/docs/charts.md index 00e0144f3..91ead584f 100644 --- a/docs/charts.md +++ b/docs/charts.md @@ -45,6 +45,7 @@ The `Chart.yaml` file is required for a chart. It contains the following fields: ```yaml name: The name of the chart (required) version: A SemVer 2 version (required) +kubeVersion: A SemVer range of compatible Kubernetes versions (optional) description: A single-sentence description of this project (optional) keywords: - A list of keywords about this project (optional) diff --git a/docs/examples/nginx/Chart.yaml b/docs/examples/nginx/Chart.yaml index 6ca92998d..f6e2de338 100644 --- a/docs/examples/nginx/Chart.yaml +++ b/docs/examples/nginx/Chart.yaml @@ -1,6 +1,7 @@ name: nginx description: A basic NGINX HTTP server version: 0.1.0 +kubeVersion: >= 1.2.0 keywords: - http - nginx