summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* Remove support for creating non-RBAC kubernetes clustersHordur Freyr Yngvason2019-06-181-1/+3
|
* Merge branch 'bw-update-graphql-docs' into 'master'Evan Read2019-06-181-1/+1
|\ | | | | | | | | Update GraphQL document to mention that epics are supported See merge request gitlab-org/gitlab-ce!29777
| * Mention that epics are supported in GraphqlQLbw-update-graphql-docsBrett Walker2019-06-171-1/+1
| |
* | Add note about nested variables for GIT_CLONE_PATHSteve Azzopardi2019-06-181-0/+18
| | | | | | | | | | | | | | The variable $GIT_CLONE_PATH does not support nested variables, it will only expand the variables once, not more. reference https://gitlab.com/gitlab-org/gitlab-runner/issues/4319
* | Merge branch ↵Thong Kuah2019-06-182-8/+0
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | '60617-allow-switching-from-gitlab-managed-to-unmanaged-clusters' into 'master' Allow switching clusters between managed/unmanaged Closes #60617 See merge request gitlab-org/gitlab-ce!29322
| * | Allow switching clusters between managed/unmanagedTiger2019-06-182-8/+0
| | | | | | | | | | | | | | | | | | Any resources created while the cluster was managed will be untouched, allowing users to set/unset this flag as they please.
* | | Merge branch 'merge-train-docs-change' into 'master'Mike Lewis2019-06-171-9/+3
|\ \ \ | |/ / |/| | | | | | | | Updated docs for Merge Trains See merge request gitlab-org/gitlab-ce!29771
| * | Updated docs with suggested changesmerge-train-docs-changeDarby Frey2019-06-171-6/+2
| | |
| * | Updated docs for Merge TrainsDarby Frey2019-06-171-5/+3
| | |
* | | Merge branch '56737-commits-and-mr-events-on-jira-api' into 'master'Stan Hu2019-06-171-3/+48
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Expose currently supported events properly on services API Closes #56737 See merge request gitlab-org/gitlab-ce!29736
| * | | 56737 Expose currently supported events properly on services APIZsolt Kovari2019-06-161-3/+48
| | |/ | |/|
* | | note that todos are not affected by GitLab Notification Email settingsBen Bodenmiller2019-06-171-0/+2
| | |
* | | Merge branch 'hashed-storage-enabled-default' into 'master'Douglas Barbosa Alexandre2019-06-171-10/+4
|\ \ \ | | | | | | | | | | | | | | | | Hashed Storage is enabled by default on new installations See merge request gitlab-org/gitlab-ce!29586
| * | | Hashed Storage is enabled by default on new installationshashed-storage-enabled-defaultGabriel Mazetto2019-06-171-10/+4
| | | | | | | | | | | | | | | | updated documentation for Geo
* | | | Backport docs for "Automatically index wikis in elasticsearch"Nick Thomas2019-06-171-9/+5
|/ / /
* | | Merge branch 'review-toolbar-docs' into 'master'Mike Lewis2019-06-173-0/+38
|\ \ \ | |_|/ |/| | | | | | | | Visual Review Toolbar Docs See merge request gitlab-org/gitlab-ce!29641
| * | Fix that typoreview-toolbar-docssarahghp2019-06-171-1/+1
| | |
| * | Add link, badgesarahghp2019-06-171-2/+2
| | |
| * | Apply suggestion to doc/ci/review_apps/index.mdSarah Groff Hennigh-Palermo2019-06-171-0/+2
| | |
| * | Apply suggestion to doc/ci/review_apps/index.mdSarah Groff Hennigh-Palermo2019-06-171-1/+1
| | |
| * | Remove modal for realsarahghp2019-06-142-1/+0
| | |
| * | Apply suggestion to doc/ci/review_apps/index.mdSarah Groff Hennigh-Palermo2019-06-141-1/+1
| | |
| * | Apply suggestion to doc/ci/review_apps/index.mdSarah Groff Hennigh-Palermo2019-06-141-1/+1
| | |
| * | Update text and imagesarahghp2019-06-142-0/+2
| | |
| * | Apply suggestions from reviewSarah Groff Hennigh-Palermo2019-06-141-5/+8
| | |
| * | Update feature namesarahghp2019-06-141-9/+9
| | |
| * | Apply suggestions from reviewSarah Groff Hennigh-Palermo2019-06-141-5/+16
| | |
| * | Add more pixsarahghp2019-06-133-2/+2
| | |
| * | Fix broken linksarahghp2019-06-131-1/+1
| | |
| * | First pass, needs more pixsarahghp2019-06-132-0/+21
| | |
* | | Merge branch 'backport-schema-changes' into 'master'Robert Speicher2019-06-171-2/+1
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Backport the EE schema to CE Closes gitlab-ee#9686 See merge request gitlab-org/gitlab-ce!26940
| * | | Backport the EE schema and migrations to CEYorick Peterse2019-06-171-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This backports all EE schema changes to CE, including EE migrations, ensuring both use the same schema. == Updated tests A spec related to ghost and support bot users had to be modified to make it pass. The spec in question assumes that the "support_bot" column exists when defining the spec. In the single codebase setup this is not the case, as the column is backported in a later migration. Any attempt to use a different schema version or use of "around" blocks to conditionally disable specs won't help, as reverting the backport migration would also drop the "support_bot" column. Removing the "support_bot" tests entirely appears to be the only solution. We also need to update some foreign key tests now that we have backported the EE columns. Fortunately, these changes are very minor. == Backporting migrations This commit moves EE specific migrations (except those for the Geo tracking database) and related files to CE, and also removes any traces of the ee/db directory. Some migrations had to be modified or removed, as they no longer work with the schema being backported. These migrations were all quite old, so we opted for removing them where modifying them would take too much time and effort. Some old migrations were modified in EE, while also existing in CE. In these cases we took the EE code, and in one case removed them entirely. It's not worth spending time trying to merge these changes somehow as we plan to remove old migrations around the release of 12.0, see https://gitlab.com/gitlab-org/gitlab-ce/issues/59177 for more details.
* | | | Merge branch 'docs-qa-ml-fix-list-rendering' into 'master'Rémy Coutable2019-06-171-0/+1
|\ \ \ \ | |/ / / |/| | | | | | | | | | | Fix list rendering on docs site See merge request gitlab-org/gitlab-ce!29738
| * | | Fix list rendering on docs sitedocs-qa-ml-fix-list-renderingMark Lapierre2019-06-171-0/+1
| | | |
* | | | Docs for Web IDE file syncPaul Slaughter2019-06-172-0/+59
| | | |
* | | | Merge branch 'docs-merge-trains' into 'master'Marcia Ramos2019-06-175-2/+71
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | Docs for Merge Trains See merge request gitlab-org/gitlab-ce!29047
| * | | | Docs for Merge Trainsdocs-merge-trainsShinya Maeda2019-06-175-2/+71
| | | | | | | | | | | | | | | | | | | | | | | | | It explains what is Merge Trains, how to enalbe it and its limitations.
* | | | | Turn single line code into blocksWalmyr2019-06-171-3/+15
|/ / / / | | | | | | | | | | | | | | | | | | | | To improve doc readability. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/62506
* | | | Add documentation on using serverless with existing Knative instanceDaniel Gruesso2019-06-171-0/+9
|/ / /
* | | Docs: Fix link in university support docMarcel Amirault2019-06-171-1/+1
| | |
* | | Merge branch 'docs-sso-enforce-note' into 'master'Evan Read2019-06-171-0/+2
|\ \ \ | | | | | | | | | | | | | | | | Docs: SSO Groups: Add login session note See merge request gitlab-org/gitlab-ce!29628
| * | | Add login session notedocs-sso-enforce-noteCynthia Ng2019-06-131-0/+2
| |/ /
* | | Merge branch 'fix/grammar' into 'master'Ray Paik2019-06-171-1/+1
|\ \ \ | | | | | | | | | | | | | | | | [Docs] Fix minor grammar issue See merge request gitlab-org/gitlab-ce!29716
| * | | Fix minor grammar issueArun Kumar Mohan2019-06-141-1/+1
| | |/ | |/|
* | | Edit after script context textEvan Read2019-06-162-14/+20
| | |
* | | Say that the dependency list is from GemnasiumFabien Catteau2019-06-161-1/+1
| | | | | | | | | | | | | | | Make it explicit that the dependency list is generated from Gemnasium.
* | | Fix broken hyperlink in reducing_the_repo_size_using_git.mdTom Forbes2019-06-151-3/+3
|/ /
* | Merge branch '4354-lock-memberships-to-ldap-sync-part-1' into 'master'Stan Hu2019-06-141-0/+9
|\ \ | | | | | | | | | | | | EE migration port: add app-wide LDAP membership lock field See merge request gitlab-org/gitlab-ce!29302
| * | EE port: add app-wide LDAP membership lock field4354-lock-memberships-to-ldap-sync-part-1Pavel Shutsin2019-06-131-0/+9
| | |
* | | Document CI variable LM_PYTHON_VERSIONFabien Catteau2019-06-141-0/+17
| | | | | | | | | | | | Show how one can switch to Python 3.5.