Skip to content

Commit a4ab0e5

Browse files
committed
update readme
1 parent b5b2258 commit a4ab0e5

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ The environment variables can be used to configure various aspects of the inner
2727
| `CODER_CPUS` | Dictates the number of CPUs to allocate the inner container. It is recommended to set this using the Kubernetes [Downward API](https://kubernetes.io/docs/tasks/inject-data-application/environment-variable-expose-pod-information/#use-container-fields-as-values-for-environment-variables). | false |
2828
| `CODER_MEMORY` | Dictates the max memory (in bytes) to allocate the inner container. It is recommended to set this using the Kubernetes [Downward API](https://kubernetes.io/docs/tasks/inject-data-application/environment-variable-expose-pod-information/#use-container-fields-as-values-for-environment-variables). | false |
2929
| `CODER_DISABLE_IDMAPPED_MOUNT` | Disables idmapped mounts in sysbox. For more information, see the [Sysbox Documentation](https://github.com/nestybox/sysbox/blob/master/docs/user-guide/configuration.md#disabling-id-mapped-mounts-on-sysbox). | false |
30+
| `CODER_EXTRA_CERTS_PATH` | A path to a file or directory containing CA certificates that should be made when communicating to external services (e.g. the Coder control plane or a Docker registry) | false |
3031

3132
## Coder Template
3233

integration/integrationtest/docker.go

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ type CreateDockerCVMConfig struct {
5656
Envs []string
5757

5858
OuterMounts []docker.HostMount
59-
InnerMounts []string
6059
AddFUSE bool
6160
AddTUN bool
6261
CPUs int
@@ -310,10 +309,6 @@ func cmdLineEnvs(c *CreateDockerCVMConfig) []string {
310309
envs = append(envs, EnvVar(cli.EnvInnerEnvs, strings.Join(c.InnerEnvFilter, ",")))
311310
}
312311

313-
if len(c.InnerMounts) > 0 {
314-
envs = append(envs, EnvVar(cli.EnvMounts, strings.Join(c.InnerMounts, ",")))
315-
}
316-
317312
if c.AddFUSE {
318313
envs = append(envs, EnvVar(cli.EnvAddFuse, "true"))
319314
}

0 commit comments

Comments
 (0)