This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # | |
| # Kubernetes Worker Node Installation Script | |
| # | |
| # Usage: | |
| # 1. With command line arguments: | |
| # ./install_worker.sh <CONTROL_PLANE_IP> <CONTROL_PLANE_HOSTNAME> | |
| # Example: ./install_worker.sh 94.130.105.77 master-node | |
| # | |
| # 2. With environment variables: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -e | |
| echo "=============================================" | |
| echo "Kubernetes Control Plane Uninstaller" | |
| echo "=============================================" | |
| echo "" | |
| echo "WARNING: This will completely remove Kubernetes and all associated components!" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # ============================================================================= | |
| # Kubernetes Control Plane Installation Script | |
| # ============================================================================= | |
| # | |
| # Description: Complete Kubernetes Control Plane Installation Script for CKA | |
| # Certification Study and Production Use. Automatically installs | |
| # latest Kubernetes cluster with containerd runtime and Cilium CNI | |
| # on Ubuntu/Debian systems. This script should be run on the |