Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update prober.go #42

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions care/prober.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ type Prober interface {
type httpProber struct {
HealthPath string
HealthScheme string
HealthPort int
Method string
Headers map[string]string
Body string
Expand All @@ -51,6 +52,7 @@ type httpProber struct {
func (p *httpProber) RegisterFlags(fs *pflag.FlagSet) {
fs.StringVar(&p.HealthPath, "health-path", "/healthz", "url path to probed")
fs.StringVar(&p.HealthScheme, "health-schem", "https", "http scheme for prober")
fs.IntVar(&p.HealthPort, "health-port", int, "http port for prober")
fs.StringVar(&p.Method, "health-req-method", "GET", "http request method")
fs.StringVar(&p.Body, "health-req-body", "", "body to send for health checker")
fs.StringToStringVar(&p.Headers, "health-req-headers", map[string]string{}, "http request headers")
Expand Down Expand Up @@ -83,6 +85,7 @@ func (p *httpProber) Probe(host, port string) error {
},
}
}
if p.HealthPort != nil { port = p.HealthPort }
uri := &url.URL{
Scheme: p.HealthScheme,
Host: net.JoinHostPort(host, port),
Expand Down