Find the Best Cosmetic Hospitals

Explore trusted cosmetic hospitals and make a confident choice for your transformation.

โ€œInvest in yourself โ€” your confidence is always worth it.โ€

Explore Cosmetic Hospitals

Start your journey today โ€” compare options in one place.

Gitlab Lab – Plan – Step-by-Step Tutorial: GitLab Cloud

Hereโ€™s a detailed step-by-step tutorial for each option in the GitLab Plan Section (GitLab Cloud, v18.0) โ€” tailored for project planning, agile workflows, documentation, and requirements management.

Recommended Planning Flow in GitLab (when starting a project)

StepPhaseGitLab FeaturePurpose
1๏ธโƒฃDefine WHAT needs to be built๐ŸŸฉ RequirementsCapture business, product, or regulatory needs. (Ultimate only)
2๏ธโƒฃPlan HOW and WHEN to deliver๐ŸŸฆ MilestonesGroup deliverables into release or delivery goals (like v1.0, Sprint 1)
3๏ธโƒฃTimebox into cycles๐ŸŸจ IterationsSprint-style cadences within milestones (Premium+)
4๏ธโƒฃBreak down into actionable work๐ŸŸง IssuesTasks, bugs, enhancements linked to iterations/milestones
5๏ธโƒฃVisualize & track๐ŸŸช Issue BoardsKanban-style tracking, filtered by label, assignee, milestone, iteration

๐Ÿงญ Practical Real-World Sequence

โœ… When to Start with Requirements:

  • Product-led development
  • Regulated domains (finance, healthcare, aerospace)
  • Want formal validation/testing of features

โœ… When to Start with Milestones:

  • Feature list is informal or evolving
  • Milestone = release or sprint (without strict formal requirements)

โœ… When to Start with Issues:

  • You’re working in a fast prototype or MVP mode
  • Immediate backlog execution without long-term roadmap

๐Ÿงญ Step-by-Step Tutorial: GitLab Cloud โ€“ Plan Section (GitLab 18.0)


๐Ÿ“ 1. Issues โ€“ Track Bugs, Tasks, Features

โœ… Purpose:

Track unit-level work like bugs, user stories, enhancements.

๐Ÿš€ Steps:

  1. Go to your GitLab project.
  2. Click Plan โ†’ Issues.
  3. Click โ€œNew Issueโ€.
  4. Fill in:
    • Title: โ€œFix login bugโ€
    • Description: Markdown supported. You can add checklist:
      - [ ] Reproduce bug
      - [ ] Fix session token
    • Assign to a team member
    • Add Labels, Milestone, Due Date
  5. Optional: use slash commands in comments:
    • /assign @devuser
    • /label ~bug ~frontend
    • /estimate 3h

๐Ÿ’ก Tips:

  • Link issues to Merge Requests via keywords in MR:
    Closes #123
  • Use time tracking:
    /spend 2h, /estimate 4h

๐Ÿงฎ 2. Issue Boards โ€“ Agile Kanban Views

โœ… Purpose:

Track status (To Do, In Progress, Done) visually using drag-and-drop.

๐Ÿš€ Steps:

  1. Go to Plan โ†’ Issue Boards.
  2. By default, youโ€™ll see one board. Click Edit Board or New Board to create a new one.
  3. Add Lists based on Labels (e.g.):
    • To Do โ†’ ~todo
    • Doing โ†’ ~doing
    • Done โ†’ ~done
  4. Drag issues from one list to another to update status (updates the label automatically).
  5. Use filters for Assignee, Milestone, Iteration.

๐Ÿ’ก Tips:

  • Create separate boards for different teams or epics.
  • Use label automation in .gitlab-ci.yml to auto-update status.

๐Ÿ“… 3. Milestones โ€“ Track Progress by Release or Goal

โœ… Purpose:

Bundle issues under a goal or time window (e.g., Sprint 5, Release v1.0).

๐Ÿš€ Steps:

  1. Navigate to Plan โ†’ Milestones.
  2. Click New Milestone.
  3. Add:
    • Title: “Release v1.0”
    • Start Date / Due Date
    • Description
  4. While creating/editing issues, assign them to this milestone.
  5. Return to Milestones list to view:
    • Issue completion progress bar
    • Open vs closed issues
    • Burnup chart

๐Ÿ’ก Tips:

  • Use milestones for product releases or monthly OKRs.
  • Combine with boards or iterations.

