Update dependencies

Change Kubernetes dependency to v1.17.0
Change csi-lib-utils to v0.7.0
This commit is contained in:
saad-ali
2019-12-30 16:30:48 -08:00
parent fba1459681
commit 97cb2c2214
385 changed files with 79010 additions and 37929 deletions

View File

@@ -46,6 +46,10 @@ type Compressor interface {
// coding header. The result must be static; the result cannot change
// between calls.
Name() string
// EXPERIMENTAL: if a Compressor implements
// DecompressedSize(compressedBytes []byte) int, gRPC will call it
// to determine the size of the buffer allocated for the result of decompression.
// Return -1 to indicate unknown size.
}
var registeredCompressor = make(map[string]Compressor)