Move sub-blueprints to cells-*
What does this MR do?
Briefly describe Move sub-blueprints to cells-*
Contents not updated, will be done in follow-up MR
Done using the following script:
script
require 'fileutils'
def copy(old, new)
FileUtils.cp(old, new)
end
def create_redirect(old, new)
system %Q{bundle exec rake "gitlab:docs:redirect[#{old}, #{new}]"}
end
DIR = File.expand_path('doc/architecture/blueprints/cells', __dir__)
Dir[File.join(DIR, 'pods-*.md')].each do |old_path|
new_path = File.join(DIR, File.basename(old_path).sub('pods-', 'cells-'))
copy(old_path, new_path)
create_redirect(old_path, new_path)
end
=> Creating new redirect from /Users/tkuah/code/gdk-ee/gitlab/doc/architecture/blueprints/cells/pods-feature-admin-area.md to cells-feature-admin-area.md
=> Creating new redirect from /Users/tkuah/code/gdk-ee/gitlab/doc/architecture/blueprints/cells/pods-feature-agent-for-kubernetes.md to cells-feature-agent-for-kubernetes.md
=> Creating new redirect from /Users/tkuah/code/gdk-ee/gitlab/doc/architecture/blueprints/cells/pods-feature-backups.md to cells-feature-backups.md
=> Creating new redirect from /Users/tkuah/code/gdk-ee/gitlab/doc/architecture/blueprints/cells/pods-feature-ci-runners.md to cells-feature-ci-runners.md
=> Creating new redirect from /Users/tkuah/code/gdk-ee/gitlab/doc/architecture/blueprints/cells/pods-feature-container-registry.md to cells-feature-container-registry.md
=> Creating new redirect from /Users/tkuah/code/gdk-ee/gitlab/doc/architecture/blueprints/cells/pods-feature-contributions-forks.md to cells-feature-contributions-forks.md
=> Creating new redirect from /Users/tkuah/code/gdk-ee/gitlab/doc/architecture/blueprints/cells/pods-feature-dashboard.md to cells-feature-dashboard.md
=> Creating new redirect from /Users/tkuah/code/gdk-ee/gitlab/doc/architecture/blueprints/cells/pods-feature-data-migration.md to cells-feature-data-migration.md
=> Creating new redirect from /Users/tkuah/code/gdk-ee/gitlab/doc/architecture/blueprints/cells/pods-feature-database-sequences.md to cells-feature-database-sequences.md
=> Creating new redirect from /Users/tkuah/code/gdk-ee/gitlab/doc/architecture/blueprints/cells/pods-feature-git-access.md to cells-feature-git-access.md
=> Creating new redirect from /Users/tkuah/code/gdk-ee/gitlab/doc/architecture/blueprints/cells/pods-feature-gitlab-pages.md to cells-feature-gitlab-pages.md
=> Creating new redirect from /Users/tkuah/code/gdk-ee/gitlab/doc/architecture/blueprints/cells/pods-feature-global-search.md to cells-feature-global-search.md
=> Creating new redirect from /Users/tkuah/code/gdk-ee/gitlab/doc/architecture/blueprints/cells/pods-feature-graphql.md to cells-feature-graphql.md
=> Creating new redirect from /Users/tkuah/code/gdk-ee/gitlab/doc/architecture/blueprints/cells/pods-feature-organizations.md to cells-feature-organizations.md
=> Creating new redirect from /Users/tkuah/code/gdk-ee/gitlab/doc/architecture/blueprints/cells/pods-feature-personal-namespaces.md to cells-feature-personal-namespaces.md
=> Creating new redirect from /Users/tkuah/code/gdk-ee/gitlab/doc/architecture/blueprints/cells/pods-feature-router-endpoints-classification.md to cells-feature-router-endpoints-classification.md
=> Creating new redirect from /Users/tkuah/code/gdk-ee/gitlab/doc/architecture/blueprints/cells/pods-feature-schema-changes.md to cells-feature-schema-changes.md
=> Creating new redirect from /Users/tkuah/code/gdk-ee/gitlab/doc/architecture/blueprints/cells/pods-feature-secrets.md to cells-feature-secrets.md
=> Creating new redirect from /Users/tkuah/code/gdk-ee/gitlab/doc/architecture/blueprints/cells/pods-feature-snippets.md to cells-feature-snippets.md
=> Creating new redirect from /Users/tkuah/code/gdk-ee/gitlab/doc/architecture/blueprints/cells/pods-feature-template.md to cells-feature-template.md
=> Creating new redirect from /Users/tkuah/code/gdk-ee/gitlab/doc/architecture/blueprints/cells/pods-feature-uploads.md to cells-feature-uploads.md
Related issues
Author's checklist
-
Optional. Consider taking the GitLab Technical Writing Fundamentals course. -
Follow the: -
If you're adding or changing the main heading of the page (H1), ensure that the product tier badge is added. -
If you are a GitLab team member, request a review based on: - The documentation page's metadata.
- The associated Technical Writer.
If you are a GitLab team member and only adding documentation, do not add any of the following labels:
~"frontend"~"backend"~"type::bug"~"database"
These labels cause the MR to be added to code verification QA issues.
Reviewer's checklist
Documentation-related MRs should be reviewed by a Technical Writer for a non-blocking review, based on Documentation Guidelines and the Style Guide.
If you aren't sure which tech writer to ask, use roulette or ask in the #docs Slack channel.
-
If the content requires it, ensure the information is reviewed by a subject matter expert. - Technical writer review items:
-
Ensure docs metadata is present and up-to-date. -
Ensure the appropriate labels are added to this MR. -
Ensure a release milestone is set. - If relevant to this MR, ensure content topic type principles are in use, including:
-
The headings should be something you'd do a Google search for. Instead of Default behavior, say something likeDefault behavior when you close an issue. -
The headings (other than the page title) should be active. Instead of Configuring GDK, say something likeConfigure GDK. -
Any task steps should be written as a numbered list. - If the content still needs to be edited for topic types, you can create a follow-up issue with the docs-technical-debt label.
-
-
-
Review by assigned maintainer, who can always request/require the reviews above. Maintainer's review can occur before or after a technical writer review.
Edited by Thong Kuah