Remove GITLAB_REPOSITORIES_STORAGES_DEFAULT_FAILURE_WAIT_TIME

Signed-off-by: solidnerd <niclas@mietz.io>
This commit is contained in:
solidnerd 2017-12-26 11:07:06 +01:00
parent a705e5f03f
commit 7a9d333b2d
No known key found for this signature in database
GPG Key ID: C300D44AB5469BE5
5 changed files with 1 additions and 4 deletions

View File

@ -6,6 +6,7 @@ https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CHANGELOG.md) for the list o
**10.3.0**
- gitlab: upgrade CE to v10.3.0
- REMOVED `GITLAB_REPOSITORIES_STORAGES_DEFAULT_FAILURE_COUNT_THRESHOLD`
- REMOVED `GITLAB_REPOSITORIES_STORAGES_DEFAULT_FAILURE_WAIT_TIME`
**10.2.5**
- gitlab: upgrade CE to v10.2.5

View File

@ -842,7 +842,6 @@ Below is the complete list of available options that can be used to customize yo
| `GITLAB_NOTIFY_ON_BROKEN_BUILDS` | Enable or disable broken build notification emails. Defaults to `true` |
| `GITLAB_NOTIFY_PUSHER` | Add pusher to recipients list of broken build notification emails. Defaults to `false` |
| `GITLAB_REPOS_DIR` | The git repositories folder in the container. Defaults to `/home/git/data/repositories` |
| `GITLAB_REPOSITORIES_STORAGES_DEFAULT_FAILURE_WAIT_TIME` | Sets the time in seconds after an access failure before allowing access again. Defaults to `30`. |
| `GITLAB_REPOSITORIES_STORAGES_DEFAULT_FAILURE_RESET_TIME` | Sets the time in seconds to expire failures. Defaults to `1800`. |
| `GITLAB_REPOSITORIES_STORAGES_DEFAULT_STORAGE_TIMEOUT` | Sets the time in seconds to wait before aborting a storage access attempt. Defaults to `5`. |
| `GITLAB_BACKUP_DIR` | The backup folder in the container. Defaults to `/home/git/data/backups` |

View File

@ -493,7 +493,6 @@ production: &base
default:
path: {{GITLAB_REPOS_DIR}}/
gitaly_address: unix:/home/git/gitlab/tmp/sockets/private/gitaly.socket # TCP connections are supported too (e.g. tcp://host:port)
failure_wait_time: {{GITLAB_REPOSITORIES_STORAGES_DEFAULT_FAILURE_WAIT_TIME}} # Seconds after an access failure before allowing access again
failure_reset_time: {{GITLAB_REPOSITORIES_STORAGES_DEFAULT_FAILURE_RESET_TIME}} # Time in seconds to expire failures
storage_timeout: {{GITLAB_REPOSITORIES_STORAGES_DEFAULT_STORAGE_TIMEOUT}} # Time in seconds to wait before aborting a storage access attempt

View File

@ -9,7 +9,6 @@ GITLAB_REPOS_DIR="${GITLAB_REPOS_DIR:-$GITLAB_DATA_DIR/repositories}"
GITLAB_BUILDS_DIR="${GITLAB_BUILDS_DIR:-$GITLAB_DATA_DIR/builds}"
GITLAB_DOWNLOADS_DIR="${GITLAB_DOWNLOADS_DIR:-$GITLAB_TEMP_DIR/downloads}"
GITLAB_SHARED_DIR="${GITLAB_SHARED_DIR:-$GITLAB_DATA_DIR/shared}"
GITLAB_REPOSITORIES_STORAGES_DEFAULT_FAILURE_WAIT_TIME=${GITLAB_REPOSITORIES_STORAGES_DEFAULT_FAILURE_WAIT_TIME:-30}
GITLAB_REPOSITORIES_STORAGES_DEFAULT_FAILURE_RESET_TIME=${GITLAB_REPOSITORIES_STORAGES_DEFAULT_FAILURE_RESET_TIME:-1800}
GITLAB_REPOSITORIES_STORAGES_DEFAULT_STORAGE_TIMEOUT=${GITLAB_REPOSITORIES_STORAGES_DEFAULT_STORAGE_TIMEOUT:-5}

View File

@ -1421,7 +1421,6 @@ configure_gitlab() {
GITLAB_SHELL_INSTALL_DIR \
GITLAB_DATA_DIR \
GITLAB_REPOS_DIR \
GITLAB_REPOSITORIES_STORAGES_DEFAULT_FAILURE_WAIT_TIME \
GITLAB_REPOSITORIES_STORAGES_DEFAULT_FAILURE_RESET_TIME \
GITLAB_REPOSITORIES_STORAGES_DEFAULT_STORAGE_TIMEOUT \
GITLAB_DOWNLOADS_DIR \