mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-22 19:31:44 +00:00
rewrite links pointing to godoc
This commit is contained in:
parent
59da05efdf
commit
1cd9478346
@ -1,6 +1,6 @@
|
|||||||
# Kubernetes
|
# Kubernetes
|
||||||
|
|
||||||
[](https://godoc.org/github.com/GoogleCloudPlatform/kubernetes) [](https://travis-ci.org/GoogleCloudPlatform/kubernetes) [](https://coveralls.io/r/GoogleCloudPlatform/kubernetes)
|
[](https://godoc.org/k8s.io/kubernetes) [](https://travis-ci.org/GoogleCloudPlatform/kubernetes) [](https://coveralls.io/r/GoogleCloudPlatform/kubernetes)
|
||||||
|
|
||||||
### Are you ...
|
### Are you ...
|
||||||
* Interested in learning more about using Kubernetes? Please see our user-facing documentation on [kubernetes.io](http://kubernetes.io)
|
* Interested in learning more about using Kubernetes? Please see our user-facing documentation on [kubernetes.io](http://kubernetes.io)
|
||||||
|
@ -206,7 +206,7 @@ func (s *Scaler) Stop() error {
|
|||||||
var (
|
var (
|
||||||
counts = flag.String("counts", "", "replica counts, must have at least one (csv)")
|
counts = flag.String("counts", "", "replica counts, must have at least one (csv)")
|
||||||
times = flag.String("times", "", "times to set replica counts relative to UTC following ISO 8601 (csv)")
|
times = flag.String("times", "", "times to set replica counts relative to UTC following ISO 8601 (csv)")
|
||||||
userLabels = flag.String("labels", "", "replication controller labels, syntax should follow https://godoc.org/github.com/GoogleCloudPlatform/kubernetes/pkg/labels#Parse")
|
userLabels = flag.String("labels", "", "replication controller labels, syntax should follow https://godoc.org/k8s.io/kubernetes/pkg/labels#Parse")
|
||||||
startNow = flag.Bool("now", false, "times are relative to now not 0:00 UTC (for demos)")
|
startNow = flag.Bool("now", false, "times are relative to now not 0:00 UTC (for demos)")
|
||||||
local = flag.Bool("local", false, "set to true if running on local machine not within cluster")
|
local = flag.Bool("local", false, "set to true if running on local machine not within cluster")
|
||||||
localPort = flag.Int("localport", 8001, "port that kubectl proxy is running on (local must be true)")
|
localPort = flag.Int("localport", 8001, "port that kubectl proxy is running on (local must be true)")
|
||||||
|
@ -54,7 +54,7 @@ A pod containing containers that specify readiness probes will also report the R
|
|||||||
|
|
||||||
## Container Probes
|
## Container Probes
|
||||||
|
|
||||||
A [Probe](https://godoc.org/github.com/GoogleCloudPlatform/kubernetes/pkg/api/v1#Probe) is a diagnostic performed periodically by the kubelet on a container. Specifically the diagnostic is one of three [Handlers](https://godoc.org/github.com/GoogleCloudPlatform/kubernetes/pkg/api/v1#Handler):
|
A [Probe](https://godoc.org/k8s.io/kubernetes/pkg/api/v1#Probe) is a diagnostic performed periodically by the kubelet on a container. Specifically the diagnostic is one of three [Handlers](https://godoc.org/k8s.io/kubernetes/pkg/api/v1#Handler):
|
||||||
|
|
||||||
* `ExecAction`: executes a specified command inside the container expecting on success that the command exits with status code 0.
|
* `ExecAction`: executes a specified command inside the container expecting on success that the command exits with status code 0.
|
||||||
* `TCPSocketAction`: performs a tcp check against the container's IP address on a specified port expecting on success that the port is open.
|
* `TCPSocketAction`: performs a tcp check against the container's IP address on a specified port expecting on success that the port is open.
|
||||||
@ -73,7 +73,7 @@ Currently, the kubelet optionally performs two independent diagnostics on runnin
|
|||||||
|
|
||||||
## Container Statuses
|
## Container Statuses
|
||||||
|
|
||||||
More detailed information about the current (and previous) container statuses can be found in [ContainerStatuses](https://godoc.org/github.com/GoogleCloudPlatform/kubernetes/pkg/api/v1#PodStatus). The information reported depends on the current [ContainerState](https://godoc.org/github.com/GoogleCloudPlatform/kubernetes/pkg/api/v1#ContainerState), which may be Waiting, Running, or Terminated.
|
More detailed information about the current (and previous) container statuses can be found in [ContainerStatuses](https://godoc.org/k8s.io/kubernetes/pkg/api/v1#PodStatus). The information reported depends on the current [ContainerState](https://godoc.org/k8s.io/kubernetes/pkg/api/v1#ContainerState), which may be Waiting, Running, or Terminated.
|
||||||
|
|
||||||
## RestartPolicy
|
## RestartPolicy
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user