From 9c4f41d7846dea07a3ed77d9270398bb3fecf7f1 Mon Sep 17 00:00:00 2001 From: cjtim Date: Thu, 31 Mar 2022 01:19:58 +0700 Subject: [PATCH] docs(helm): add example env required for docker-in-docker (#5045) Co-authored-by: Joe Previte --- ci/helm-chart/values.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ci/helm-chart/values.yaml b/ci/helm-chart/values.yaml index a0c2f134f..4113b2a16 100644 --- a/ci/helm-chart/values.yaml +++ b/ci/helm-chart/values.yaml @@ -70,6 +70,8 @@ extraArgs: [] extraVars: [] # - name: DISABLE_TELEMETRY # value: true +# - name: DOCKER_HOST +# value: "tcp://localhost:2375" ## ## Init containers parameters: @@ -126,6 +128,7 @@ persistence: ## Enable an Specify container in extraContainers. ## This is meant to allow adding code-server dependencies, like docker-dind. extraContainers: | +# If docker-dind is used, DOCKER_HOST env is mandatory to set in "extraVars" #- name: docker-dind # image: docker:19.03-dind # imagePullPolicy: IfNotPresent