Skip to content
This repository has been archived by the owner on Oct 21, 2020. It is now read-only.

lib v3.0.0-beta.2

Pre-release
Pre-release
Compare
Choose a tag to compare
@wongma7 wongma7 released this 30 Aug 15:09
· 1025 commits to master since this release

Compatible with kubernetes v1.5.x, v1.6.x, v1.7.x
Requires client-go 42a1245
Requires apimachinery 728b986
Requires api e24ed68

  • Use functional options pattern for NewProvisionController (#80)
    • When options are unspecified, the following defaults take effect:
const (
   defaultResyncPeriod                  = 15 * time.Second
   defaultExponentialBackOffOnError     = true
   defaultCreateProvisionedPVRetryCount = 5
   defaultCreateProvisionedPVInterval   = 10 * time.Second
   defaultFailedProvisionThreshold      = 15
   defaultFailedDeleteThreshold         = 15
   defaultLeaseDuration                 = 15 * time.Second
   defaultRenewDeadline                 = 10 * time.Second
   defaultRetryPeriod                   = 2 * time.Second
   defaultTermLimit                     = 30 * time.Second
)
  • Add util package
  • Add gidallocator package for allocating GIDs to NFS, GlusterFS PVs