From 1b45e5fc84bbf8b355dca182ce2d974c75c579bc Mon Sep 17 00:00:00 2001 From: lee Date: Wed, 23 Apr 2025 12:06:37 -0400 Subject: [PATCH 1/6] typo --- docs/02-jumpbox.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/02-jumpbox.md b/docs/02-jumpbox.md index 09d3da6..53b2751 100644 --- a/docs/02-jumpbox.md +++ b/docs/02-jumpbox.md @@ -14,7 +14,7 @@ All commands will be run as the `root` user. This is being done for the sake of ### Install Command Line Utilities -Now that you are logged into the `jumpbox` machine as the `root` user, you will install the command line utilities that will be used to preform various tasks throughout the tutorial. +Now that you are logged into the `jumpbox` machine as the `root` user, you will install the command line utilities that will be used to perform various tasks throughout the tutorial. ```bash { From 267e9ed292cbe1dbf5b335d5b2b33a1661965754 Mon Sep 17 00:00:00 2001 From: lee Date: Fri, 25 Apr 2025 14:37:41 -0400 Subject: [PATCH 2/6] add .DS_Store to gi --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 793396d..90dc131 100644 --- a/.gitignore +++ b/.gitignore @@ -49,3 +49,4 @@ service-account.pem service-account-csr.json *.swp .idea/ +.DS_Store From 706b62b9e6a297c88ffde625cabf4e03f8e97440 Mon Sep 17 00:00:00 2001 From: lee Date: Fri, 25 Apr 2025 14:38:30 -0400 Subject: [PATCH 3/6] update service accounts link --- ca.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ca.conf b/ca.conf index 90e979e..3c6ecfc 100644 --- a/ca.conf +++ b/ca.conf @@ -26,7 +26,7 @@ O = system:masters # # The Kubernetes Controller Manager leverages a key pair to generate # and sign service account tokens as described in the -# [managing service accounts](https://kubernetes.io/docs/admin/service-accounts-admin/) +# [managing service accounts](https://kubernetes.io/docs/reference/access-authn-authz/service-accounts-admin/ # documentation. [service-accounts] From edbbee6bf6e0a7b218f6cad21fb11f857d3ded08 Mon Sep 17 00:00:00 2001 From: lee Date: Tue, 29 Apr 2025 15:39:22 -0400 Subject: [PATCH 4/6] update links in ca.conf --- ca.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ca.conf b/ca.conf index 3c6ecfc..3d140f8 100644 --- a/ca.conf +++ b/ca.conf @@ -39,9 +39,9 @@ CN = service-accounts # Worker Nodes # -# Kubernetes uses a [special-purpose authorization mode](https://kubernetes.io/docs/admin/authorization/node/) +# Kubernetes uses a [special-purpose authorization mode](https://kubernetes.io/docs/reference/access-authn-authz/node/) # called Node Authorizer, that specifically authorizes API requests made -# by [Kubelets](https://kubernetes.io/docs/concepts/overview/components/#kubelet). +# by [Kubelets](https://kubernetes.io/docs/concepts/architecture/#kubelet). # In order to be authorized by the Node Authorizer, Kubelets must use a credential # that identifies them as being in the `system:nodes` group, with a username # of `system:node:`. From 9ee3dd24c0187b0e0e5ac45e51023c60f3119550 Mon Sep 17 00:00:00 2001 From: lee Date: Tue, 29 Apr 2025 15:40:34 -0400 Subject: [PATCH 5/6] clarify which instance to copy encryption config to --- docs/06-data-encryption-keys.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/06-data-encryption-keys.md b/docs/06-data-encryption-keys.md index be613a0..42ac7d1 100644 --- a/docs/06-data-encryption-keys.md +++ b/docs/06-data-encryption-keys.md @@ -21,7 +21,7 @@ envsubst < configs/encryption-config.yaml \ > encryption-config.yaml ``` -Copy the `encryption-config.yaml` encryption config file to each controller instance: +Copy the `encryption-config.yaml` encryption config file to the server instance: ```bash scp encryption-config.yaml root@server:~/ From 06362e076483c54a66b5a805b88cbf6d0c8d89ce Mon Sep 17 00:00:00 2001 From: lee Date: Tue, 29 Apr 2025 15:42:22 -0400 Subject: [PATCH 6/6] remove unnecessary sed command --- docs/09-bootstrapping-kubernetes-workers.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/docs/09-bootstrapping-kubernetes-workers.md b/docs/09-bootstrapping-kubernetes-workers.md index c3e998e..559b64c 100644 --- a/docs/09-bootstrapping-kubernetes-workers.md +++ b/docs/09-bootstrapping-kubernetes-workers.md @@ -14,9 +14,6 @@ for HOST in node-0 node-1; do sed "s|SUBNET|$SUBNET|g" \ configs/10-bridge.conf > 10-bridge.conf - sed "s|SUBNET|$SUBNET|g" \ - configs/kubelet-config.yaml > kubelet-config.yaml - scp 10-bridge.conf kubelet-config.yaml \ root@${HOST}:~/ done