Merge pull request #24770 from clearbjli/patch-1

Wrong argument order for apt-key. Fails on Ubuntu 20.04.1 LTS
This commit is contained in:
Kubernetes Prow Robot
2020-10-29 02:04:59 -07:00
committed by GitHub
@@ -102,7 +102,7 @@ sudo apt-get update && sudo apt-get install -y apt-transport-https ca-certificat
```shell
## Add Docker's official GPG key
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add --keyring /etc/apt/trusted.gpg.d/docker.gpg -
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key --keyring /etc/apt/trusted.gpg.d/docker.gpg add -
```
```shell