12 lines
471 B
Bash
Executable File
12 lines
471 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# =============================================================================
|
|
# remove-app.sh — Alias for stop-app.sh
|
|
#
|
|
# Provided for convenience. stop-app.sh already performs a full deletion
|
|
# of all Kubernetes objects, PersistentVolumes, and host directories.
|
|
# =============================================================================
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
"$SCRIPT_DIR/stop-app.sh"
|