| Tool Name | CentOS | Windows |
|---|---|---|
| Visual Studio Code | sudo yum install code |
Download Installer |
| Python 3 | sudo yum install python3 |
Download Installer |
| Node.js | sudo yum install -y nodejs |
Download Installer |
| Git | sudo yum install git |
Download Installer |
| Docker | sudo yum install docker-ce |
Download Docker Desktop |
| ** |
| Tool Name | Windows - Downalod Links |
|---|---|
| Visual Studio Code | Download Installer |
| Python 3 | Download Installer |
| Node.js | Download Installer |
| Git | Download Installer |
| Docker | Download Docker Desktop |
| Kubernetes (kubectl) | Installation Docs |
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 | |
| helm repo add ingress-nginx https://kubernetes.github.io/ingress-nginx | |
| helm repo update | |
| helm install ingress-nginx ingress-nginx/ingress-nginx --namespace ingress-nginx --create-namespace | |
| # Exit on error | |
| set -e | |
| CERT_NAME="devbit" | |
| NAMESPACE="lab-ingress-nginx" |
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 | |
| # Script to generate ConfigMap definitions for files in a specified directory | |
| # Check if a directory path was provided | |
| if [ $# -ne 2 ]; then | |
| echo "Usage: $0 <source_directory> <configmap_name>" | |
| echo "Example: $0 ./config-files my-app-config" | |
| exit 1 | |
| fi |
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 | |
| # OPTIONAL: load .env | |
| RAFTT_SERVER="https://admiral.matrix.raftt.io" | |
| # Install brew raftt | |
| #brew install rafttio/tap/raftt | |
| # Load the colors themes | |
| source <(curl -s https://raw.githubusercontent.com/nirgeier/labs-assets/refs/heads/main/assets/scripts/colors.sh) |
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 | |
| # Verify that k8s is running | |
| kubectl label namespace default istio-injection=enabled | |
| # 1. Install istio | |
| ##..... | |
| kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.1.0/standard-install.yaml | |
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 | |
| install_docker (){ | |
| OPTIONS=$(whiptail \ | |
| --title "Installation Methods" \ | |
| --menu "Oron the king" 25 78 16 \ | |
| "Docker" "Install Docker" \ | |
| "Nachman Was Here" "Nachman" \ | |
| "<-- Back" "Exit." \ |
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
| { | |
| "api-cors-header": "", | |
| "authorization-plugins": [], | |
| "bip": "", | |
| "bridge": "", | |
| "cgroup-parent": "", | |
| "cluster-store": "", | |
| "cluster-store-opts": {}, | |
| "cluster-advertise": "", | |
| "debug": true, |
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 | |
| # Reset | |
| COLOR_OFF='\033[0m' # Text Reset | |
| # Regular Colors | |
| Black='\033[0;30m' # Black | |
| Red='\033[0;31m' # Red | |
| Green='\033[0;32m' # Green | |
| Yellow='\033[0;33m' # Yellow |
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
| # Place the file under ~/.lima/_config/override.yaml | |
| cat << EOF > ~/.lima/_config/override.yaml | |
| --- | |
| mounts: | |
| - location: "/tmp" | |
| writable: true | |
| - location: "~/" | |
| writable: true | |
| EOF |
NewerOlder