Merge branch 'master' into v0.35.0
commit
63be8e4781
|
@ -1,5 +1,9 @@
|
|||
If this is a bug report, please include:
|
||||
<!-- If you are reporting a bug, please include:
|
||||
|
||||
- [ ] How to replicate the error, including the exact `minikube` command-line used.
|
||||
- [ ] The full output of the command that failed
|
||||
- [ ] The output of `minikube logs`
|
||||
- [ ] Which operating system version was used
|
||||
|
||||
Thank you! Please write about your experience below this line: --!>
|
||||
|
||||
- [ ] How to replicate the error, including the exact command-lines used.
|
||||
- [ ] The full output of the command that failed
|
||||
- [ ] The operating system name and version used
|
||||
|
|
4
Makefile
4
Makefile
|
@ -14,8 +14,8 @@
|
|||
|
||||
# Bump these on release - and please check ISO_VERSION for correctness.
|
||||
VERSION_MAJOR ?= 0
|
||||
VERSION_MINOR ?= 34
|
||||
VERSION_BUILD ?= 1
|
||||
VERSION_MINOR ?= 35
|
||||
VERSION_BUILD ?= 0
|
||||
# Default to .0 for higher cache hit rates, as build increments typically don't require new ISO versions
|
||||
ISO_VERSION ?= v$(VERSION_MAJOR).$(VERSION_MINOR).0
|
||||
|
||||
|
|
|
@ -98,25 +98,19 @@ These are downstream packages that are being maintained by others and how to upg
|
|||
| 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 | The release job creates a new PR in [Homebrew/homebrew-cask](https://github.com/Homebrew/homebrew-cask) with an updated version and SHA256, double check that it's created.
|
||||
|
||||
#### 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.
|
||||
HEADS UP: Brew automation is currently broken: https://github.com/kubernetes/minikube/issues/3694 - send a PR out yourself.
|
||||
|
||||
## Verification
|
||||
|
||||
After you've finished the release, run this command from the release commit to verify the release was done correctly:
|
||||
`make check-release`.
|
||||
Verify release checksums by running`make check-release`
|
||||
|
||||
## Update kubernetes.io docs
|
||||
## Update docs
|
||||
|
||||
If there are major changes, please send a PR to update the official setup guide: [Running Kubernetes Locally via Minikube](https://kubernetes.io/docs/setup/minikube/)
|
||||
If there are major changes, please send a PR to update [Running Kubernetes Locally via Minikube(https://kubernetes.io/docs/setup/minikube/)
|
||||
|
||||
## Announce
|
||||
## Announce!
|
||||
|
||||
Places we generally announce releases:
|
||||
|
||||
- #minikube on Slack
|
||||
- minikube-dev, minikube-users mailing list
|
||||
|
|
Loading…
Reference in New Issue