Releases: kubernetes-sigs/apiserver-builder-alpha
Releases · kubernetes-sigs/apiserver-builder-alpha
v0.1-alpha.2
Merge pull request #89 from pwittrock/master Minor fixes: fail if copyright is missing. Update refernce-docs vendor.
v0.1-alpha.1
- fix issues with doc generation
- fix issue with create group version resource where it would fail if the version already existed
v0.1-alpha.0 (Breaking Changes)
This release has the following notable changes:
- Breaking change: Drastically reworked command structure for
apiserver-boot
. Commands are now under command groups.init
->init repo
build
->build executables
create-resource
->create group version resource
- No longer support
--domain
flag
- No longer support
run
->run local
- Support for running as an aggregated apiserver
- Vendored src not packaged in a tar
v0.0-alpha.18
- Package vendored deps using a tar
- Make --domain flag optional for creating resources
v0.0-alpha.17
- Support for non-namespaced resources
v0.0-alpha.16
- Stop generating clients for non-resources types
go test ./pkg/...
should work now
v0.0-alpha.15 **Breaking Changes**
Breaking Changes:
- Code generators now generate for kubernetes 1.7 apiserver code, must update glide deps
To set the new versions in your glide.yaml
- package: k8s.io/apimachinery
version: cff8db64dd5b6fb0166dc2cf36e39c7ff4fe48c8
- package: k8s.io/apiserver
version: 2e70bac0745c7f8e506f7f3e432d040c55d5718a
- package: k8s.io/client-go
version: 36b51953e6efc7779fe27c14258d78573de4e0de
To update all glide deps:
glide update --strip-vendor --force
- The Storage API Create function now has an addtional boolean argument
- Subresources need to have this argument added to their Create function
- Custom storage resources need to have this argument added to their Create function
main.go
now takes 2 additional arguments - the title for the openapi spec and the version
v0.0-alpha.14
- New apiserver-boot command: create-container which will build a container with the apiserver and controller-manager binaries included