summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShinya Maeda <shinya@gitlab.com>2017-12-14 22:15:55 +0900
committerShinya Maeda <shinya@gitlab.com>2017-12-14 22:15:55 +0900
commit75652a9b5845f17e7f0e61742675273848924803 (patch)
treec78cefcd00b9da209fcdb13fe159a5fe5af774a3
parent9daeccfb3ae70bd394be21ac2c1ed87b44cef7fe (diff)
downloadgitlab-ce-docs/sm/fix-storage.tar.gz
CI storage document updatedocs/sm/fix-storage
-rw-r--r--doc/development/file_storage.md5
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/development/file_storage.md b/doc/development/file_storage.md
index cf00e24e11a..711c8b469b7 100644
--- a/doc/development/file_storage.md
+++ b/doc/development/file_storage.md
@@ -35,7 +35,10 @@ they are still not 100% standardized. You can see them below:
| Project avatars | yes | uploads/-/system/project/avatar/:id/:filename | `AvatarUploader` | Project |
| Issues/MR Markdown attachments | yes | uploads/:project_path_with_namespace/:random_hex/:filename | `FileUploader` | Project |
| Issues/MR Legacy Markdown attachments | no | uploads/-/system/note/attachment/:id/:filename | `AttachmentUploader` | Note |
-| CI Artifacts (CE) | yes | shared/artifacts/:year_:month/:project_id/:id | `ArtifactUploader` | Ci::Build |
+| CI Artifacts (CE/EE) Latest | yes | shared/artifacts/:disk_hash[0..1]/:disk_hash[2..3]/:disk_hash/:year_:month:date/:job_id/:job_artifact_id | `ArtifactUploader` | Ci::JobArtifact |
+| CI Artifacts (CE/EE) Ver.1 | yes | shared/artifacts/:year_:month/:project_id/:id | `LegacyArtifactUploader` | Ci::Build |
+| CI Traces Latest | yes | builds/:year_:month/:project_id/:job_id.log | None | None |
+| CI Traces Ver.1 | yes | builds/:year_:month/:project.ci_id/:job_id.log | None | None |
| LFS Objects (CE) | yes | shared/lfs-objects/:hex/:hex/:object_hash | `LfsObjectUploader` | LfsObject |
CI Artifacts and LFS Objects behave differently in CE and EE. In CE they inherit the `GitlabUploader`