Enhance installation scripts to prompt for configuration variables and initialize Wild-Cloud environment

This commit is contained in:
2025-06-29 13:48:53 -07:00
parent 5579e1e3c0
commit dab2551471
11 changed files with 228 additions and 137 deletions

View File

@@ -1,5 +1,12 @@
#!/bin/bash
set -e
set -o pipefail
# Source common utilities
source "$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)/../../../bin/wild-common.sh"
# Initialize Wild-Cloud environment
init_wild_env
if [ -z "${WC_HOME}" ]; then
echo "Please source the wildcloud environment first. (e.g., \`source ./env.sh\`)"
@@ -9,7 +16,19 @@ fi
CLUSTER_SETUP_DIR="${WC_HOME}/setup/cluster"
KUBERNETES_DASHBOARD_DIR="${CLUSTER_SETUP_DIR}/kubernetes-dashboard"
echo "Setting up Kubernetes Dashboard..."
print_header "Setting up Kubernetes Dashboard"
# Collect required configuration variables
print_info "Collecting Kubernetes Dashboard configuration..."
# Get current value
current_internal_domain=$(get_current_config "cloud.internalDomain")
# Prompt for internal domain
internal_domain=$(prompt_with_default "Enter internal domain name (for dashboard URL)" "local.example.com" "${current_internal_domain}")
wild-config-set "cloud.internalDomain" "${internal_domain}"
print_success "Configuration collected successfully"
# Templates should already be compiled by wild-cluster-services-generate
echo "Using pre-compiled Dashboard templates..."