diff options
author | Nick Thomas <nick@gitlab.com> | 2019-05-06 10:33:13 +0000 |
---|---|---|
committer | Nick Thomas <nick@gitlab.com> | 2019-05-06 10:33:13 +0000 |
commit | 3f30ab5733843d1279d283ae98ab89b646f8f25d (patch) | |
tree | e64cca049665e5f9de36aedf4121d8afdecbe2f0 | |
parent | 8dd238ada2cad2926693bc88d4db0b96d40d4611 (diff) | |
parent | 03608aa103144bb085b91d532c93115811453d4c (diff) | |
download | gitlab-ce-3f30ab5733843d1279d283ae98ab89b646f8f25d.tar.gz |
Merge branch 'ce-11225-es_limited_namespaces_removal' into 'master'
Backport "Fix namespace/project removal elasticsearch limit" to CE
See merge request gitlab-org/gitlab-ce!27933
-rw-r--r-- | lib/api/settings.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/api/settings.rb b/lib/api/settings.rb index b064747e5fc..8046acfa397 100644 --- a/lib/api/settings.rb +++ b/lib/api/settings.rb @@ -150,6 +150,12 @@ module API given elasticsearch_indexing: ->(val) { val } do optional :elasticsearch_search, type: Boolean, desc: 'Enable Elasticsearch search' requires :elasticsearch_url, type: String, desc: 'The url to use for connecting to Elasticsearch. Use a comma-separated list to support clustering (e.g., "http://localhost:9200, http://localhost:9201")' + optional :elasticsearch_limit_indexing, type: Boolean, desc: 'Limit Elasticsearch to index certain namespaces and projects' + end + + given elasticsearch_limit_indexing: ->(val) { val } do + optional :elasticsearch_namespace_ids, type: Array[Integer], coerce_with: Validations::Types::LabelsList.coerce, desc: 'The namespace ids to index with Elasticsearch.' + optional :elasticsearch_project_ids, type: Array[Integer], coerce_with: Validations::Types::LabelsList.coerce, desc: 'The project ids to index with Elasticsearch.' end optional :email_additional_text, type: String, desc: 'Additional text added to the bottom of every email for legal/auditing/compliance reasons' |