# Steps to Release Minikube ## Build a new ISO * http://go/minikube:build-iso * Ensure that you are logged in (top right) * For `ISO_VERSION`, use the intended release version * For `ISO_BUCKET`, use `minikube/iso` * Click *Build* * Wait ~45 minutes ## Update Makefile Once the ISO has built, update the Makefile: ```shell VERSION_MINOR ISO_VERSION ``` ## Run Local Integration Test Run the integration tests, making sure that all tests pass: ```shell make integration ``` ## Submit PR to update the Makefile Pay careful attention to integration test failures from Jenkins. If there are test flakes, open or find the appropriate Issue, and add a PR comment with links to the appropriate issues. ## Build the Release Run this command: ```shell BUILD_IN_DOCKER=y make cross checksum ``` ## Submit PR to update Release Notes and `releases.json` Then Collect the release notes, and edit them as necessary: ```shell hack/release_notes.sh ``` Merge output into CHANGELOG.md file. See [this PR](https://github.com/kubernetes/minikube/pull/3175) for an example. Add an entry **to the top** of deploy/minikube/releases.json with the **version** and **checksums**. Send a PR. This file controls the auto update notifications in minikube. Only add entries to this file that should be released to all users (no pre-release, alpha or beta releases). The file must be uploaded to GCS before notifications will go out. That step comes at the end. The schema for this file can be found in deploy/minikube/schema.json. An automated test to verify the schema runs in Travis before each submit. ## Upload to GCS: ```shell gsutil cp out/minikube-linux-amd64 gs://minikube/releases/$RELEASE/ gsutil cp out/minikube-linux-amd64.sha256 gs://minikube/releases/$RELEASE/ gsutil cp out/minikube-darwin-amd64 gs://minikube/releases/$RELEASE/ gsutil cp out/minikube-darwin-amd64.sha256 gs://minikube/releases/$RELEASE/ gsutil cp out/minikube-windows-amd64.exe gs://minikube/releases/$RELEASE/ gsutil cp out/minikube-windows-amd64.exe.sha256 gs://minikube/releases/$RELEASE/ ``` ## Tag the Release Run a command like this to tag it locally: `git tag -a v0.2.0 -m "0.2.0 Release"`. And run a command like this to push the tag: `git push upstream v0.2.0`. ## Create a Release in Github Create a new release based on your tag, like [this one](https://github.com/kubernetes/minikube/releases/tag/v0.2.0). Upload the files, and calculated checksums. ## Upload the releases.json file to GCS This step makes the new release trigger update notifications in old versions of Minikube. Use this command from a clean git repo: ```shell gsutil cp deploy/minikube/releases.json gs://minikube/releases.json ``` ## Mark the release as `latest` in GCS: ```shell gsutil cp -r gs://minikube/releases/$RELEASE/* gs://minikube/releases/latest/ ``` ## Package managers which include minikube These are downstream packages that are being maintained by others and how to upgrade them to make sure they have the latest versions | Package Manager | URL | TODO | | --- | --- | --- | | Arch Linux AUR | https://aur.archlinux.org/packages/minikube/ | "Flag as package out-of-date" | Brew Cask | https://github.com/Homebrew/homebrew-cask/blob/master/Casks/minikube.rb | Create a new PR in [Homebrew/homebrew-cask](https://github.com/Homebrew/homebrew-cask) with an updated version and SHA256 #### Updating the arch linux package The Arch Linux AUR is maintained at https://aur.archlinux.org/packages/minikube/. The installer PKGBUILD is hosted in its own repository. The public read-only repository is hosted here `https://aur.archlinux.org/minikube.git` and the private read-write repository is hosted here `ssh://aur@aur.archlinux.org/minikube.git` The repository is tracked in this repo under a submodule `installers/linux/arch_linux`. Currently, its configured to point at the public readonly repository so if you want to push you should run this command to overwrite `git config submodule.archlinux.url ssh://aur@aur.archlinux.org/minikube.git ` To actually update the package, you should bump the version and update the sha512 checksum. You should also run `makepkg --printsrcinfo > .SRCINFO` to update the srcinfo file. You can edit this manually if you don't have `makepkg` on your machine. ## Release Verification After you've finished the release, run this command from the release commit to verify the release was done correctly: `make check-release`. ## Update kubernetes.io docs If there are major changes, please send a PR upstream for this file https://github.com/kubernetes/kubernetes.github.io/blob/master/docs/getting-started-guides/minikube.md in order to keep the getting started guide up to date.