Skip to content

Commit 4cfcef4

Browse files
mayastor-borsAbhinandan-Purkait
mayastor-bors
andcommitted
Merge #1817
1817: docs: refactor signpost header r=Abhinandan-Purkait a=Abhinandan-Purkait - Update signpost header - Update dev activity dashboard Co-authored-by: Abhinandan Purkait <purkaitabhinandan@gmail.com>
2 parents b5ac9a7 + 7f314a7 commit 4cfcef4

File tree

5 files changed

+83
-11
lines changed

5 files changed

+83
-11
lines changed

CODE_OF_CONDUCT.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Code of Conduct
2-
<BR>
32

43
## Umbrella Project
5-
OpenEBS is an "umbrella project". Every project, repository and file in the OpenEBS organization adopts and follows the policies found in the Community repo umbrella project files.
6-
<BR>
4+
5+
OpenEBS is an `Umbrella Project` whose governance and policies are defined in the [community](https://github.com/openebs/community/) repository.
6+
These policies are applicable to every sub-project, repository and file existing within the [OpenEBS GitHub organization](https://github.com/openebs/).
77

88
This project follows the [OpenEBS Code of Conduct](https://github.com/openebs/community/blob/HEAD/CODE_OF_CONDUCT.md)

GOVERNANCE.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Governance
2-
<BR>
32

43
## Umbrella Project
5-
OpenEBS is an "umbrella project". Every project, repository and file in the OpenEBS organization adopts and follows the policies found in the Community repo umbrella project files.
6-
<BR>
4+
5+
OpenEBS is an `Umbrella Project` whose governance and policies are defined in the [community](https://github.com/openebs/community/) repository.
6+
These policies are applicable to every sub-project, repository and file existing within the [OpenEBS GitHub organization](https://github.com/openebs/).
77

88
This project follows the [OpenEBS Governance](https://github.com/openebs/community/blob/HEAD/GOVERNANCE.md)

MAINTAINERS.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
# Maintainers
22

3-
<BR>
4-
53
## Umbrella Project
64

7-
OpenEBS is an "umbrella project". Every project, repository and file in the OpenEBS organization adopts and follows the policies found in the Community repo umbrella project files.
8-
<BR>
5+
OpenEBS is an `Umbrella Project` whose governance and policies are defined in the [community](https://github.com/openebs/community/) repository.
6+
These policies are applicable to every sub-project, repository and file existing within the [OpenEBS GitHub organization](https://github.com/openebs/).
97

108
Please refer to the [OpenEBS Maintainers](https://github.com/openebs/community/blob/HEAD/MAINTAINERS.md).

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ $ io-engine-client pool destroy tpool
226226

227227
## Dev Activity dashboard
228228

229-
![Alt](https://repobeats.axiom.co/api/embed/d990adda232a580d4c0fd9b98d6557079bb3bf4a.svg "Repobeats analytics image")
229+
![Alt](https://repobeats.axiom.co/api/embed/6e885b7f40d754b40b3ad3767e88c5b4ae8d12e1.svg "Repobeats analytics image")
230230

231231
## License compliance
232232

RELEASE.md

+74
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
# OpenEBS Mayastor Release Process
2+
3+
This document describes the comprehensive steps for releasing a new version of OpenEBS Mayastor. It is intended for contributors and maintainers to ensure consistency, reproducibility, and transparency in the release process.
4+
5+
## Overview
6+
7+
The release process encompasses the following stages for both major, minor or patch releases:
8+
- Pre-release preparations
9+
- Tag creation
10+
- Build and testing
11+
- Release creation and publication
12+
13+
## 1. Pre-Release Preparations
14+
15+
Before beginning the release, ensure the following prerequisites are met:
16+
- **Release Branch:** A dedicated release branch is created from the `develop` or already exists (e.g., `release/2.7`).
17+
- **Regression Testing:** All nightly regression tests and test suites have been executed successfully on the release branch.
18+
19+
## 2. Tag Creation
20+
21+
Creating git tags is the first formal step to marking the code for release.
22+
23+
### Steps:
24+
25+
- **Tag Relevant Repositories:**
26+
- Create git tags on all relevant repositories (e.g., mayastor, control-plane, and mayastor-extensions).
27+
- This action triggers various GitHub Actions (GAs) automatically, such as generating release artifacts on the mayastor-extensions repository.
28+
29+
## 3. Build and Testing
30+
31+
After tagging, the next step is to build the release artifacts and validate the new release through testing.
32+
33+
### Build Process:
34+
1. **Trigger Build Jobs:**
35+
- Execute the build jobs for the mayastor, control-plane, and mayastor-extensions repositories.
36+
37+
2. **Artifact Generation:**
38+
- Verify that container images and other artifacts are correctly generated by the build pipelines.
39+
40+
### Testing:
41+
1. **Basic Installation:**
42+
- Perform a basic installation using the newly built images to confirm they are functional.
43+
44+
2. **Upgrade Testing:**
45+
- Validate the upgrade process from the previous release version to ensure backward compatibility.
46+
47+
3. **Smoke Tests:**
48+
- Run smoke tests to verify that core functionalities operate as expected.
49+
50+
4. **Regression:**
51+
- Comprehensive testing is done on the tag, if issues or bugs are identified, they are fixed by further releases, ex. patch.
52+
53+
## 4. Release Creation and Publication
54+
55+
Once the builds and tests have passed, create the final release.
56+
57+
### Steps:
58+
1. **Create Release from Tag:**
59+
- Use the generated git tags to create a new release entry for each repository (mayastor, control-plane, and mayastor-extensions).
60+
61+
2. **Update Release Notes:**
62+
- Prepare comprehensive release notes that detail new features, bug fixes, and any known issues.
63+
- Ensure that documentation references are current and accurate.
64+
65+
3. **Attach Artifacts:**
66+
- Confirm that the mayastor kubectl binaries (generated via GitHub Actions on the mayastor-extensions repository) are automatically attached to the release.
67+
- Verify that all other release artifacts are present.
68+
69+
4. **Final Review:**
70+
- Double-check all links, documentation, and artifact references.
71+
- Validate that the release notes complete and accurate.
72+
73+
5. **Publish the Release:**
74+
- Once all verifications are complete, publish the release.

0 commit comments

Comments
 (0)