Skip to content

Releases: kubernetes-sigs/apiserver-builder-alpha

v0.1-alpha.2

27 Jun 03:53
Compare
Choose a tag to compare
v0.1-alpha.2 Pre-release
Pre-release
Merge pull request #89 from pwittrock/master

Minor fixes: fail if copyright is missing.  Update refernce-docs vendor.

v0.1-alpha.1

27 Jun 00:02
Compare
Choose a tag to compare
v0.1-alpha.1 Pre-release
Pre-release
  • 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)

25 Jun 23:01
Compare
Choose a tag to compare
Pre-release

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
    • run -> run local
  • Support for running as an aggregated apiserver
  • Vendored src not packaged in a tar

v0.0-alpha.18

24 Jun 05:10
Compare
Choose a tag to compare
v0.0-alpha.18 Pre-release
Pre-release
  • Package vendored deps using a tar
  • Make --domain flag optional for creating resources

v0.0-alpha.17

23 Jun 23:27
Compare
Choose a tag to compare
v0.0-alpha.17 Pre-release
Pre-release
  • Support for non-namespaced resources

v0.0-alpha.16

21 Jun 16:59
Compare
Choose a tag to compare
v0.0-alpha.16 Pre-release
Pre-release
  • Stop generating clients for non-resources types
  • go test ./pkg/... should work now

v0.0-alpha.15 **Breaking Changes**

17 Jun 14:33
Compare
Choose a tag to compare
Pre-release

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

15 Jun 03:37
Compare
Choose a tag to compare
v0.0-alpha.14 Pre-release
Pre-release
  • New apiserver-boot command: create-container which will build a container with the apiserver and controller-manager binaries included