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 Rajesh Kumar, a DevOps, SRE, DevSecOps, Cloud, and Platform Engineering expert passionate about sharing practical knowledge, real-world experiences, and industry best practices. I have worked at Cotocus and regularly write about technology, travel, investing, health, product reviews, and digital marketing through my various platforms. I publish technical articles at DevOps School, travel stories at Holiday Landmark, stock market insights at Stocks Mantra, health and fitness guidance at My Medic Plus, product reviews at TrueReviewNow, and SEO and digital marketing strategies at Wizbrand.

Related Posts

Top 10 Integration Platform as a Service (iPaaS) Tools in 2026: Features, Pros, Cons & Comparison

Introduction In todayโ€™s fast-paced digital world, businesses are leveraging multiple software applications, cloud services, and data sources to streamline operations. However, the challenge lies in integrating these…

Read More

IReviewed Blog’s Post List

truereviewnow.com is a portal for product review and rating. truereviewnow.com is having very in-depth analysis of review and testimony of Mobiles, Laptop, Electronics Gadgets, Airports, Boradbands, Movies…

Read More

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

Introduction In 2026, social media continues to be a cornerstone of digital marketing strategies, shaping how businesses connect with their audiences. With millions of users interacting on…

Read More

Top 10 Drone Software Tools in 2026: Features, Pros, Cons & Comparison

Introduction In 2026, drones are not only revolutionizing industries like agriculture, logistics, filmmaking, and construction, but also the way we collect and process data. Drone software is…

Read More

Top 10 AI Survey Automation Tools in 2026: Features, Pros, Cons & Comparison

Introduction In 2026, AI Survey Automation Tools are transforming the way businesses, researchers, and organizations gather and analyze feedback. Traditional survey platforms often relied on static questions…

Read More

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

Introduction In 2026, AI animation tools are revolutionizing how creators, businesses, and educators bring stories to life, making animation accessible to all skill levels. These tools leverage…

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