Update terminology from "Wild-Cloud" to "Wild Cloud" across scripts and documentation for consistency

This commit is contained in:
2025-07-06 12:18:10 -07:00
parent 24e3b64077
commit d1912af913
44 changed files with 103 additions and 79 deletions

View File

@@ -45,7 +45,7 @@ if [ -z "${APP_NAME}" ]; then
exit 1
fi
# Initialize Wild-Cloud environment
# Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set."
exit 1
@@ -126,7 +126,7 @@ if [ -f "${MANIFEST_FILE}" ]; then
# Ensure .wildcloud/secrets.yaml exists
if [ ! -f ".wildcloud/secrets.yaml" ]; then
echo "# Wild-Cloud Secrets Configuration" > .wildcloud/secrets.yaml
echo "# Wild Cloud Secrets Configuration" > .wildcloud/secrets.yaml
echo "# This file contains sensitive data and should NOT be committed to git" >> .wildcloud/secrets.yaml
echo "# Add this file to your .gitignore" >> .wildcloud/secrets.yaml
echo "" >> .wildcloud/secrets.yaml

View File

@@ -19,7 +19,7 @@ while [[ $# -gt 0 ]]; do
-h|--help)
echo "Usage: $0 <app_name> [--force] [--dry-run]"
echo ""
echo "Delete a Wild-Cloud app and all its resources."
echo "Delete a Wild Cloud app and all its resources."
echo ""
echo "Options:"
echo " --force Skip confirmation prompts"
@@ -61,7 +61,7 @@ if [ ! -d "apps/${APP_NAME}" ]; then
exit 1
fi
# Initialize Wild-Cloud environment
# Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set."
exit 1

View File

@@ -43,7 +43,7 @@ if [ ! -d "apps/${APP_NAME}" ]; then
exit 1
fi
# Initialize Wild-Cloud environment
# Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set."
exit 1

View File

@@ -78,7 +78,7 @@ if [[ -z "$APP_NAME" ]]; then
show_help
fi
# Initialize Wild-Cloud environment
# Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set."
exit 1

View File

@@ -15,7 +15,7 @@ while [[ $# -gt 0 ]]; do
-h|--help)
echo "Usage: $0 <app_name> [--update]"
echo ""
echo "Fetch an app template from the Wild-Cloud repository to cache."
echo "Fetch an app template from the Wild Cloud repository to cache."
echo ""
echo "Options:"
echo " --update Overwrite existing cached files without confirmation"
@@ -45,7 +45,7 @@ if [ -z "${APP_NAME}" ]; then
exit 1
fi
# Initialize Wild-Cloud environment
# Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set."
exit 1

View File

@@ -24,7 +24,7 @@ while [[ $# -gt 0 ]]; do
-h|--help)
echo "Usage: $0 [--verbose] [--json|--yaml]"
echo ""
echo "List all available Wild-Cloud apps with their metadata."
echo "List all available Wild Cloud apps with their metadata."
echo ""
echo "Options:"
echo " --verbose, -v Show additional metadata (icon, requires)"
@@ -48,7 +48,7 @@ while [[ $# -gt 0 ]]; do
esac
done
# Initialize Wild-Cloud environment
# Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set."
exit 1
@@ -142,12 +142,12 @@ extract_app_metadata() {
# Output header for table format
if [ "${OUTPUT_FORMAT}" = "table" ]; then
if [ "${VERBOSE}" = true ]; then
echo "Available Wild-Cloud Apps (verbose):"
echo "Available Wild Cloud Apps (verbose):"
echo "==================================================================================="
printf "%-15s %-10s %-12s %-40s %-15s %s\n" "NAME" "VERSION" "INSTALLED" "DESCRIPTION" "REQUIRES" "ICON"
printf "%-15s %-10s %-12s %-40s %-15s %s\n" "----" "-------" "---------" "-----------" "--------" "----"
else
echo "Available Wild-Cloud Apps:"
echo "Available Wild Cloud Apps:"
echo "========================================================================================================="
printf "%-15s %-10s %-12s %s\n" "NAME" "VERSION" "INSTALLED" "DESCRIPTION"
printf "%-15s %-10s %-12s %s\n" "----" "-------" "---------" "-----------"

View File

@@ -49,7 +49,7 @@ while [[ $# -gt 0 ]]; do
esac
done
# Initialize Wild-Cloud environment
# Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set."
exit 1

View File

@@ -42,7 +42,7 @@ while [[ $# -gt 0 ]]; do
esac
done
# Initialize Wild-Cloud environment
# Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set."
exit 1

View File

@@ -64,7 +64,7 @@ if [ -z "$NODE_IP" ]; then
exit 1
fi
# Initialize Wild-Cloud environment
# Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set."
exit 1

View File

@@ -85,7 +85,7 @@ if [ -z "$NODE_IP" ]; then
exit 1
fi
# Initialize Wild-Cloud environment
# Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set."
exit 1

View File

@@ -49,7 +49,7 @@ while [[ $# -gt 0 ]]; do
esac
done
# Initialize Wild-Cloud environment
# Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set."
exit 1

View File

@@ -63,7 +63,7 @@ while [[ $# -gt 0 ]]; do
esac
done
# Initialize Wild-Cloud environment
# Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set."
exit 1

View File

@@ -37,7 +37,7 @@ while [[ $# -gt 0 ]]; do
esac
done
# Initialize Wild-Cloud environment
# Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set."
exit 1

View File

@@ -49,7 +49,7 @@ if [ -z "${KEY_PATH}" ]; then
exit 1
fi
# Initialize Wild-Cloud environment
# Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set."
exit 1

View File

@@ -57,7 +57,7 @@ if [ -z "${VALUE}" ]; then
exit 1
fi
# Initialize Wild-Cloud environment
# Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set."
exit 1

View File

@@ -23,7 +23,7 @@ while [[ $# -gt 0 ]]; do
esac
done
# Initialize Wild-Cloud environment
# Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set."
exit 1

View File

@@ -49,7 +49,7 @@ if [ -z "${KEY_PATH}" ]; then
exit 1
fi
# Initialize Wild-Cloud environment
# Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set."
exit 1

View File

@@ -57,7 +57,7 @@ if [ -z "${VALUE}" ]; then
exit 1
fi
# Initialize Wild-Cloud environment
# Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set."
exit 1

View File

@@ -15,6 +15,10 @@ while [[ $# -gt 0 ]]; do
SKIP_SCAFFOLD=true
shift
;;
--skip-docs)
SKIP_DOCS=true
shift
;;
--skip-cluster)
SKIP_CLUSTER=true
shift
@@ -26,18 +30,19 @@ while [[ $# -gt 0 ]]; do
-h|--help)
echo "Usage: $0 [component-options]"
echo ""
echo "Complete Wild-Cloud setup - runs all components in sequence."
echo "Complete Wild Cloud setup - runs all components in sequence."
echo ""
echo "Component Control Options:"
echo " --skip-scaffold Skip scaffold setup (cloud initialization)"
echo " --skip-cluster Skip cluster setup (Phases 1-3)"
echo " --skip-services Skip services setup (Phase 4)"
echo " --skip-docs Skip cloud documentation setup"
echo " --skip-cluster Skip cluster setup"
echo " --skip-services Skip services setup"
echo " -h, --help Show this help message"
echo ""
echo "This script runs:"
echo " 1. wild-setup-scaffold # Cloud initialization and basic config"
echo " 2. wild-setup-cluster # Cluster infrastructure (Phases 1-3)"
echo " 3. wild-setup-services # Cluster services (Phase 4)"
echo " 2. wild-setup-cluster # Cluster infrastructure"
echo " 3. wild-setup-services # Cluster services"
echo ""
echo "You can also run these components individually:"
echo " - wild-setup-scaffold [--update]"
@@ -65,7 +70,7 @@ while [[ $# -gt 0 ]]; do
esac
done
# Initialize Wild-Cloud environment
# Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set."
@@ -75,8 +80,8 @@ else
init_wild_env
fi
print_header "Wild-Cloud Setup"
print_info "Running complete Wild-Cloud setup."
print_header "Wild Cloud Setup"
print_info "Running complete Wild Cloud setup."
echo ""
# =============================================================================
@@ -95,7 +100,26 @@ if [ "${SKIP_SCAFFOLD}" = false ]; then
fi
echo ""
else
print_info "Skipping Component 1: Cloud Home Setup"
print_info "Skipping Home Setup"
fi
# =============================================================================
# DOCS
# =============================================================================
if [ "${SKIP_DOCS}" = false ]; then
print_header "Cloud Docs"
print_info "Preparing your docs..."
if wild-setup-docs; then
print_success "Cloud docs setup completed"
else
print_error "Cloud docs setup failed"
exit 1
fi
echo ""
else
print_info "Skipping Docs Setup"
fi
# =============================================================================
@@ -114,7 +138,7 @@ if [ "${SKIP_CLUSTER}" = false ]; then
fi
echo ""
else
print_info "Skipping Component 2: Cluster Setup"
print_info "Skipping Cluster Setup"
fi
# =============================================================================
@@ -133,25 +157,25 @@ if [ "${SKIP_SERVICES}" = false ]; then
fi
echo ""
else
print_info "Skipping Component 3: Services Setup"
print_info "Skipping cluster services setup"
fi
# =============================================================================
# FINAL SUMMARY
# =============================================================================
print_header "Wild-Cloud Complete Setup Finished!"
print_header "Wild Cloud Setup Finished!"
echo ""
if [ "${SKIP_SERVICES}" = false ] && command -v kubectl >/dev/null 2>&1; then
if [ -f "${WC_HOME}/config.yaml" ]; then
INTERNAL_DOMAIN=$(wild-config cloud.internalDomain 2>/dev/null || echo "your-internal-domain")
print_info "Your Wild-Cloud is ready!"
print_info "Your Wild Cloud is ready!"
echo " Dashboard: https://dashboard.${INTERNAL_DOMAIN}"
echo " Get token: ./bin/dashboard-token"
fi
else
print_info "Complete the remaining setup steps to finalize your Wild-Cloud deployment"
print_info "Complete the remaining setup steps to finalize your Wild Cloud deployment"
fi
print_success "Wild-Cloud setup completed!"
print_success "Wild Cloud setup completed!"

View File

@@ -56,7 +56,7 @@ while [[ $# -gt 0 ]]; do
esac
done
# Initialize Wild-Cloud environment
# Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set."
@@ -69,7 +69,7 @@ fi
# Check basic configuration
check_basic_config
print_header "Wild-Cloud Cluster Setup"
print_header "Wild Cloud Cluster Setup"
print_info "Setting up cluster infrastructure"
echo ""
@@ -480,7 +480,7 @@ fi
# COMPLETION
# =============================================================================
print_header "Wild-Cloud Cluster Setup Complete!"
print_header "Wild Cloud Cluster Setup Complete!"
print_success "Cluster infrastructure setup completed!"
echo ""

View File

@@ -15,7 +15,7 @@ while [[ $# -gt 0 ]]; do
-h|--help)
echo "Usage: $0 [--update]"
echo ""
echo "Copy Wild-Cloud documentation to the current cloud directory."
echo "Copy Wild Cloud documentation to the current cloud directory."
echo ""
echo "Options:"
echo " --update Update existing docs (overwrite)"
@@ -36,7 +36,7 @@ while [[ $# -gt 0 ]]; do
esac
done
# Initialize Wild-Cloud environment
# Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then
echo "WC_ROOT is not set."
exit 1

View File

@@ -17,7 +17,7 @@ while [[ $# -gt 0 ]]; do
-h|--help)
echo "Usage: $0 [--update]"
echo ""
echo "Initialize Wild-Cloud scaffold and basic configuration."
echo "Initialize Wild Cloud scaffold and basic configuration."
echo ""
echo "Options:"
echo " --update Update existing cloud files (overwrite)"
@@ -48,7 +48,7 @@ while [[ $# -gt 0 ]]; do
esac
done
# Initialize Wild-Cloud environment
# Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set."
@@ -62,7 +62,7 @@ TEMPLATE_DIR="${WC_ROOT}/setup/home-scaffold"
# Check if cloud already exists
if [ -d ".wildcloud" ]; then
echo "Wild-Cloud already exists in this directory."
echo "Wild Cloud already exists in this directory."
echo ""
read -p "Do you want to update cloud files? (y/N): " -n 1 -r
echo
@@ -84,7 +84,7 @@ else
fi
fi
echo "Initializing Wild-Cloud in $(pwd)"
echo "Initializing Wild Cloud in $(pwd)"
UPDATE=false
fi
@@ -137,7 +137,7 @@ if [ ! -d ".wildcloud" ] || [ "${UPDATE}" = true ]; then
copy_cloud_files "${TEMPLATE_DIR}" "."
echo ""
echo "Wild-Cloud initialized successfully!"
echo "Wild Cloud initialized successfully!"
echo ""
fi
@@ -171,7 +171,7 @@ fi
# COMPLETION
# =============================================================================
print_header "Wild-Cloud Scaffold Setup Complete!"
print_header "Wild Cloud Scaffold Setup Complete!"
print_success "Cloud scaffold initialized successfully!"
echo ""

View File

@@ -48,7 +48,7 @@ while [[ $# -gt 0 ]]; do
esac
done
# Initialize Wild-Cloud environment
# Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set."
@@ -123,4 +123,4 @@ else
echo " 3. Verify components are running correctly"
fi
print_success "Wild-Cloud setup completed!"
print_success "Wild Cloud setup completed!"

View File

@@ -6,7 +6,7 @@
set -euo pipefail
# Initialize Wild-Cloud environment
# Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set."
exit 1

View File

@@ -1,4 +1,4 @@
# Setting Up Your Wild-cloud
# Setting Up Your Wild Cloud
Install dependencies:

View File

@@ -1,4 +1,4 @@
# Wild-cloud Setup
# Wild Cloud Setup
## Hardware prerequisites
@@ -78,7 +78,7 @@ kubectl get nodes
./setup/cluster/validate-setup.sh
```
## Installing Wild-Cloud apps
## Installing Wild Cloud apps
```bash
wild-apps-list

View File

@@ -1,6 +1,6 @@
# Wild-Cloud App Workflow
# Wild Cloud App Workflow
The Wild-cloud app workflow consists of three steps:
The Wild Cloud app workflow consists of three steps:
1. **Fetch** - Download raw app templates to cache
2. **Config** - Apply your local configuration to templates

View File

@@ -1,4 +1,4 @@
# Converting Helm Charts to Wild-Cloud Kustomize definitions
# Converting Helm Charts to Wild Cloud Kustomize definitions
_(This guide is a work in progress)_

2
env.sh
View File

@@ -30,4 +30,4 @@ if ! command -v gomplate &> /dev/null; then
exit 1
fi
echo "Wild-cloud root ready."
echo "Wild Cloud root ready."

View File

@@ -1 +1 @@
# Wild-cloud API Backend Service
# Wild Cloud API Backend Service

View File

@@ -1,7 +1,7 @@
#!/bin/bash
# wild-common.sh
# Common utility functions for Wild-Cloud shell scripts
# Common utility functions for Wild Cloud shell scripts
# Source this file at the beginning of scripts to access shared functionality
#
# USAGE PATTERN:
@@ -14,7 +14,7 @@
# # Source common utilities
# source "$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)/wild-common.sh"
#
# # Initialize Wild-Cloud environment
# # Initialize Wild Cloud environment
# init_wild_env
#
# AVAILABLE FUNCTIONS:
@@ -180,7 +180,7 @@ find_wc_home() {
return 1
}
# Initialize common Wild-Cloud environment variables
# Initialize common Wild Cloud environment variables
# Call this function at the beginning of scripts
init_wild_env() {
if [ -z "${WC_ROOT}" ]; then

View File

@@ -2,7 +2,7 @@
set -e
set -o pipefail
# Initialize Wild-Cloud environment
# Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set."
exit 1

View File

@@ -2,7 +2,7 @@
set -e
set -o pipefail
# Initialize Wild-Cloud environment
# Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set."
exit 1

View File

@@ -2,7 +2,7 @@
set -e
set -o pipefail
# Initialize Wild-Cloud environment
# Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set."
exit 1

View File

@@ -2,7 +2,7 @@
set -e
set -o pipefail
# Initialize Wild-Cloud environment
# Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set."
exit 1

View File

@@ -2,7 +2,7 @@
set -e
set -o pipefail
# Initialize Wild-Cloud environment
# Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set."
exit 1

View File

@@ -2,7 +2,7 @@
set -e
set -o pipefail
# Initialize Wild-Cloud environment
# Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set."
exit 1

View File

@@ -2,7 +2,7 @@
set -e
set -o pipefail
# Initialize Wild-Cloud environment
# Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set."
exit 1

View File

@@ -2,7 +2,7 @@
set -e
set -o pipefail
# Initialize Wild-Cloud environment
# Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set."
exit 1

View File

@@ -2,7 +2,7 @@
set -e
set -o pipefail
# Initialize Wild-Cloud environment
# Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set."
exit 1

View File

@@ -2,7 +2,7 @@
set -e
set -o pipefail
# Initialize Wild-Cloud environment
# Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set."
exit 1

View File

@@ -1,7 +1,7 @@
#!/bin/bash
set -e
# Initialize Wild-Cloud environment
# Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set."
exit 1

View File

@@ -1,4 +1,4 @@
# Your Wild-Cloud
# Your Wild Cloud
## One-time Setup
@@ -12,7 +12,7 @@ wild-setup
## Using your wild-cloud
### Installing Wild-Cloud apps
### Installing Wild Cloud apps
```bash
wild-apps-list

View File

@@ -1,4 +1,4 @@
# My Wild-cloud Apps
# My Wild Cloud Apps
This directory contains the definitions for _your_ wild-cloud apps. You can change them however you like. You should keep them all in git and make commits anytime you change something. Some `wild` commands will overwrite files in your app directory (like when you are updating apps, or updating your configuration) so you'll want to review any changes made to your files after using them using `git`.
@@ -12,7 +12,7 @@ wild-cloud-app-list
### App Workflow
The Wild-cloud app workflow consists of three steps:
The Wild Cloud app workflow consists of three steps:
1. **Fetch** - Download raw app templates to cache
2. **Config** - Apply your local configuration to templates