๐Ÿ” 4. Iterations โ€“ Agile Sprint Planning (Premium+)

NOTE – Creating a Iteration can be done at GROUP level only. Not at the project Level

โœ… Purpose:

Timeboxed cycles (sprints) for iterative development.

๐Ÿš€ Steps:

Requires GitLab Premium or Ultimate

  1. Navigate to Plan โ†’ Iterations.
  2. Click New Iteration or Create Cadence for auto-generated recurring sprints.
  3. Fill in:
    • Title: โ€œSprint 11โ€
    • Start Date / End Date
    • Optional: description
  4. Assign issues to this iteration.
  5. View iteration velocity, completed issues, and upcoming work.

๐Ÿ’ก Tips:

  • Use weight in issues for sprint capacity planning.
  • Combine with Issue Boards filtered by iteration.

๐Ÿ“š 5. Wiki โ€“ Built-in Documentation System

SAMPLE – https://gist.github.com/devops-school/f8a88b7305f5ace9b3e9aad0d01b9ccd

โœ… Purpose:

Document project usage, architecture, onboarding, etc.

๐Ÿš€ Steps:

  1. Navigate to Plan โ†’ Wiki.
  2. Click Create your first page (or โ€œNew Pageโ€).
  3. Add:
    • Title: โ€œGetting Startedโ€
    • Content: Markdown supported
    • Commit message
  4. Save page.
  5. Use [link text](PageTitle) for internal wiki linking.

๐Ÿ’ก Tips:

  • Use _sidebar.md to create a custom navigation panel.
  • Git-backed: clone/edit Wiki via Git.

๐Ÿ“‹ 6. Requirements โ€“ Track Formal Product Requirements (Ultimate)

โœ… Purpose:

Define and manage structured requirements, linked to validation/testing.

๐Ÿš€ Steps:

Requires GitLab Ultimate

  1. Navigate to Plan โ†’ Requirements.
  2. Click New Requirement.
  3. Add:
    • Title: โ€œUser must log in with 2FAโ€
    • Description: Clearly define acceptance criteria
  4. Link this requirement to:
    • Issues
    • Merge Requests
    • Validation jobs (via CI test results)
  5. Track test results in GitLab to mark requirement as passed/failed.

๐Ÿ’ก Tips:

  • Best for regulated industries (healthcare, finance).
  • Combine with CI pipeline and test reports to automate validation.

โœ… Summary Table

Menu OptionUse CaseFeature TierKey Actions
IssuesTask, bug, feature trackingFreeCreate, assign, label, time tracking
Issue BoardsKanban/scrum task boardFreeDrag-drop, list by label or milestone
MilestonesGroup by deadline/releaseFreeTrack sprint or release progress
IterationsAgile sprintsPremium+Timeboxed recurring cadences
WikiDocumentationFreeMarkdown-based, Git-backed
RequirementsProduct validationUltimateDefine, trace, validate system requirements

Results

Step-by-Step: How to Create Iterations in GitLab

Thanks for the screenshot! You’re on the Iterations page in GitLab Cloud, but seeing โ€œNo iteration cadences to showโ€ and no visible “Create Iteration” button. This confusion is common โ€” here’s the clarification:


โœ… How Iterations Work in GitLab (v18.0)

In GitLab, you must first create an Iteration Cadence โ€” only then can you define individual iterations (sprints).


๐Ÿงญ Step-by-Step: How to Create Iterations in GitLab

๐Ÿ” Prerequisites:

  • Iterations require GitLab Premium or Ultimate (youโ€™re currently on an Enterprise Trial, so you’re eligible!)
  • You must have Owner or Maintainer permissions in the group/project.

โœ… Step 1: Navigate to Group-Level Iterations (not just project-level)

Iterations must be created at the group level (even if visible in a project).

In your URL:

https://gitlab.com/groups/devopsschoolgroup/-/iterations
Code language: JavaScript (javascript)

OR

  1. Go to: Group > Plan > Iterations
  2. If you see: โ€œNo iteration cadences to showโ€
    ๐Ÿ‘‰ Click “New Iteration Cadence” (usually in upper-right, may be hidden under โ‹ฎ menu on some screens).

โœ… Step 2: Create Iteration Cadence

  • Cadence name: “Bi-weekly Sprint”
  • Start date: (e.g., today)
  • Duration: 1 or 2 weeks (common in agile)
  • Automatic scheduling: Optional, enables rolling iterations
  • Click Create Cadence

