There are two main steps to complete:
Checkout the branch from which you want to release. For a major or minor release,
you will need to create a new release-vX.Y
branch based on the target Calico version.
Make sure the branch is in a good state, e.g. Update any pins in glide.yaml, create PR, ensure tests pass and merge.
You should have no local changes and tests should be passing.
-
Choose a version e.g.
v1.0.1
-
Create the release. This will generate release notes, a tag, build the code, and verify the artifacts.
make VERSION=v1.0.1 release
-
Publish the release.
make VERSION=v1.0.1 release-publish
-
Publish the release on GitHub by following the link printed to screen.
- Copy the tag description or the generated release notes file, press edit, and paste it into the release body.
- Remove or clean up any messy commits - e.g. libcalico-go updates.
- Title the release the same as the tag - e.g.
v1.0.1
- Press "Publish release"
-
If this is the latest stable release, perform the following step to publish the
latest
images. Do not perform this step for patches to older releases.make VERSION=<version> release-publish-latest
-
Choose a version e.g.
v1.1.0
-
Create the release. This will generate release notes, a tag, build the code, and verify the artifacts.
make VERSION=v1.1.0 PREVIOUS_RELEASE=v1.0.0 release
-
Publish the release.
make VERSION=v1.1.0 release-publish
-
Publish the release on GitHub by following the link printed to screen.
- Copy the tag description or the generated release notes file, press edit, and paste it into the release body.
- Remove or clean up any messy commits - e.g. libcalico-go updates.
- Title the release the same as the tag - e.g.
v1.1.0
- Press "Publish release"
-
If this is the latest stable release, perform the following step to publish the
latest
images. Do not perform this step for patches to older releases.make VERSION=<version> release-publish-latest
After completing the above make release
process, you should produce and publish
the deb/rpm artifacts.
Run make deb rpm
to build Debian and RPM packages for a release.
For an official release, also build and publish the deb and rpm packages with the following steps. These steps assume you have the correct GPG keys and accounts set up to sign and publish the packages.
Perform the following steps in both the dist/xenial
and dist/trust
directories.
-
Change into the desired
dist/<distro>
directory. -
Sign the package and
.changes
file withdebsign -k<your key ID> *_source.changes
-
Upload the signed package and
.changes
file withdput ppa:project-calico/calico-X.Y *_source.changes
replacing
X.Y
with the actual series numbers.
It can take a long time for Launchpad to build and publish binary packages. Usually about an hour, but occasionally many hours.
The PPA is only ready for use when the PPA package detailspage shows all green ticks in its Build Status column.
-
Sign the RPMs
-
Copy the signed RPMs to
/usr/share/nginx/html/rpm/calico-X.Y/x86_64
on the binaries server.
For more information, see the full package release process