Skip to content

v0.0.3

Pre-release
Pre-release
Compare
Choose a tag to compare
@matthewmcnew matthewmcnew released this 21 Aug 19:11

Renamed to kpack

Install

kubectl apply -f release.yaml

Prominent Improvements

  • Private Builders are supported, ImagePullSecrets can be added to the builder type (#46).
apiVersion: build.pivotal.io/v1alpha1
kind: Builder
metadata:
  name: sample-builder
spec:
  image: cloudfoundry/cnb:bionic
  imagePullSecrets: # optional, if not set builder must be public
  - name: builder-secret
  • Subpath on build and image source to support monorepos (#93).
  • Add Ready condition to Image resource (#1).
  • Image builds are scheduled with the exact builder digest (#77).

Note: This release includes breaking changes

  • Migrated packages from github.com/pivotal/build-service-system to github.com/pivotal/kpack.
  • build.status.SHA was replaced with build.status.latestImage.
  • build.spec.tag was migrated to a list of build.spec.tags.
  • build.spec.additionalImageNames was removed, build.spec.tags supports multiple tags.
  • image.spec.disableAdditionalImageNames was migrated to image.spec.imageTaggingStrategy of type 'BuildNumber' or 'None'.