Initial commit

This commit is contained in:
Donny
2019-04-22 20:46:32 +08:00
commit 49ab8aadd1
25441 changed files with 4055000 additions and 0 deletions

17
vendor/k8s.io/test-infra/prow/config/build_status.go generated vendored Normal file
View File

@@ -0,0 +1,17 @@
package config
import "time"
type BuildStatus struct {
DB DB `json:"db, omitempty"`
}
type DB struct {
IP string `json:"ip, omitempty"`
Port string `json:"port, omitempty"`
Name string `json:"name, omitempty"`
Username string `json:"username, omitempty"`
Password string `json:"password, omitempty"`
Active int `json:"active, omitempty"`
Idle int `json:"idle, omitempty"`
IdleTimeout time.Duration `json:"idleTimeout, omitempty"`
}