mirror of
https://github.com/coredns/coredns.git
synced 2025-12-10 12:25:11 -05:00
Update client-go to v10.0.0 (Kubernetes 1.13) (#2382)
* Update client-go to v10.0.0 (Kubernetes 1.13) This fix updates client-go to v10.0.0 which matches Kubernetes 1.13 (released several days ago). Other changes in Gopkg.yaml: - Updated apimachinary, api, klog, yaml associated with k8s version go dep will not automatically match the version. - Added [prune] field (otherwise go dep will not prune automatically) Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Updated Gopkg.lock Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Updated vendor for client-go v10.0.0 Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
This commit is contained in:
24
vendor/github.com/eapache/go-resiliency/.gitignore
generated
vendored
24
vendor/github.com/eapache/go-resiliency/.gitignore
generated
vendored
@@ -1,24 +0,0 @@
|
||||
# Compiled Object files, Static and Dynamic libs (Shared Objects)
|
||||
*.o
|
||||
*.a
|
||||
*.so
|
||||
|
||||
# Folders
|
||||
_obj
|
||||
_test
|
||||
|
||||
# Architecture specific extensions/prefixes
|
||||
*.[568vq]
|
||||
[568vq].out
|
||||
|
||||
*.cgo1.go
|
||||
*.cgo2.c
|
||||
_cgo_defun.c
|
||||
_cgo_gotypes.go
|
||||
_cgo_export.*
|
||||
|
||||
_testmain.go
|
||||
|
||||
*.exe
|
||||
*.test
|
||||
*.prof
|
||||
6
vendor/github.com/eapache/go-resiliency/.travis.yml
generated
vendored
6
vendor/github.com/eapache/go-resiliency/.travis.yml
generated
vendored
@@ -1,6 +0,0 @@
|
||||
language: go
|
||||
|
||||
go:
|
||||
- 1.2
|
||||
- 1.6
|
||||
- 1.10
|
||||
11
vendor/github.com/eapache/go-resiliency/CHANGELOG.md
generated
vendored
11
vendor/github.com/eapache/go-resiliency/CHANGELOG.md
generated
vendored
@@ -1,11 +0,0 @@
|
||||
# Changelog
|
||||
|
||||
#### Version 1.1.0 (2018-03-26)
|
||||
|
||||
- Improve documentation and fix some typos.
|
||||
- Bump CI to ensure we support newer Golang versions.
|
||||
- Add `IsEmpty()` method on `Semaphore`.
|
||||
|
||||
#### Version 1.0.0 (2015-02-13)
|
||||
|
||||
Initial release.
|
||||
21
vendor/github.com/eapache/go-resiliency/README.md
generated
vendored
21
vendor/github.com/eapache/go-resiliency/README.md
generated
vendored
@@ -1,21 +0,0 @@
|
||||
go-resiliency
|
||||
=============
|
||||
|
||||
[](https://travis-ci.org/eapache/go-resiliency)
|
||||
[](https://godoc.org/github.com/eapache/go-resiliency)
|
||||
[](https://eapache.github.io/conduct.html)
|
||||
|
||||
Resiliency patterns for golang.
|
||||
Based in part on [Hystrix](https://github.com/Netflix/Hystrix),
|
||||
[Semian](https://github.com/Shopify/semian), and others.
|
||||
|
||||
Currently implemented patterns include:
|
||||
- circuit-breaker (in the `breaker` directory)
|
||||
- semaphore (in the `semaphore` directory)
|
||||
- deadline/timeout (in the `deadline` directory)
|
||||
- batching (in the `batcher` directory)
|
||||
- retriable (in the `retrier` directory)
|
||||
|
||||
Follows semantic versioning using https://gopkg.in/ - import from
|
||||
[`gopkg.in/eapache/go-resiliency.v1`](https://gopkg.in/eapache/go-resiliency.v1)
|
||||
for guaranteed API stability.
|
||||
34
vendor/github.com/eapache/go-resiliency/breaker/README.md
generated
vendored
34
vendor/github.com/eapache/go-resiliency/breaker/README.md
generated
vendored
@@ -1,34 +0,0 @@
|
||||
circuit-breaker
|
||||
===============
|
||||
|
||||
[](https://travis-ci.org/eapache/go-resiliency)
|
||||
[](https://godoc.org/github.com/eapache/go-resiliency/breaker)
|
||||
[](https://eapache.github.io/conduct.html)
|
||||
|
||||
The circuit-breaker resiliency pattern for golang.
|
||||
|
||||
Creating a breaker takes three parameters:
|
||||
- error threshold (for opening the breaker)
|
||||
- success threshold (for closing the breaker)
|
||||
- timeout (how long to keep the breaker open)
|
||||
|
||||
```go
|
||||
b := breaker.New(3, 1, 5*time.Second)
|
||||
|
||||
for {
|
||||
result := b.Run(func() error {
|
||||
// communicate with some external service and
|
||||
// return an error if the communication failed
|
||||
return nil
|
||||
})
|
||||
|
||||
switch result {
|
||||
case nil:
|
||||
// success!
|
||||
case breaker.ErrBreakerOpen:
|
||||
// our function wasn't run because the breaker was open
|
||||
default:
|
||||
// some other error
|
||||
}
|
||||
}
|
||||
```
|
||||
24
vendor/github.com/eapache/go-xerial-snappy/.gitignore
generated
vendored
24
vendor/github.com/eapache/go-xerial-snappy/.gitignore
generated
vendored
@@ -1,24 +0,0 @@
|
||||
# Compiled Object files, Static and Dynamic libs (Shared Objects)
|
||||
*.o
|
||||
*.a
|
||||
*.so
|
||||
|
||||
# Folders
|
||||
_obj
|
||||
_test
|
||||
|
||||
# Architecture specific extensions/prefixes
|
||||
*.[568vq]
|
||||
[568vq].out
|
||||
|
||||
*.cgo1.go
|
||||
*.cgo2.c
|
||||
_cgo_defun.c
|
||||
_cgo_gotypes.go
|
||||
_cgo_export.*
|
||||
|
||||
_testmain.go
|
||||
|
||||
*.exe
|
||||
*.test
|
||||
*.prof
|
||||
7
vendor/github.com/eapache/go-xerial-snappy/.travis.yml
generated
vendored
7
vendor/github.com/eapache/go-xerial-snappy/.travis.yml
generated
vendored
@@ -1,7 +0,0 @@
|
||||
language: go
|
||||
|
||||
go:
|
||||
- 1.5.4
|
||||
- 1.6.1
|
||||
|
||||
sudo: false
|
||||
13
vendor/github.com/eapache/go-xerial-snappy/README.md
generated
vendored
13
vendor/github.com/eapache/go-xerial-snappy/README.md
generated
vendored
@@ -1,13 +0,0 @@
|
||||
# go-xerial-snappy
|
||||
|
||||
[](https://travis-ci.org/eapache/go-xerial-snappy)
|
||||
|
||||
Xerial-compatible Snappy framing support for golang.
|
||||
|
||||
Packages using Xerial for snappy encoding use a framing format incompatible with
|
||||
basically everything else in existence. This package wraps Go's built-in snappy
|
||||
package to support it.
|
||||
|
||||
Apps that use this format include Apache Kafka (see
|
||||
https://github.com/dpkp/kafka-python/issues/126#issuecomment-35478921 for
|
||||
details).
|
||||
23
vendor/github.com/eapache/queue/.gitignore
generated
vendored
23
vendor/github.com/eapache/queue/.gitignore
generated
vendored
@@ -1,23 +0,0 @@
|
||||
# Compiled Object files, Static and Dynamic libs (Shared Objects)
|
||||
*.o
|
||||
*.a
|
||||
*.so
|
||||
|
||||
# Folders
|
||||
_obj
|
||||
_test
|
||||
|
||||
# Architecture specific extensions/prefixes
|
||||
*.[568vq]
|
||||
[568vq].out
|
||||
|
||||
*.cgo1.go
|
||||
*.cgo2.c
|
||||
_cgo_defun.c
|
||||
_cgo_gotypes.go
|
||||
_cgo_export.*
|
||||
|
||||
_testmain.go
|
||||
|
||||
*.exe
|
||||
*.test
|
||||
7
vendor/github.com/eapache/queue/.travis.yml
generated
vendored
7
vendor/github.com/eapache/queue/.travis.yml
generated
vendored
@@ -1,7 +0,0 @@
|
||||
language: go
|
||||
sudo: false
|
||||
|
||||
go:
|
||||
- 1.2
|
||||
- 1.3
|
||||
- 1.4
|
||||
16
vendor/github.com/eapache/queue/README.md
generated
vendored
16
vendor/github.com/eapache/queue/README.md
generated
vendored
@@ -1,16 +0,0 @@
|
||||
Queue
|
||||
=====
|
||||
|
||||
[](https://travis-ci.org/eapache/queue)
|
||||
[](https://godoc.org/github.com/eapache/queue)
|
||||
[](https://eapache.github.io/conduct.html)
|
||||
|
||||
A fast Golang queue using a ring-buffer, based on the version suggested by Dariusz Górecki.
|
||||
Using this instead of other, simpler, queue implementations (slice+append or linked list) provides
|
||||
substantial memory and time benefits, and fewer GC pauses.
|
||||
|
||||
The queue implemented here is as fast as it is in part because it is *not* thread-safe.
|
||||
|
||||
Follows semantic versioning using https://gopkg.in/ - import from
|
||||
[`gopkg.in/eapache/queue.v1`](https://gopkg.in/eapache/queue.v1)
|
||||
for guaranteed API stability.
|
||||
Reference in New Issue
Block a user