mirror of
https://github.com/rancher/rancher-docs.git
synced 2026-09-26 21:18:04 +00:00
Various typo fixes
This commit is contained in:
@@ -14,7 +14,7 @@ weight: 303
|
||||
<p style="padding: 8px">Please submit possible security issues by emailing <a href="mailto:security@rancher.com">security@rancher.com</a></p>
|
||||
</td>
|
||||
<td width="30%" style="border: none;">
|
||||
<h4>Announcments</h4>
|
||||
<h4>Announcements</h4>
|
||||
<p style="padding: 8px">Subscribe to the <a href="https://forums.rancher.com/c/announcements">Rancher announcements forum</a> for release updates.</p>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
@@ -49,7 +49,7 @@ On desktop systems the Syslinux boot menu can be switched to graphical mode by a
|
||||
|
||||
#### Recovery console
|
||||
|
||||
`rancher.recovery=true` will start a single user `root` bash session as easily in the boot process, with no network, or persitent filesystem mounted. This can be used to fix disk problems, or to debug your system.
|
||||
`rancher.recovery=true` will start a single user `root` bash session as easily in the boot process, with no network, or persistent filesystem mounted. This can be used to fix disk problems, or to debug your system.
|
||||
|
||||
#### Enable/Disable sshd
|
||||
|
||||
@@ -61,7 +61,7 @@ On desktop systems the Syslinux boot menu can be switched to graphical mode by a
|
||||
|
||||
#### Autologin console
|
||||
|
||||
`rancher.autologin=<tty...>` will automatically log in the sepcified console - common values are `tty1`, `ttyS0` and `ttyAMA0` - depending on your platform.
|
||||
`rancher.autologin=<tty...>` will automatically log in the specified console - common values are `tty1`, `ttyS0` and `ttyAMA0` - depending on your platform.
|
||||
|
||||
#### Enable/Disable hypervisor service auto-enable
|
||||
|
||||
|
||||
@@ -119,7 +119,7 @@ $ ros config set rancher.system_docker.bip 172.19.0.0/16
|
||||
|
||||
_Available as of v1.4.x_
|
||||
|
||||
The default path of system-docker logs is `/var/log/system-docker.log`. If you want to write the system-docker logs to a separate partition,
|
||||
The default path of system-docker logs is `/var/log/system-docker.log`. If you want to write the system-docker logs to a separate partition,
|
||||
e.g. [RANCHER_OEM partition]({{< baseurl >}}/os/v1.x/en/about/custom-partition-layout/#use-rancher-oem-partition), you can try `rancher.defaults.system_docker_logs`:
|
||||
|
||||
```
|
||||
@@ -170,11 +170,11 @@ Status: Downloaded newer image for alpine:latest
|
||||
|
||||
_Available as of v1.5.0_
|
||||
|
||||
When RancherOS is booted, you start with a User Docker service that is running in System Docker. With v1.5.0, RancherOS has the ability to create additional User Docker services that can run at the same time.
|
||||
When RancherOS is booted, you start with a User Docker service that is running in System Docker. With v1.5.0, RancherOS has the ability to create additional User Docker services that can run at the same time.
|
||||
|
||||
#### Terminology
|
||||
|
||||
Throughout the rest of this documentation, we may simplify to use these terms when describing Docker.
|
||||
Throughout the rest of this documentation, we may simplify to use these terms when describing Docker.
|
||||
|
||||
| Terminology | Definition |
|
||||
|-----------------------|--------------------------------------------------|
|
||||
@@ -184,13 +184,13 @@ Throughout the rest of this documentation, we may simplify to use these terms wh
|
||||
|
||||
#### Pre-Requisites
|
||||
|
||||
User Docker must be set as Docker 17.12.1 or earlier. If it's a later Docker version, it will produce errors when creating a user defined network in System Docker.
|
||||
User Docker must be set as Docker 17.12.1 or earlier. If it's a later Docker version, it will produce errors when creating a user defined network in System Docker.
|
||||
|
||||
```
|
||||
$ ros engine switch docker-17.12.1-ce
|
||||
```
|
||||
|
||||
You will need to create a user-defined network, which will be used when creating the Other User Docker.
|
||||
You will need to create a user-defined network, which will be used when creating the Other User Docker.
|
||||
|
||||
```
|
||||
$ system-docker network create --subnet=172.20.0.0/16 dind
|
||||
@@ -204,7 +204,7 @@ In order to create another User Docker, you will use `ros engine create`. Curren
|
||||
$ ros engine create otheruserdockername --network=dind --fixed-ip=172.20.0.2
|
||||
```
|
||||
|
||||
After the Other User Docker service is created, users can query this service like other services.
|
||||
After the Other User Docker service is created, users can query this service like other services.
|
||||
|
||||
```
|
||||
$ ros service list
|
||||
@@ -215,13 +215,13 @@ disabled volume-nfs
|
||||
enabled otheruserdockername
|
||||
```
|
||||
|
||||
You can use `ros service up` to start the Other User Docker service.
|
||||
You can use `ros service up` to start the Other User Docker service.
|
||||
|
||||
```
|
||||
$ ros service up otheruserdockername
|
||||
```
|
||||
|
||||
After the Other User Docker service is running, you can interact with it just like you can use the built-in User Docker. You would need to append `-<SERVICE_NAME>` to `docker`.
|
||||
After the Other User Docker service is running, you can interact with it just like you can use the built-in User Docker. You would need to append `-<SERVICE_NAME>` to `docker`.
|
||||
|
||||
```
|
||||
$ docker-otheruserdockername ps -a
|
||||
@@ -229,7 +229,7 @@ $ docker-otheruserdockername ps -a
|
||||
|
||||
#### SSH into the Other User Docker container
|
||||
|
||||
When creating the Other User Docker, you can set an external SSH port so you can SSH into the Other User Docker container in System Docker. By using `--ssh-port` and adding ssh keys with `--authorized-keys`, you can set up this optional SSH port.
|
||||
When creating the Other User Docker, you can set an external SSH port so you can SSH into the Other User Docker container in System Docker. By using `--ssh-port` and adding ssh keys with `--authorized-keys`, you can set up this optional SSH port.
|
||||
|
||||
```
|
||||
$ ros engine create --help
|
||||
@@ -248,7 +248,7 @@ When using `--authorized-keys`, you will need to put the key file in one of the
|
||||
/home/
|
||||
```
|
||||
|
||||
RancherOS will generate a random password for each Other User Docker container, which can be viewed in the container logs. If you do not set any SSH keys, the password can be used.
|
||||
RancherOS will generate a random password for each Other User Docker container, which can be viewed in the container logs. If you do not set any SSH keys, the password can be used.
|
||||
|
||||
```
|
||||
$ system-docker logs otheruserdockername
|
||||
@@ -259,7 +259,7 @@ password: xCrw6fEG
|
||||
======================================
|
||||
```
|
||||
|
||||
In System Docker, you can SSH into any Other Uesr Docker Container using `ssh`.
|
||||
In System Docker, you can SSH into any Other User Docker Container using `ssh`.
|
||||
|
||||
```
|
||||
$ system-docker ps
|
||||
@@ -274,7 +274,7 @@ $ ssh root@<OTHERUSERDOCKER_CONTAINER_IP>
|
||||
|
||||
#### Removing any Other User Docker Service
|
||||
|
||||
We recommend using `ros engine rm` to remove any Other User Docker service.
|
||||
We recommend using `ros engine rm` to remove any Other User Docker service.
|
||||
|
||||
```
|
||||
$ ros engine rm otheruserdockername
|
||||
|
||||
@@ -232,7 +232,7 @@ rancher:
|
||||
scan_ssid: 1
|
||||
```
|
||||
|
||||
When adding in WiFi access, you do not need a system reboot, you only need to restart the `network` service in System Docker.
|
||||
When adding in WiFi access, you do not need a system reboot, you only need to restart the `network` service in System Docker.
|
||||
|
||||
```
|
||||
$ sudo system-docker restart network
|
||||
@@ -244,13 +244,13 @@ $ sudo system-docker restart network
|
||||
|
||||
_Available as of v1.5_
|
||||
|
||||
In order to support 4G-LTE, 4G-LTE module will need to be connected to the motherboard and to get a good signal, an external atenna will need to be added. You can assemble such a device, which supports USB interface and SIM cards slot:
|
||||
In order to support 4G-LTE, 4G-LTE module will need to be connected to the motherboard and to get a good signal, an external antenna will need to be added. You can assemble such a device, which supports USB interface and SIM cards slot:
|
||||
|
||||

|
||||
|
||||
In order to use RancherOS, you will need to use the ISO built for 4G-LTE support. This ISO has a built-in `modem-manager` service and is available with each release.
|
||||
In order to use RancherOS, you will need to use the ISO built for 4G-LTE support. This ISO has a built-in `modem-manager` service and is available with each release.
|
||||
|
||||
After booting the ISO, there will be a 4G NIC, such as `wwan0`. Use the following `cloud-config` to set the APN parameter.
|
||||
After booting the ISO, there will be a 4G NIC, such as `wwan0`. Use the following `cloud-config` to set the APN parameter.
|
||||
|
||||
```yaml
|
||||
rancher:
|
||||
@@ -266,4 +266,4 @@ After any configuration changes, restart the `modem-manager` service to apply th
|
||||
$ sudo system-docker restart modem-manager
|
||||
```
|
||||
|
||||
> **Note:** Currently, RancherOS has some built-in rules in `udev` rules to allow RancherOS to recognize specific 4G devices, but there are additional vendors that may be missing. If you need to add these in, please file an issue.
|
||||
> **Note:** Currently, RancherOS has some built-in rules in `udev` rules to allow RancherOS to recognize specific 4G devices, but there are additional vendors that may be missing. If you need to add these in, please file an issue.
|
||||
|
||||
@@ -3,7 +3,7 @@ title: Digital Ocean
|
||||
weight: 107
|
||||
---
|
||||
|
||||
RancherOS is avaliable in the Digital Ocean portal. RancherOS is a member of container distributions and you can find it easily.
|
||||
RancherOS is available in the Digital Ocean portal. RancherOS is a member of container distributions and you can find it easily.
|
||||
|
||||
>**Note**
|
||||
>Deploying to Digital Ocean will incur charges.
|
||||
|
||||
Reference in New Issue
Block a user