From dc26d124c632e329a600510ce942615e136360f2 Mon Sep 17 00:00:00 2001 From: Dotan Hofling Date: Sun, 17 Nov 2024 00:44:21 +0200 Subject: [PATCH] master is depricated use control-plane (https://kubernetes.io/docs/reference/labels-annotations-taints/) --- Labs/02-Deployments-Imperative/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Labs/02-Deployments-Imperative/README.md b/Labs/02-Deployments-Imperative/README.md index bd45315..588b4a2 100644 --- a/Labs/02-Deployments-Imperative/README.md +++ b/Labs/02-Deployments-Imperative/README.md @@ -110,7 +110,7 @@ KubeDNS is running at https://192.168.49.2:8443/api/v1/namespaces/kube-system/se # Programmatically get the port and the IP CLUSTER_IP=$(kubectl get nodes \ - --selector=node-role.kubernetes.io/master \ + --selector=node-role.kubernetes.io/control-plane \ -o jsonpath='{$.items[*].status.addresses[?(@.type=="InternalIP")].address}') NODE_PORT=$(kubectl get -o \