mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-11 13:02:14 +00:00
Merge pull request #11416 from dchen1107/doc
Fix some TODOs in scratch.md
This commit is contained in:
commit
2be3fc3e80
@ -203,8 +203,9 @@ You have several choices for Kubernetes images:
|
|||||||
- Useful if you are using a private registry.
|
- Useful if you are using a private registry.
|
||||||
- The release contains files such as `./kubernetes/server/bin/kube-apiserver.tar` which
|
- The release contains files such as `./kubernetes/server/bin/kube-apiserver.tar` which
|
||||||
can be converted into docker images using a command like
|
can be converted into docker images using a command like
|
||||||
`tar -C kube-apiserver -c . | docker import - kube-apiserver`
|
`docker load -i kube-apiserver.tar`
|
||||||
- *TODO*: test above command.
|
- You can verify if the image is loaded successfully with the right reposity and tag using
|
||||||
|
command like `docker images`
|
||||||
|
|
||||||
For etcd, you can:
|
For etcd, you can:
|
||||||
- Use images hosted on Google Container Registry (GCR), such as `gcr.io/google_containers/etcd:2.0.12`
|
- Use images hosted on Google Container Registry (GCR), such as `gcr.io/google_containers/etcd:2.0.12`
|
||||||
@ -373,8 +374,18 @@ installation, by following examples given in the Docker documentation.
|
|||||||
### rkt
|
### rkt
|
||||||
|
|
||||||
[rkt](https://github.com/coreos/rkt) is an alternative to Docker. You only need to install one of Docker or rkt.
|
[rkt](https://github.com/coreos/rkt) is an alternative to Docker. You only need to install one of Docker or rkt.
|
||||||
|
The minimum version required is [v0.5.6](https://github.com/coreos/rkt/releases/tag/v0.5.6).
|
||||||
|
|
||||||
*TODO*: how to install and configure rkt.
|
[systemd](http://www.freedesktop.org/wiki/Software/systemd/) is required on your node to run rkt. The
|
||||||
|
minimum version required to match rkt v0.5.6 is
|
||||||
|
[systemd 215](http://lists.freedesktop.org/archives/systemd-devel/2014-July/020903.html).
|
||||||
|
|
||||||
|
[rkt metadata service](https://github.com/coreos/rkt/blob/master/Documentation/networking.md) is also required
|
||||||
|
for rkt networking support. You can start rkt metadata service by using command like
|
||||||
|
`sudo systemd-run rkt metadata-service`
|
||||||
|
|
||||||
|
Then you need to configure your kubelet with flag:
|
||||||
|
- `--container_runtime=rkt`
|
||||||
|
|
||||||
### kubelet
|
### kubelet
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user