mirror of
https://github.com/coder/coder.git
synced 2026-06-02 20:48:20 +00:00
docs: advise against shared CODER_CACHE_DIRECTORY dir usage in note (#14216)
This commit is contained in:
+2
-1
@@ -22,7 +22,8 @@ OPTIONS:
|
||||
--cache-dir string, $CODER_CACHE_DIRECTORY (default: [cache dir])
|
||||
The directory to cache temporary files. If unspecified and
|
||||
$CACHE_DIRECTORY is set, it will be used for compatibility with
|
||||
systemd.
|
||||
systemd. This directory is NOT safe to be configured as a shared
|
||||
directory across coderd/provisionerd replicas.
|
||||
|
||||
--disable-owner-workspace-access bool, $CODER_DISABLE_OWNER_WORKSPACE_ACCESS
|
||||
Remove the permission for the 'owner' role to have workspace execution
|
||||
|
||||
+2
-1
@@ -414,7 +414,8 @@ updateCheck: false
|
||||
# (default: <unset>, type: bool)
|
||||
enableSwagger: false
|
||||
# The directory to cache temporary files. If unspecified and $CACHE_DIRECTORY is
|
||||
# set, it will be used for compatibility with systemd.
|
||||
# set, it will be used for compatibility with systemd. This directory is NOT safe
|
||||
# to be configured as a shared directory across coderd/provisionerd replicas.
|
||||
# (default: [cache dir], type: string)
|
||||
cacheDir: [cache dir]
|
||||
# Controls whether data will be stored in an in-memory database.
|
||||
|
||||
@@ -1977,13 +1977,14 @@ when required by your organization's security policy.`,
|
||||
Annotations: serpent.Annotations{}.Mark(annotationExternalProxies, "true"),
|
||||
},
|
||||
{
|
||||
Name: "Cache Directory",
|
||||
Description: "The directory to cache temporary files. If unspecified and $CACHE_DIRECTORY is set, it will be used for compatibility with systemd.",
|
||||
Flag: "cache-dir",
|
||||
Env: "CODER_CACHE_DIRECTORY",
|
||||
Default: DefaultCacheDir(),
|
||||
Value: &c.CacheDir,
|
||||
YAML: "cacheDir",
|
||||
Name: "Cache Directory",
|
||||
Description: "The directory to cache temporary files. If unspecified and $CACHE_DIRECTORY is set, it will be used for compatibility with systemd. " +
|
||||
"This directory is NOT safe to be configured as a shared directory across coderd/provisionerd replicas.",
|
||||
Flag: "cache-dir",
|
||||
Env: "CODER_CACHE_DIRECTORY",
|
||||
Default: DefaultCacheDir(),
|
||||
Value: &c.CacheDir,
|
||||
YAML: "cacheDir",
|
||||
},
|
||||
{
|
||||
Name: "In Memory Database",
|
||||
|
||||
Generated
+1
-1
@@ -917,7 +917,7 @@ Origin addresses to respect "proxy-trusted-headers". e.g. 192.168.1.0/24.
|
||||
| YAML | <code>cacheDir</code> |
|
||||
| Default | <code>~/.cache/coder</code> |
|
||||
|
||||
The directory to cache temporary files. If unspecified and $CACHE_DIRECTORY is set, it will be used for compatibility with systemd.
|
||||
The directory to cache temporary files. If unspecified and $CACHE_DIRECTORY is set, it will be used for compatibility with systemd. This directory is NOT safe to be configured as a shared directory across coderd/provisionerd replicas.
|
||||
|
||||
### --postgres-url
|
||||
|
||||
|
||||
+2
-1
@@ -23,7 +23,8 @@ OPTIONS:
|
||||
--cache-dir string, $CODER_CACHE_DIRECTORY (default: [cache dir])
|
||||
The directory to cache temporary files. If unspecified and
|
||||
$CACHE_DIRECTORY is set, it will be used for compatibility with
|
||||
systemd.
|
||||
systemd. This directory is NOT safe to be configured as a shared
|
||||
directory across coderd/provisionerd replicas.
|
||||
|
||||
--disable-owner-workspace-access bool, $CODER_DISABLE_OWNER_WORKSPACE_ACCESS
|
||||
Remove the permission for the 'owner' role to have workspace execution
|
||||
|
||||
Reference in New Issue
Block a user