โœ… Step 3: Add or Auto-generate Iterations

Once cadence is created:

  1. You can manually add iterations (with name, start & end dates), or
  2. Enable Auto-scheduling in cadence โ†’ GitLab will create recurring sprints.

โœ… Step 4: Assign Issues to Iterations

  • Go to any issue โ†’ Edit
  • Find the Iteration field โ†’ Select from dropdown

Now you can use Iterations in:

  • Boards (filter by iteration)
  • Issue analytics
  • Burndown/velocity charts (Premium+)

๐Ÿ’กTroubleshooting

SymptomFix
“No iteration cadences to show”You’re likely in project-level view. Go to group-level Plan > Iterations
No “New Cadence” buttonEnsure you’re an Owner/Maintainer at group level and using Premium+
Iteration not visible in issueConfirm cadence is active and current iteration overlaps with todayโ€™s date

DevOpsSchool Markdown Reference

SAMPLE – https://gist.github.com/devops-school/f8a88b7305f5ace9b3e9aad0d01b9ccd

Find Trusted Cardiac Hospitals

Compare heart hospitals by city and services โ€” all in one place.

Explore Hospitals
Iโ€™m a DevOps/SRE/DevSecOps/Cloud Expert passionate about sharing knowledge and experiences. I have worked at <a href="https://www.cotocus.com/">Cotocus</a>. I share tech blog at <a href="https://www.devopsschool.com/">DevOps School</a>, travel stories at <a href="https://www.holidaylandmark.com/">Holiday Landmark</a>, stock market tips at <a href="https://www.stocksmantra.in/">Stocks Mantra</a>, health and fitness guidance at <a href="https://www.mymedicplus.com/">My Medic Plus</a>, product reviews at <a href="https://www.truereviewnow.com/">TrueReviewNow</a> , and SEO strategies at <a href="https://www.wizbrand.com/">Wizbrand.</a> Do you want to learn <a href="https://www.quantumuting.com/">Quantum Computing</a>? <strong>Please find my social handles as below;</strong> <a href="https://www.rajeshkumar.xyz/">Rajesh Kumar Personal Website</a> <a href="https://www.youtube.com/TheDevOpsSchool">Rajesh Kumar at YOUTUBE</a> <a href="https://www.instagram.com/rajeshkumarin">Rajesh Kumar at INSTAGRAM</a> <a href="https://x.com/RajeshKumarIn">Rajesh Kumar at X</a> <a href="https://www.facebook.com/RajeshKumarLog">Rajesh Kumar at FACEBOOK</a> <a href="https://www.linkedin.com/in/rajeshkumarin/">Rajesh Kumar at LINKEDIN</a> <a href="https://www.wizbrand.com/rajeshkumar">Rajesh Kumar at WIZBRAND</a> <a href="https://www.rajeshkumar.xyz/dailylogs">Rajesh Kumar DailyLogs</a>

Related Posts

Best Tools for Software Composition Analysis (SCA)

Hereโ€™s a clear and professional explanation of the three related concepts you asked about โ€” all of which are critical parts of secure software development, especially in…

Read More

Top 10 AI Code Review Tools in 2026: Features, Pros, Cons & Comparison

Introduction In 2026, AI code review tools have become essential for developers aiming to enhance code quality, streamline workflows, and accelerate software delivery. These tools leverage advanced…

Read More

Top 10 Expense Management Tools in 2026: Features, Pros, Cons & Comparison

Introduction Expense management tools are critical for businesses of all sizes in 2026 as they help streamline financial processes, improve budgeting, ensure compliance, and enhance financial visibility….

Read More

Top 10 Web Application Firewall (WAF) Tools in 2026: Features, Pros, Cons & Comparison

Introduction In the rapidly evolving landscape of cybersecurity, Web Application Firewalls (WAFs) have become a critical component in defending web applications from malicious attacks such as SQL…

Read More

Top 10 Endpoint Management Tools in 2026: Features, Pros, Cons & Comparison

Introduction In 2026, businesses of all sizes are increasingly reliant on a variety of devicesโ€”laptops, desktops, mobile devices, and other endpointsโ€”that connect to their networks. With the…

Read More

Top 11 Best Apps for Education

Are you tired of traditional learning methods? Do you want to explore new ways of learning? Then you have come to the right place! In this article,…

Read More
Subscribe
Notify of
guest
0 Comments
Newest
Oldest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x