summaryrefslogtreecommitdiff
path: root/doc/administration
Commit message (Collapse)AuthorAgeFilesLines
* Fix dead link in Reply by email documentationfix-link-reply-by-emailAchilleas Pipinellis2017-01-061-2/+2
|
* Add more storage statisticsMarkus Koller2016-12-211-0/+6
| | | | | | | | | | | | | This adds counters for build artifacts and LFS objects, and moves the preexisting repository_size and commit_count from the projects table into a new project_statistics table. The counters are displayed in the administration area for projects and groups, and also available through the API for admins (on */all) and normal users (on */owned) The statistics are updated through ProjectCacheWorker, which can now do more granular updates with the new :statistics argument.
* Merge branch 'authentiq-id-oauth-support' into 'master' Rémy Coutable2016-12-212-1/+70
|\ | | | | | | | | Added support for Authentiq OAuth provider See merge request !8038
| * Added support for Authentiq oauth providerAlex2016-12-212-1/+70
| |
* | Rename "Online terminal" to "Web terminal" in the docsNick Thomas2016-12-202-10/+10
| |
* | Merge branch '22864-kubernetes-deploy-with-terminal' into 'master' Kamil Trzciński2016-12-202-10/+89
|\ \ | |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add online terminal support for Kubernetes ## What does this MR do? Gives terminal access to kubernetes-deployed environments via the deployment service ## Are there points in the code the reviewer needs to double check? ## Why was this MR needed? Part of idea to production ## Screenshots (if relevant) ### `/root/reviewing/environments` ![Screen_Shot_2016-12-15_at_19.10.40](/uploads/bd2c54c07b6c85dec3328a20cd185b64/Screen_Shot_2016-12-15_at_19.10.40.png) ### `/root/reviewing/environments/10013` ![Screen_Shot_2016-12-19_at_12.52.39](/uploads/db4e4e06cda88437e8727433d65898b9/Screen_Shot_2016-12-19_at_12.52.39.png) ### `/root/reviewing/enviroments/10013/terminal` ![Screen_Shot_2016-12-15_at_02.35.52](/uploads/1bb77b7e2de2c657ae3bda62dc4f0970/Screen_Shot_2016-12-15_at_02.35.52.png) ## Does this MR meet the acceptance criteria? - [x] [Changelog entry](https://docs.gitlab.com/ce/development/changelog.html) added - [x] [Documentation created/updated](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/development/doc_styleguide.md) - Tests - [X] Added for this feature/bug - [x] All builds are passing - [X] Conform by the [merge request performance guides](http://docs.gitlab.com/ce/development/merge_request_performance_guidelines.html) - [X] Conform by the [style guides](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CONTRIBUTING.md#style-guides) - [x] Branch has no merge conflicts with `master` (if it does - rebase it please) - [x] [Squashed related commits together](https://git-scm.com/book/en/Git-Tools-Rewriting-History#Squashing-Commits) ## What are the relevant issue numbers? * Closes #22864 #22958 * Alternative to, and somewhat based on, !6770 * Depends on https://gitlab.com/gitlab-org/gitlab-workhorse/merge_requests/83 See merge request !7690
| * Add online terminal documentationNick Thomas2016-12-192-10/+89
| |
* | Add LDAP task to rename a providerDrew Blessing2016-12-162-21/+122
|/ | | | | | | | Sometimes admins will change the LDAP configuration, not realizing that problems will occur if the user's LDAP identities are not also updated to use the new provider name. This task will give admins a single command to run to update identities and will prevent having to run multiple Rails console queries.
* Merge branch 'update-custom-hooks-docs' into 'master' Sean McGivern2016-12-161-7/+15
|\ | | | | | | | | Update custom hooks docs and set 4.1.0 See merge request !8040
| * Update custom hooks docs and set 4.1.0update-custom-hooks-docsSean McGivern2016-12-121-7/+15
| |
* | Merge branch 'docs/add-okta-auth' into 'master' Achilleas Pipinellis2016-12-154-1/+162
|\ \ | | | | | | | | | | | | | | | | | | Add Okta authentication documentation Related to https://gitlab.com/gitlab-org/gitlab-ce/issues/14122 See merge request !8104
| * | Add Okta authentication documentationdocs/add-okta-authAchilleas Pipinellis2016-12-154-1/+162
| | |
* | | Add `gitlab_rails['auto_migrate'] = false` to HA docs for Redis/PG [ci skip]Drew Blessing2016-12-152-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | In a high availability configuration, the Redis and PostgreSQL nodes should not attempt to run database migrations. In fact, trying will result in errors about not providing a database password. To prevent errors and confusion, add this configurtion to these nodes' `gitlab.rb` file.
* | | Fix headings in administration/logs.mdAchilleas Pipinellis2016-12-151-14/+14
| | | | | | | | | | | | [ci skip]
* | | Document `repocheck.log` in logs docsAchilleas Pipinellis2016-12-151-0/+10
|/ / | | | | | | [ci skip]
* | Merge branch 'seed-runner-token' into 'master' Kamil Trzciński2016-12-151-11/+12
|\ \ | |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Allow users to seed the initial runner registration token using an environment variable ## What does this MR do? Allow users to seed the initial runner registration token using an environment variable ## Are there points in the code the reviewer needs to double check? - Naming, do we want to make sure we are clear it's the 'registration' token. Like GITLAB_RUNNER_REGISTRATION_TOKEN vs what I have now, GITLAB_RUNNER_TOKEN - Not sure we've tested a seed fixture before, I just made up a directory structure for the test ## Why was this MR needed? At the moment I want to use this in our idea to production demo: https://gitlab.com/gitlab-org/gitlab-ce/issues/22190 This is useful for when runner is bundled with gitlab, like in a kubernetes stack, and we want the runner to be able to register with gitlab as soon as they both come up. ## Does this MR meet the acceptance criteria? - [x] [CHANGELOG](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CHANGELOG) entry added - [x] [Documentation created/updated](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/development/doc_styleguide.md) - [ ] API support added - Tests - [x] Added for this feature/bug - [x] All builds are passing - [ ] Conform by the [merge request performance guides](http://docs.gitlab.com/ce/development/merge_request_performance_guidelines.html) - [ ] Conform by the [style guides](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CONTRIBUTING.md#style-guides) - [ ] Branch has no merge conflicts with `master` (if you do - rebase it please) - [ ] [Squashed related commits together](https://git-scm.com/book/en/Git-Tools-Rewriting-History#Squashing-Commits) See merge request !6642
| * Allow users to seed the initial runner registration token using an ↵DJ Mountney2016-12-011-11/+12
| | | | | | | | | | | | | | environment variable This is useful for when runner is bundled with gitlab, like in a kubernetes stack, and we want the runner to be able to register with gitlab as soon as they both come up.
* | Updating reference to database password1392-honor-database-passwordIan Baum2016-12-081-2/+2
| | | | | | | | | | postgresql['sql_password'] is not used, should be gitlab_rails['db_password']
* | Update custom_hooks.md for global custom hooks and chained hook infoElan Ruusamäe2016-12-061-0/+20
|/ | | | https://gitlab.com/gitlab-org/gitlab-shell/merge_requests/93
* Fix wrong link in builds artifacts admin docsAchilleas Pipinellis2016-12-011-1/+1
| | | | [ci skip]
* Remove `memberOf` OID in LDAP `user_filter` docs ldap_user_filter_update2Drew Blessing2016-11-281-1/+1
| | | | | While not technically invalid, it is not necessary to have the `memberOf` OID in the `user_filter`. It clutters things up and causes confusion for users so it's better if we remove it from the docs.
* Reduce size of images from 25MB to 13MB using pngquantAchilleas Pipinellis2016-11-2215-0/+0
| | | | | | Took it from https://gitlab.com/gitlab-com/www-gitlab-com/merge_requests/3232 [ci skip]
* Merge branch 'patch-10' into 'master' Achilleas Pipinellis2016-11-221-1/+1
|\ | | | | | | | | | | | | | | | | add missing sudo skip-auto-migration ## What does this MR do? Fixes minor documentation issue where adding `skip-auto-migration` file does not work because `sudo` is not used. See merge request !7435
| * add missing sudo skip-auto-migrationBen Bodenmiller2016-11-121-1/+1
| |
* | Merge branch 'mailroom_idle_timeout' into 'master' Rémy Coutable2016-11-171-0/+10
|\ \ | | | | | | | | | | | | | | | | | | Allows configuration of idle_timeout for incoming email. https://gitlab.com/gitlab-org/omnibus-gitlab/merge_requests/1087 See merge request !7423
| * | Correct the idle_timeout in the docs for installation from source.mailroom_idle_timeoutMarin Jankovski2016-11-161-3/+3
| | |
| * | Add idle_timeout to reply by email doc.Marin Jankovski2016-11-161-0/+10
| | |
* | | Remove ToC since it's now supported in the docs portal itselfAchilleas Pipinellis2016-11-172-53/+0
| | | | | | | | | | | | [ci skip]
* | | Remove login as root step from Redis HA docsdoc/sentinelAchilleas Pipinellis2016-11-161-22/+9
| | | | | | | | | | | | [ci skip]
* | | Minor edits in Redis HA source installAchilleas Pipinellis2016-11-161-4/+4
| | | | | | | | | | | | [ci skip]
* | | Remove experimental heading and move note at the topAchilleas Pipinellis2016-11-161-9/+6
| | | | | | | | | | | | [ci skip]
* | | Merge branch 'doc/sentinel' of gitlab.com:gitlab-org/gitlab-ce into doc/sentinelAchilleas Pipinellis2016-11-163-330/+1107
|\ \ \
| * | | Merge examples of Redis master/slave + Sentinels for source docsAchilleas Pipinellis2016-11-161-67/+106
| | | | | | | | | | | | | | | | [ci skip]
| * | | Add steps to Redis HA source installationAchilleas Pipinellis2016-11-161-73/+123
| | | |
| * | | Merge examples of Redis master/slave + SentinelsAchilleas Pipinellis2016-11-161-107/+37
| | | |
| * | | Rearrange Redis HA source installations sectionsAchilleas Pipinellis2016-11-161-24/+33
| | | |
| * | | Add clear instructions for the different Redis HA setupsAchilleas Pipinellis2016-11-161-35/+40
| | | |
| * | | Refactor Redis HA docsAchilleas Pipinellis2016-11-151-233/+314
| | | | | | | | | | | | | | | | [ci skip]
| * | | Swap HA setupsAchilleas Pipinellis2016-11-152-42/+45
| | | |
| * | | Add missing link to GH issueAchilleas Pipinellis2016-11-111-6/+9
| | | |
| * | | Rearrange sections in Sentinel docsAchilleas Pipinellis2016-11-101-162/+181
| | | | | | | | | | | | | | | | [ci skip]
| * | | Move some things overAchilleas Pipinellis2016-11-101-83/+112
| | | |
| * | | Move experimental heading at the bottom under changelogAchilleas Pipinellis2016-11-101-26/+33
| | | |
| * | | Fix typos of Redis sentinel docsAchilleas Pipinellis2016-11-101-22/+22
| | | |
| * | | Remade documentation for Redis HA with OmnibusGabriel Mazetto2016-11-102-182/+480
| | | |
| * | | Fixed some documentation and moved Source install specific to other file.Gabriel Mazetto2016-11-082-121/+300
| | | |
| * | | Fixed documentation and added redis/sentinel roles instructionGabriel Mazetto2016-11-081-14/+54
| | | |
| * | | Few more fixes to Sentinel documentation to address MR feedbackGabriel Mazetto2016-11-081-7/+4
| | | |
| * | | Reduce the ammount of lines to disable services and update TOCGabriel Mazetto2016-11-081-9/+3
| | | |
| * | | Improved Redis HA and Sentinel documentation.Gabriel Mazetto2016-11-081-117/+210
| | | |