Setup yaml untuk beberapa environment
1. Install Apache Ant dan tambahkan ANT_HOME pada environment variables, jika sudah bisa dicek dengan membuka terminal dan masukkan perintah ant -version
2. Buka file plato-deployment-tpl.yaml ...
Script mengecek spesifikasi server Linux based
#!/bin/bash
# Output file
SERVER_IP=$(hostname -I | awk '{print $1}')
SERVER_IP_CLEAN=$(echo "$SERVER_IP" | sed 's/\./_/g')
# Set the output file name based on the server's IP address
OUTPUT_FILE="system_check_$SERVER_IP_CLEAN.txt"
# Collect system ...