diff --git a/bin/wild-app-config b/bin/wild-app-config index 3585e63..fe51b90 100755 --- a/bin/wild-app-config +++ b/bin/wild-app-config @@ -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 diff --git a/bin/wild-app-delete b/bin/wild-app-delete index b041f2f..3b251f1 100755 --- a/bin/wild-app-delete +++ b/bin/wild-app-delete @@ -19,7 +19,7 @@ while [[ $# -gt 0 ]]; do -h|--help) echo "Usage: $0 [--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 diff --git a/bin/wild-app-deploy b/bin/wild-app-deploy index 07071fb..e15e70a 100755 --- a/bin/wild-app-deploy +++ b/bin/wild-app-deploy @@ -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 diff --git a/bin/wild-app-doctor b/bin/wild-app-doctor index 169bba5..7c2ae6d 100755 --- a/bin/wild-app-doctor +++ b/bin/wild-app-doctor @@ -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 diff --git a/bin/wild-app-fetch b/bin/wild-app-fetch index 891dff0..9edf34a 100755 --- a/bin/wild-app-fetch +++ b/bin/wild-app-fetch @@ -15,7 +15,7 @@ while [[ $# -gt 0 ]]; do -h|--help) echo "Usage: $0 [--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 diff --git a/bin/wild-apps-list b/bin/wild-apps-list index 0a2a620..c6be6a8 100755 --- a/bin/wild-apps-list +++ b/bin/wild-apps-list @@ -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" "----" "-------" "---------" "-----------" diff --git a/bin/wild-cluster-config-generate b/bin/wild-cluster-config-generate index 4525e2f..7cf1544 100755 --- a/bin/wild-cluster-config-generate +++ b/bin/wild-cluster-config-generate @@ -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 diff --git a/bin/wild-cluster-node-image-create b/bin/wild-cluster-node-image-create index 1e156d3..1245330 100755 --- a/bin/wild-cluster-node-image-create +++ b/bin/wild-cluster-node-image-create @@ -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 diff --git a/bin/wild-cluster-node-patch-generate b/bin/wild-cluster-node-patch-generate index 69ce7c2..fbd538d 100755 --- a/bin/wild-cluster-node-patch-generate +++ b/bin/wild-cluster-node-patch-generate @@ -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 diff --git a/bin/wild-cluster-node-up b/bin/wild-cluster-node-up index 72be5f9..2e93847 100755 --- a/bin/wild-cluster-node-up +++ b/bin/wild-cluster-node-up @@ -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 diff --git a/bin/wild-cluster-services-generate b/bin/wild-cluster-services-generate index cc0e6d2..6718e81 100755 --- a/bin/wild-cluster-services-generate +++ b/bin/wild-cluster-services-generate @@ -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 diff --git a/bin/wild-cluster-services-up b/bin/wild-cluster-services-up index 1d59b64..4c7d506 100755 --- a/bin/wild-cluster-services-up +++ b/bin/wild-cluster-services-up @@ -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 diff --git a/bin/wild-compile-template b/bin/wild-compile-template index 2a27c8d..49f0620 100755 --- a/bin/wild-compile-template +++ b/bin/wild-compile-template @@ -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 diff --git a/bin/wild-config b/bin/wild-config index 4c2ab2a..0c251e9 100755 --- a/bin/wild-config +++ b/bin/wild-config @@ -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 diff --git a/bin/wild-config-set b/bin/wild-config-set index 3cb3881..1d41ef0 100755 --- a/bin/wild-config-set +++ b/bin/wild-config-set @@ -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 diff --git a/bin/wild-dnsmasq-install b/bin/wild-dnsmasq-install index fece54c..f695854 100755 --- a/bin/wild-dnsmasq-install +++ b/bin/wild-dnsmasq-install @@ -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 diff --git a/bin/wild-secret b/bin/wild-secret index 9141922..ed598d8 100755 --- a/bin/wild-secret +++ b/bin/wild-secret @@ -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 diff --git a/bin/wild-secret-set b/bin/wild-secret-set index 7be9c62..dd46634 100755 --- a/bin/wild-secret-set +++ b/bin/wild-secret-set @@ -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 diff --git a/bin/wild-setup b/bin/wild-setup index 9917b1e..90fd231 100755 --- a/bin/wild-setup +++ b/bin/wild-setup @@ -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!" diff --git a/bin/wild-setup-cluster b/bin/wild-setup-cluster index cb96702..f05a1a3 100755 --- a/bin/wild-setup-cluster +++ b/bin/wild-setup-cluster @@ -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 "" diff --git a/bin/wild-setup-docs b/bin/wild-setup-docs index 8c2193a..b65519c 100755 --- a/bin/wild-setup-docs +++ b/bin/wild-setup-docs @@ -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 diff --git a/bin/wild-setup-scaffold b/bin/wild-setup-scaffold index 653a498..4d593c2 100755 --- a/bin/wild-setup-scaffold +++ b/bin/wild-setup-scaffold @@ -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 "" diff --git a/bin/wild-setup-services b/bin/wild-setup-services index 57dbdf7..907450d 100755 --- a/bin/wild-setup-services +++ b/bin/wild-setup-services @@ -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!" diff --git a/bin/wild-talos-schema b/bin/wild-talos-schema index 64e23c0..62ae3ca 100755 --- a/bin/wild-talos-schema +++ b/bin/wild-talos-schema @@ -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 diff --git a/docs/SETUP.md b/docs/SETUP.md index 20d0b40..647a1b9 100644 --- a/docs/SETUP.md +++ b/docs/SETUP.md @@ -1,4 +1,4 @@ -# Setting Up Your Wild-cloud +# Setting Up Your Wild Cloud Install dependencies: diff --git a/docs/SETUP_FULL.md b/docs/SETUP_FULL.md index b4022e9..e2d07f1 100644 --- a/docs/SETUP_FULL.md +++ b/docs/SETUP_FULL.md @@ -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 diff --git a/docs/guides/app-workflow.md b/docs/guides/app-workflow.md index d38f27a..9fd5aa9 100644 --- a/docs/guides/app-workflow.md +++ b/docs/guides/app-workflow.md @@ -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 diff --git a/docs/guides/converting-helm-charts.md b/docs/guides/converting-helm-charts.md index 2901ffe..c98b25b 100644 --- a/docs/guides/converting-helm-charts.md +++ b/docs/guides/converting-helm-charts.md @@ -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)_ diff --git a/env.sh b/env.sh index b3c2405..60a3900 100644 --- a/env.sh +++ b/env.sh @@ -30,4 +30,4 @@ if ! command -v gomplate &> /dev/null; then exit 1 fi -echo "Wild-cloud root ready." +echo "Wild Cloud root ready." diff --git a/experimental/daemon/README.md b/experimental/daemon/README.md index 30d6640..18d8675 100644 --- a/experimental/daemon/README.md +++ b/experimental/daemon/README.md @@ -1 +1 @@ -# Wild-cloud API Backend Service +# Wild Cloud API Backend Service diff --git a/scripts/common.sh b/scripts/common.sh index d4660ae..9e2d836 100644 --- a/scripts/common.sh +++ b/scripts/common.sh @@ -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 diff --git a/setup/cluster-services/cert-manager/install.sh b/setup/cluster-services/cert-manager/install.sh index 3d28aae..b03207c 100755 --- a/setup/cluster-services/cert-manager/install.sh +++ b/setup/cluster-services/cert-manager/install.sh @@ -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 diff --git a/setup/cluster-services/coredns/install.sh b/setup/cluster-services/coredns/install.sh index fa67e5f..9f91776 100755 --- a/setup/cluster-services/coredns/install.sh +++ b/setup/cluster-services/coredns/install.sh @@ -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 diff --git a/setup/cluster-services/docker-registry/install.sh b/setup/cluster-services/docker-registry/install.sh index 988857d..fe6ed31 100755 --- a/setup/cluster-services/docker-registry/install.sh +++ b/setup/cluster-services/docker-registry/install.sh @@ -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 diff --git a/setup/cluster-services/externaldns/install.sh b/setup/cluster-services/externaldns/install.sh index dcf822f..8f7477f 100755 --- a/setup/cluster-services/externaldns/install.sh +++ b/setup/cluster-services/externaldns/install.sh @@ -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 diff --git a/setup/cluster-services/kubernetes-dashboard/install.sh b/setup/cluster-services/kubernetes-dashboard/install.sh index 1de2574..0f7e96d 100755 --- a/setup/cluster-services/kubernetes-dashboard/install.sh +++ b/setup/cluster-services/kubernetes-dashboard/install.sh @@ -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 diff --git a/setup/cluster-services/longhorn/install.sh b/setup/cluster-services/longhorn/install.sh index 4e8efc4..4e5371b 100755 --- a/setup/cluster-services/longhorn/install.sh +++ b/setup/cluster-services/longhorn/install.sh @@ -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 diff --git a/setup/cluster-services/metallb/install.sh b/setup/cluster-services/metallb/install.sh index 425dc09..2e7d36d 100755 --- a/setup/cluster-services/metallb/install.sh +++ b/setup/cluster-services/metallb/install.sh @@ -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 diff --git a/setup/cluster-services/nfs/install.sh b/setup/cluster-services/nfs/install.sh index 67c8f88..25c96bb 100755 --- a/setup/cluster-services/nfs/install.sh +++ b/setup/cluster-services/nfs/install.sh @@ -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 diff --git a/setup/cluster-services/traefik/install.sh b/setup/cluster-services/traefik/install.sh index 151e55d..c831163 100755 --- a/setup/cluster-services/traefik/install.sh +++ b/setup/cluster-services/traefik/install.sh @@ -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 diff --git a/setup/cluster-services/utils/install.sh b/setup/cluster-services/utils/install.sh index 045385f..5bbc269 100755 --- a/setup/cluster-services/utils/install.sh +++ b/setup/cluster-services/utils/install.sh @@ -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 diff --git a/setup/cluster-services/validate-setup.sh b/setup/cluster-services/validate-setup.sh index 628813b..65ba707 100755 --- a/setup/cluster-services/validate-setup.sh +++ b/setup/cluster-services/validate-setup.sh @@ -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 diff --git a/setup/home-scaffold/README.md b/setup/home-scaffold/README.md index 513ad3c..89532d2 100644 --- a/setup/home-scaffold/README.md +++ b/setup/home-scaffold/README.md @@ -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 diff --git a/setup/home-scaffold/apps/README.md b/setup/home-scaffold/apps/README.md index 8891d9a..89592d8 100644 --- a/setup/home-scaffold/apps/README.md +++ b/setup/home-scaffold/apps/README.md @@ -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