From ff8fb42724d2b8cbc8b3582891ebb681fe921a36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andi=20B=C3=BCchler?= Date: Thu, 9 Dec 2021 21:31:27 +0100 Subject: [PATCH] Fix firewall port for HTTPS (#1) Fix port number for HTTPS from 6443 to 443. --- docs/03-compute-resources.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/03-compute-resources.md b/docs/03-compute-resources.md index a5402bb..b70322f 100644 --- a/docs/03-compute-resources.md +++ b/docs/03-compute-resources.md @@ -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 ```