From ea1b3a724527a6a103844d328d888966e52dcffc Mon Sep 17 00:00:00 2001 From: Jonathan Yu Date: Tue, 24 Aug 2021 15:30:04 -0700 Subject: [PATCH] chore: add example for parameter/value to Helm Values (#4020) --- ci/helm-chart/values.yaml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/ci/helm-chart/values.yaml b/ci/helm-chart/values.yaml index c95c3d97..90d3427c 100644 --- a/ci/helm-chart/values.yaml +++ b/ci/helm-chart/values.yaml @@ -57,8 +57,18 @@ ingress: # Optional additional arguments extraArgs: [] -# - --allow-http -# - --no-auth + # These are the arguments normally passed to code-server; run + # code-server --help for a list of available options. + # + # Each argument and parameter must have its own entry; if you use + # --param value on the command line, then enter it here as: + # + # - --param + # - value + # + # If you receive an error like "Unknown option --param value", it may be + # because both the parameter and value are specified as a single argument, + # rather than two separate arguments (e.g. "- --param value" on a line). # Optional additional environment variables extraVars: []