docs(self-hosted experimental): monospace variable names (#13193)

This commit is contained in:
HonkingGoose 2021-12-19 14:11:12 +01:00 committed by GitHub
parent 3b91162eca
commit 6290c43120
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,33 +14,33 @@ We do not follow Semantic Versioning for any experimental variables.
These variables may be removed or have their behavior changed in **any** version. These variables may be removed or have their behavior changed in **any** version.
We will try to keep breakage to a minimum, but make no guarantees that an experimental variable will keep working. We will try to keep breakage to a minimum, but make no guarantees that an experimental variable will keep working.
## RENOVATE_CACHE_NPM_MINUTES ## `RENOVATE_CACHE_NPM_MINUTES`
If set to any integer, Renovate will use this integer instead of the default npm cache time (15 minutes) for the npm datasource. If set to any integer, Renovate will use this integer instead of the default npm cache time (15 minutes) for the npm datasource.
## RENOVATE_EXPERIMENTAL_NO_MAVEN_POM_CHECK ## `RENOVATE_EXPERIMENTAL_NO_MAVEN_POM_CHECK`
If set to any value, Renovate will skip its default artifacts filter check in the Maven datasource. If set to any value, Renovate will skip its default artifacts filter check in the Maven datasource.
Skipping the check will speed things up, but may result in versions being returned which don't properly exist on the server. Skipping the check will speed things up, but may result in versions being returned which don't properly exist on the server.
## RENOVATE_PAGINATE_ALL ## `RENOVATE_PAGINATE_ALL`
If set to any value, Renovate will always paginate requests to GitHub fully, instead of stopping after 10 pages. If set to any value, Renovate will always paginate requests to GitHub fully, instead of stopping after 10 pages.
## RENOVATE_REUSE_PACKAGE_LOCK ## `RENOVATE_REUSE_PACKAGE_LOCK`
If set to "false" (string), Renovate will remove any existing `package-lock.json` before attempting to update it. If set to "false" (string), Renovate will remove any existing `package-lock.json` before attempting to update it.
## RENOVATE_USER_AGENT ## `RENOVATE_USER_AGENT`
If set to any string, Renovate will use this as the `user-agent` it sends with HTTP requests. If set to any string, Renovate will use this as the `user-agent` it sends with HTTP requests.
## RENOVATE_X_HARD_EXIT ## `RENOVATE_X_HARD_EXIT`
If set to any value, Renovate will use a "hard" `process.exit()` once all work is done, even if a sub-process is otherwise delaying Node.js from exiting. If set to any value, Renovate will use a "hard" `process.exit()` once all work is done, even if a sub-process is otherwise delaying Node.js from exiting.
See <https://github.com/renovatebot/renovate/issues/8660> for background on why this was created. See <https://github.com/renovatebot/renovate/issues/8660> for background on why this was created.
## RENOVATE_X_PLATFORM_VERSION ## `RENOVATE_X_PLATFORM_VERSION`
If set, Renovate will use this string as GitLab server version instead of checking via the GitLab API. If set, Renovate will use this string as GitLab server version instead of checking via the GitLab API.
This can be useful when you use the GitLab `CI_JOB_TOKEN` to authenticate Renovate. This can be useful when you use the GitLab `CI_JOB_TOKEN` to authenticate Renovate.