Skip to content
This repository has been archived by the owner on Feb 9, 2024. It is now read-only.

[6.2.x] configurable HTTP timeout for monitoring checks. #752

Merged
merged 2 commits into from Oct 4, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
254 changes: 166 additions & 88 deletions Gopkg.lock

Large diffs are not rendered by default.

11 changes: 7 additions & 4 deletions Gopkg.toml
Expand Up @@ -32,8 +32,7 @@ ignored = [

[[override]]
name = "github.com/gravitational/trace"
#version = "1.1.8"
revision = "3822600263648f166b2b2a14bc693e92947af68b"
version = "=1.1.8"

[[override]]
name = "github.com/mitchellh/go-ps"
Expand Down Expand Up @@ -65,15 +64,19 @@ ignored = [

[[constraint]]
name = "github.com/gravitational/satellite"
version = "=5.5.4"
version = "=6.1.1"

[[constraint]]
name = "github.com/miekg/dns"
version = "=v1.1.19"

[[constraint]]
name = "github.com/xtgo/set"
version = "1.0.0"

[[constraint]]
name = "github.com/gogo/protobuf"
version = "=v1.1.0"
version = "=v1.1.1"

[[override]]
name = "golang.org/x/net"
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -42,7 +42,7 @@ RELEASE_OUT ?=
TELEPORT_TAG = 3.2.7
# TELEPORT_REPOTAG adapts TELEPORT_TAG to the teleport tagging scheme
TELEPORT_REPOTAG := v$(TELEPORT_TAG)
PLANET_TAG := 6.2.0-$(K8S_VER_SUFFIX)
PLANET_TAG := 6.2.1-$(K8S_VER_SUFFIX)
PLANET_BRANCH := $(PLANET_TAG)
K8S_APP_TAG := $(GRAVITY_TAG)
TELEKUBE_APP_TAG := $(GRAVITY_TAG)
Expand Down
3 changes: 3 additions & 0 deletions lib/testutils/auth.go
Expand Up @@ -273,6 +273,9 @@ func (s *AuthClient) GenerateHostCert(key []byte, hostID, nodeName string, princ
func (s *AuthClient) GenerateUserCert(key []byte, user string, ttl time.Duration, compatibility string) ([]byte, error) {
return nil, nil
}
func (c *AuthClient) GenerateUserCerts(key []byte, user string, ttl time.Duration, compatibility string) (ssh []byte, tls []byte, err error) {
return nil, nil, nil
}
func (s *AuthClient) GetSignupTokenData(token string) (user string, otpQRCode []byte, e error) {
return "", nil, nil
}
Expand Down
24 changes: 24 additions & 0 deletions vendor/github.com/armon/go-metrics/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions vendor/github.com/armon/go-metrics/.travis.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 20 additions & 0 deletions vendor/github.com/armon/go-metrics/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

91 changes: 91 additions & 0 deletions vendor/github.com/armon/go-metrics/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions vendor/github.com/armon/go-metrics/const_unix.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions vendor/github.com/armon/go-metrics/const_windows.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions vendor/github.com/armon/go-metrics/go.mod

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

46 changes: 46 additions & 0 deletions vendor/github.com/armon/go-metrics/go.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.