diff options
author | Alexandre Figura <git@alexandre.figura.live> | 2018-02-01 16:41:47 +0000 |
---|---|---|
committer | Alexandre Figura <git@alexandre.figura.live> | 2018-02-01 16:41:47 +0000 |
commit | 9ee5a9039b0d8cde6f0eef290b90a6dca229016e (patch) | |
tree | 22696a1b8dfbe1922532d3891d935a681c14db56 /doc | |
parent | f50835869c72beca08b0c7749451fe3c694a28af (diff) | |
download | gitlab-ce-9ee5a9039b0d8cde6f0eef290b90a6dca229016e.tar.gz |
Fix typo in gitlab_runner_chart.md
When Gitlab URL is set as `gitlabURL` in the configuration file, `helm install` is not happy and complains about a missing `gitlabUrl`.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/install/kubernetes/gitlab_runner_chart.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/install/kubernetes/gitlab_runner_chart.md b/doc/install/kubernetes/gitlab_runner_chart.md index ca9c95aeced..1f53e12d5f8 100644 --- a/doc/install/kubernetes/gitlab_runner_chart.md +++ b/doc/install/kubernetes/gitlab_runner_chart.md @@ -31,7 +31,7 @@ The default configuration can always be found in the [values.yaml](https://gitla In order for GitLab Runner to function, your config file **must** specify the following: - - `gitlabURL` - the GitLab Server URL (with protocol) to register the runner against + - `gitlabUrl` - the GitLab Server URL (with protocol) to register the runner against - `runnerRegistrationToken` - The Registration Token for adding new Runners to the GitLab Server. This must be retrieved from your GitLab Instance. See the [GitLab Runner Documentation](../../ci/runners/README.md#creating-and-registering-a-runner) for more information. @@ -47,7 +47,7 @@ Here is a snippet of the important settings: ## The GitLab Server URL (with protocol) that want to register the runner against ## ref: https://docs.gitlab.com/runner/commands/README.html#gitlab-runner-register ## -gitlabURL: http://gitlab.your-domain.com/ +gitlabUrl: http://gitlab.your-domain.com/ ## The Registration Token for adding new Runners to the GitLab Server. This must ## be retreived from your GitLab Instance. |