-
Notifications
You must be signed in to change notification settings - Fork 534
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
Probes - boilerplate and first probe #474
Conversation
Probes definition can be found in kubernetes#474 The feature is guarded by the enable-probes flag, will be enabling it gradually. Ref. kubernetes/kubernetes#76012
/assign @wojtek-t |
Probes definition can be found in kubernetes#474 The feature is guarded by the enable-probes flag, will be enabling it gradually. Ref. kubernetes/kubernetes#76012
Probes definition can be found in kubernetes#474 The feature is guarded by the enable-probes flag, will be enabling it gradually. Ref. kubernetes/kubernetes#76012
Probes definition can be found in kubernetes#474 The feature is guarded by the enable-probes flag, will be enabling it gradually. Ref. kubernetes/kubernetes#76012
probes/Dockerfile
Outdated
WORKDIR /go/src/$gopkg | ||
RUN CGO_ENABLED=0 go build -o /workspace/probes ./cmd | ||
|
||
FROM golang:1.12-alpine |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why de we need alpine?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Alpine is 3 times smaller: ~100MB vs ~300MB.
Probes definition can be found in kubernetes#474 The feature is guarded by the enable-probes flag, will be enabling it gradually. Ref. kubernetes/kubernetes#76012
Probes definition can be found in kubernetes#474 The feature is guarded by the enable-probes flag, will be enabling it gradually. Ref. kubernetes/kubernetes#76012
Probes definition can be found in kubernetes#474 The feature is guarded by the enable-probes flag, will be enabling it gradually. Ref. kubernetes/kubernetes#76012
Probes definition can be found in kubernetes#474 The feature is guarded by the enable-probes flag, will be enabling it gradually. Ref. kubernetes/kubernetes#76012
Probes are simple jobs running inside kubernetes cluster measuring SLIs that could not be measured through other means. Ref. kubernetes/kubernetes#76012
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: mm4tt, wojtek-t The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Probes definition can be found in kubernetes#474 The feature is guarded by the enable-probes flag, will be enabling it gradually. Ref. kubernetes/kubernetes#76012
Probes definition can be found in kubernetes#474 The feature is guarded by the enable-probes flag, will be enabling it gradually. Ref. kubernetes/kubernetes#76012
Probes definition can be found in kubernetes#474 The feature is guarded by the enable-probes flag, will be enabling it gradually. Ref. kubernetes/kubernetes#76012
Probes definition can be found in kubernetes#474 The feature is guarded by the enable-probes flag, will be enabling it gradually. Ref. kubernetes/kubernetes#76012
Probes definition can be found in kubernetes#474 The feature is guarded by the enable-probes flag, will be enabling it gradually. Ref. kubernetes/kubernetes#76012
Probes definition can be found in kubernetes#474 The feature is guarded by the enable-probes flag, will be enabling it gradually. Ref. kubernetes/kubernetes#76012
Probes are simple jobs running inside kubernetes cluster measuring SLIs that could not be measured through other means.
This PR introduces probes boilerplate and implements two probes for measuring the in-cluster network latency SLI.
Ref. kubernetes/kubernetes#76012