Merge pull request #35083 from akankshakumari393/patch-3

Omit `apt-transport-https` from install
pull/35337/head
Kubernetes Prow Robot 2022-07-25 01:18:34 -07:00 committed by GitHub
commit 6e9da5382c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 2 deletions

View File

@ -110,9 +110,19 @@ For example, to download version {{< param "fullversion" >}} on Linux, type:
```shell
sudo apt-get update
sudo apt-get install -y apt-transport-https ca-certificates curl
sudo apt-get install -y ca-certificates curl
```
{{< note >}}
If you use Debian 9 (stretch) or earlier you would also need to install `apt-transport-https`:
```shell
sudo apt-get install -y apt-transport-https
```
{{< /note >}}
2. Download the Google Cloud public signing key:
```shell