Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Release process

...

Preparing for release

Email dev@ambari.apache.org mailing list expressing your interest in volunteering to be the release manager for Apache Ambari X.Y.Z release:

...

Code Block
#update the KEYS file
gpg2 --list-keys jluniya@apache.org >> KEYS
gpg2 --armor --export jluniya@apache.org >> KEYS
 
# commit the changes to both trunk and new release branch
git commit
 
# push the updated KEYS file to https://dist.apache.org/repos/dist/release/ambari/
svn co https://dist.apache.org/repos/dist/release/ambari ambari_svn
cp {path_to_keys_file}/KEYS ambari_svn/KEYS
svn update KEYS
svn commit -m "Updating KEYS for Ambari"

Setup Build

Setup Jenkins Job for the new branch on http://builds.apache.org 

Creating Release Candidate

Note: The first release candidate is rc0. The following documented process assumes rc0, but replace it with the appropriate rc number as required. 

Checkout the release branch

...