Fix broken links

This commit is contained in:
Traci Morrison 2019-12-06 14:53:22 -05:00
parent 27c1451725
commit 01319b29e7
6 changed files with 22 additions and 15 deletions

View File

@ -151,7 +151,7 @@ The following optional elements can be specified:
- `ca`: (Optional) The path to a root CA public certificate. - `ca`: (Optional) The path to a root CA public certificate.
- `key`: (Optional) The path to a TLS private key. - `key`: (Optional) The path to a TLS private key.
- `cert`: (Optional) The path to a public key certificate. - `cert`: (Optional) The path to a public key certificate.
- `install_options`: (Optional) Additional [DTR install options](https://docs.docker.com/reference/dtr/2.6/cli/install/). - `install_options`: (Optional) Additional DTR install options.
#### engine #### engine
Customizes the installation of Docker Enterprise Engine. Customizes the installation of Docker Enterprise Engine.
@ -231,7 +231,7 @@ The following optional elements can be specified:
- `ca`: Specifies a path to a root CA public certificate. - `ca`: Specifies a path to a root CA public certificate.
- `key`: Specifies a path to a TLS private key. - `key`: Specifies a path to a TLS private key.
- `cert`: Specifies a path to a public key certificate. - `cert`: Specifies a path to a public key certificate.
- `install_options`: Lists additional [UCP install options](https://docs.docker.com/reference/ucp/3.1/cli/install/) - `install_options`: Lists additional UCP install options.
##### Additional UCP configuration options ##### Additional UCP configuration options
Docker Cluster also accepts all UCP configuration options and creates the initial UCP config on Docker Cluster also accepts all UCP configuration options and creates the initial UCP config on
@ -487,7 +487,9 @@ The following aliases are supported by `docker cluster`:
- `Windows Server 1709` - `Windows Server 1709`
- `Windows Server 1803` - `Windows Server 1803`
- `Windows Server 2019` - `Windows Server 2019`
> Note: Make sure the OS you select is [compatible](https://success.docker.com/article/compatibility-matrix) > Note
>
> Make sure the OS you select is [compatible](https://success.docker.com/article/compatibility-matrix)
with the product you're installing. Docker Cluster validates the support during installation. with the product you're installing. Docker Cluster validates the support during installation.
- `instance_type`: Specifies the [AWS instance type](https://aws.amazon.com/ec2/instance-types/) to provision. - `instance_type`: Specifies the [AWS instance type](https://aws.amazon.com/ec2/instance-types/) to provision.
- `key_name`: By default, Docker Cluster creates an [AWS EC2 Key Pair](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-key-pairs.html) and registers it with AWS for the cluster. - `key_name`: By default, Docker Cluster creates an [AWS EC2 Key Pair](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-key-pairs.html) and registers it with AWS for the cluster.
@ -593,3 +595,8 @@ by:
- `prompt: true` - Request the value from the user and do not echo characters - `prompt: true` - Request the value from the user and do not echo characters
as the value is entered. as the value is entered.
- `env`: Obtain the value from an environment variable - `env`: Obtain the value from an environment variable
### Where to go next
* [UCP CLI reference](https://docs.docker.com/reference/)
* [DTR CLI reference](https://docs.docker.com/reference/)

View File

@ -57,7 +57,6 @@ To install UCP:
1. Use ssh to log in to the host where you want to install UCP. 1. Use ssh to log in to the host where you want to install UCP.
2. Run the following command: 2. Run the following command:
```none ```none
# Pull the latest version of UCP # Pull the latest version of UCP
docker image pull {{ page.ucp_org }}/{{ page.ucp_repo }}:{{ page.ucp_version }} docker image pull {{ page.ucp_org }}/{{ page.ucp_repo }}:{{ page.ucp_version }}
@ -69,11 +68,7 @@ To install UCP:
--host-address <node-ip-address> \ --host-address <node-ip-address> \
--interactive --interactive
``` ```
This runs the install command in interactive mode, so that you're prompted for any necessary configuration values. To find what other options are available in the install command, check the [reference documentation](https://docs.docker.com/reference/).
This runs the install command in interactive mode, so that you're
prompted for any necessary configuration values.
To find what other options are available in the install command, check the
[reference documentation](/reference/ucp/3.1/cli/install.md).
> Custom Container Networking Interface (CNI) plugins > Custom Container Networking Interface (CNI) plugins
> >

View File

@ -26,7 +26,7 @@ When you join a node to a cluster, you specify its role: manager or worker.
Manager nodes also run all Docker Engine - Enterprise components in a replicated way, so Manager nodes also run all Docker Engine - Enterprise components in a replicated way, so
by adding additional manager nodes, you're also making the cluster highly by adding additional manager nodes, you're also making the cluster highly
available. available.
[Learn more about the Docker Engine - Enterprise architecture.](/enterprise/docker-ee-architecture.md) [Learn more about the Docker Engine - Enterprise architecture.](https://docs.docker.com/ee/docker-ee-architecture/)
- **Worker**: Worker nodes receive and execute your services and applications. - **Worker**: Worker nodes receive and execute your services and applications.
Having multiple worker nodes allows you to scale the computing capacity of Having multiple worker nodes allows you to scale the computing capacity of

View File

@ -86,4 +86,4 @@ assigned to the `nginx` namespace.
## Where to go next ## Where to go next
- [Deploy an ingress controller for a Kubernetes app](deploy-ingress-controller.md) - [Deploy a Sample Application with Ingress](https://docs.docker.com/ee/ucp/kubernetes/cluster-ingress/ingress/)

View File

@ -96,6 +96,8 @@ https://github.com/containernetworking/cni/releases/tag/
Follow the CNI plugin documentation for specific installation Follow the CNI plugin documentation for specific installation
instructions. instructions.
> Note
>
> While troubleshooting a custom CNI plugin, you may wish to access logs > While troubleshooting a custom CNI plugin, you may wish to access logs
> within the kubelet. Connect to a UCP manager node and run > within the kubelet. Connect to a UCP manager node and run
> `$ docker logs ucp-kubelet`. > `$ docker logs ucp-kubelet`.
@ -115,10 +117,12 @@ ucp-metrics-nwt2z 3/3 Running 0 22m 10.32.0.
weave-net-wgvcd 2/2 Running 0 8m 172.31.6.95 manager-01 <none> weave-net-wgvcd 2/2 Running 0 8m 172.31.6.95 manager-01 <none>
``` ```
> **Note**: The above example deployment uses Weave. If you are using an alternative > Note
>
> The above example deployment uses Weave. If you are using an alternative
> CNI plugin, look for the relevant name and review its status. > CNI plugin, look for the relevant name and review its status.
## Where to go next ## Where to go next
- [Make your Cluster Highly Available](https://docs.docker.com/ee/ucp/admin/install/#step-6-join-manager-nodes) - [Make your Cluster Highly Available](https://docs.docker.com/ee/ucp/admin/install/#step-6-join-manager-nodes)
- [Install an Ingress Controller on Kubernetes](ee/ucp/kubernetes/layer-7-routing/) - [Deploy a Sample Application with Ingress](https://docs.docker.com/ee/ucp/kubernetes/cluster-ingress/ingress/)

View File

@ -39,7 +39,7 @@ Instances must have the following [AWS Identity and Access Management](https://d
### Cluster Configuration ### Cluster Configuration
- In addition to your existing [install flags](https://docs.docker.com/reference/ucp/3.1/cli/install/) the cloud provider flag `--cloud-provider=aws` is required at install time. - In addition to your existing install flags, the cloud provider flag `--cloud-provider=aws` is required at install time.
- The cloud provider can also be enabled post-install through the UCP config. The `ucp-agent` needs to be updated to propogate the new config, as described in [UCP configuration file](https://docs.docker.com/ee/ucp/admin/configure/ucp-configuration-file/#inspect-and-modify-existing-configuration). - The cloud provider can also be enabled post-install through the UCP config. The `ucp-agent` needs to be updated to propogate the new config, as described in [UCP configuration file](https://docs.docker.com/ee/ucp/admin/configure/ucp-configuration-file/#inspect-and-modify-existing-configuration).
``` ```
@ -137,4 +137,5 @@ The AWS console shows a volume has been provisioned having a matching name with
## Where to go next ## Where to go next
- [Deploy an Ingress Controller on Kubernetes](/ee/ucp/kubernetes/layer-7-routing/) - [Deploy an Ingress Controller on Kubernetes](/ee/ucp/kubernetes/layer-7-routing/)
- [Discover Network Encryption on Kubernetes](/ee/ucp/kubernetes/kubernetes-network-encryption/) - [Discover Network Encryption on Kubernetes](/ee/ucp/kubernetes/kubernetes-network-encryption/)
- [UCP CLI reference](https://docs.docker.com/reference/)