resequence directories

This commit is contained in:
2023-12-22 22:47:02 -07:00
parent d6c903d719
commit 3f63f88f6e
9 changed files with 13 additions and 13 deletions
@@ -1,4 +1,4 @@
# 05-Cluster-Bootstrap # 01 | Cluster Bootstrap
Assumption is that an external load balancer is already configured for the cluster control plane IP address. Initialize the cluster, but do not join any other nodes to it yet. Assumption is that an external load balancer is already configured for the cluster control plane IP address. Initialize the cluster, but do not join any other nodes to it yet.
@@ -1,4 +1,4 @@
# 06-CNI-Flannel # 02 | CNI = Flannel
[https://github.com/flannel-io/flannel](https://github.com/flannel-io/flannel) [https://github.com/flannel-io/flannel](https://github.com/flannel-io/flannel)
@@ -1,4 +1,4 @@
# 07-NFS-Subdir-Provisioner # 03 | Dynamic Volume Provisiong to NFS Subdirectory
[https://github.com/kubernetes-sigs/nfs-subdir-external-provisioner](https://github.com/kubernetes-sigs/nfs-subdir-external-provisioner) [https://github.com/kubernetes-sigs/nfs-subdir-external-provisioner](https://github.com/kubernetes-sigs/nfs-subdir-external-provisioner)
@@ -1,4 +1,4 @@
# 08-Ingress-Nginx-Controller # 04 | Ingress Controller = NGINX
[https://kubernetes.github.io/ingress-nginx/](https://kubernetes.github.io/ingress-nginx/) [https://kubernetes.github.io/ingress-nginx/](https://kubernetes.github.io/ingress-nginx/)
[https://github.com/kubernetes/ingress-nginx](https://github.com/kubernetes/ingress-nginx) [https://github.com/kubernetes/ingress-nginx](https://github.com/kubernetes/ingress-nginx)
@@ -1,4 +1,4 @@
# 10-Join-Nodes # 05 | Join Additional Controller and Worker Nodes
At this point, other nodes can be joined to the cluster. From a control node, you can get the join command by doing the following. At this point, other nodes can be joined to the cluster. From a control node, you can get the join command by doing the following.
+8
View File
@@ -0,0 +1,8 @@
# 10 | Deploy Applications
Ready to deploy applications to the cluster at this point, for example:
```yaml
kubectl apply -f mandelmap.yaml
```
-8
View File
@@ -1,8 +0,0 @@
# 30-Applications
Ready to deploy applications to the cluster at this point
```yaml
kubectl apply -f mandelmap.yaml
```