Versions Compared

Key

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

...

  • Make sure you have gpg keys to sign the release artifacts
  • Sign the artifacts:
    • cd ../kafka-0.10.0.0-rc0
    • Run the following commands (you may have to specify the gpg key to use via the `-u` option if you have multiple keys; if you forgot your key signature id, use `gpg --list-sigs <your-name>`):
      • for file in *.tgz; do gpg --armor --output $file.asc --detach-sig $file; done
        for file in *.tgz; do gpg --verify $file.asc $file; done
        for file in *.tgz; do gpg --print-md md5 $file > $file.md5; done
        for file in *.tgz; do gpg --print-md sha1 $file > $file.sha1; done
        for file in *.tgz; do gpg --print-md sha512 $file > $file.sha2; done
    • cd ..

...