Releasing NNF Software
NNF Software Overview
The following repositories comprise the NNF Software and each have their own versions. There is a
hierarchy, since nnf-deploy
packages the individual components together using submodules.
Each component under nnf-deploy
needs to be released first, then nnf-deploy
can be updated to
point to those release versions, then nnf-deploy
itself can be updated and released.
The documentation repo (NearNodeFlash/NearNodeFlash.github.io) is released separately and is not
part of nnf-deploy
, but it should match the version number of nnf-deploy
. Release this like the
other components.
- HewlettPackard/lustre-csi-driver
- NearNodeFlash/lustre-fs-operator
- NearNodeFlash/nnf-mfu
- NearNodeFlash/nnf-ec
- NearNodeFlash/nnf-sos
- NearNodeFlash/nnf-dm
Overview of release-all tool
release-all.sh
automates most of the steps of releasing NNF software and adds additional checks for common issues.
Assumptions
master
ormain
branch for each repository contains tested software and documentation ready to be released.- You've installed the GitHub CLI tool,
gh
. - This tool requires a GH_TOKEN environment variable containing a
repo
scope classic token.
Steps
Run the steps in this order
Note: You almost always want to use the -R option to focus the
phase
activity to a specific repo.
-
List Repos: Get the ordered list of repo names to use with -R option in subsequent steps. This is referred to as
repo-list
> Pro tip: Keep this list in a separate window for easy viewing ./release-all.sh -L -
Check Vendoring: For each repo's master/main branch; determine whether any of them need to be re-vendored. > Note: Ensure each repo is error-free before proceeding to the next repo in
repo-list
-
Create Trial Release Branch: Create the new release branch, merge master/main to that release branch, but don't push it yet. The point of this step is to look for merge conflicts between master/main and the release branch.
-
Generate Release: For each repo in
repo-list
, proceed through the following steps in sequence before moving on to the next repo. > Note: The next steps use the gh(1) GitHub CLI tool and require a GH_TOKEN environment variable containing a 'repo' scope classic token.-
If the Create Trial Release Branch had no errors:
-
If Create Trial Release Branch was unable to auto merge, manually fix and merge the release branch and re-run this phase on that existing branch:
cd workingspace/repo # Manually merge the changes from master/main to the release branch go mod tidy go mod vendor git status # confirm all issues have been address git add <all affected files> git commit -s # take the default commit message, don't bother editing it.
Then re-run this phase on this branch, telling the tool to pick up where you left off:
-
Create PR for the pushed release branch:
- Merge PR for the pushed release branch:
Note: Do NOT manually merge the PR, let
release-all.sh
merge it.
- Tag the release:
-
Finalize the release notes
Finalize the release by updating the nnf-deploy
release notes to include the release notes from all submodules that were modified by this release. Do this after the release steps have been completed for all repositories, including the NearNodeFlash.github.io repository.
-
Generate complete release notes for the specified
nnf-deploy
release for review: Note: If this release does not include a new release of the NearNodeFlash.github.io docs, then specify-D
to skip the docs. -
Generate and commit the release notes to the specified
nnf-deploy
release:
Compare release manifests
Compare the new NNF release manifest to a previous NNF release manifest. This can be useful for a variety of purposes. For example, this is a quick way to check for any problems in the release or to see which submodules were updated in the release.
The output:
Peruse the release manifest differences:
Quickly see which submodules were updated between the releases:
Quickly determine the scope of the differences between the releases: