Fix firewall port for HTTPS (#1)

Fix port number for HTTPS from 6443 to 443.
pull/683/head
Andi Büchler 2021-12-09 21:31:27 +01:00 committed by GitHub
parent 79a3f79b27
commit ff8fb42724
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ Create a firewall rule that allows external SSH, ICMP, and HTTPS:
```
gcloud compute firewall-rules create kubernetes-the-hard-way-allow-external \
--allow tcp:22,tcp:6443,icmp \
--allow tcp:22,tcp:443,icmp \
--network kubernetes-the-hard-way \
--source-ranges 0.0.0.0/0
```