Files
michaelschiemer/.deployment-backup/bin/deploy
Michael Schiemer 9b74ade5b0 feat: Fix discovery system critical issues
Resolved multiple critical discovery system issues:

## Discovery System Fixes
- Fixed console commands not being discovered on first run
- Implemented fallback discovery for empty caches
- Added context-aware caching with separate cache keys
- Fixed object serialization preventing __PHP_Incomplete_Class

## Cache System Improvements
- Smart caching that only caches meaningful results
- Separate caches for different execution contexts (console, web, test)
- Proper array serialization/deserialization for cache compatibility
- Cache hit logging for debugging and monitoring

## Object Serialization Fixes
- Fixed DiscoveredAttribute serialization with proper string conversion
- Sanitized additional data to prevent object reference issues
- Added fallback for corrupted cache entries

## Performance & Reliability
- All 69 console commands properly discovered and cached
- 534 total discovery items successfully cached and restored
- No more __PHP_Incomplete_Class cache corruption
- Improved error handling and graceful fallbacks

## Testing & Quality
- Fixed code style issues across discovery components
- Enhanced logging for better debugging capabilities
- Improved cache validation and error recovery

Ready for production deployment with stable discovery system.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-13 12:04:17 +02:00

85 lines
2.3 KiB
Bash
Executable File

#!/bin/sh -l
# Führt das Ansible-Deploy-Playbook aus
#!/bin/bash
# Deployment-Skript für verschiedene Umgebungen
# Konfiguration
ANSIBLE_INVENTORY="ansible/inventory/hosts.ini"
PLAYBOOK_DIR="ansible/playbooks/deploy"
# Farbdefinitionen
GREEN="\033[0;32m"
YELLOW="\033[1;33m"
RED="\033[0;31m"
NC="\033[0m" # No Color
# Funktion zum Anzeigen von Nachrichten
echo_msg() {
echo -e "${GREEN}[DEPLOY]${NC} $1"
}
echo_warn() {
echo -e "${YELLOW}[WARNUNG]${NC} $1"
}
echo_error() {
echo -e "${RED}[FEHLER]${NC} $1"
}
# Parameter auswerten
ENVIRONMENT="$1"
TAGS="$2"
if [ -z "$ENVIRONMENT" ]; then
echo_warn "Keine Umgebung angegeben. Verfügbare Optionen:"
echo " ./bin/deploy dev - Lokale Entwicklungsumgebung"
echo " ./bin/deploy staging - Staging-Umgebung"
echo " ./bin/deploy prod - Produktionsumgebung"
exit 1
fi
# Tags zusammenbauen (falls angegeben)
TAGS_OPTION=""
if [ -n "$TAGS" ]; then
TAGS_OPTION="--tags=$TAGS"
echo_msg "Verwende Tags: $TAGS"
fi
# Entsprechendes Playbook ausführen
case "$ENVIRONMENT" in
dev|development|local)
echo_msg "Starte Deployment für lokale Entwicklungsumgebung..."
ansible-playbook -i "$ANSIBLE_INVENTORY" "$PLAYBOOK_DIR/dev.yml" --ask-become-pass $TAGS_OPTION
;;
staging|stage)
echo_msg "Starte Deployment für Staging-Umgebung..."
ansible-playbook -i "$ANSIBLE_INVENTORY" "$PLAYBOOK_DIR/staging.yml" $TAGS_OPTION
;;
prod|production)
echo_msg "Starte Deployment für Produktionsumgebung..."
read -p "Sind Sie sicher, dass Sie in der Produktionsumgebung deployen möchten? (j/N) " -n 1 -r
echo
if [[ $REPLY =~ ^[Jj]$ ]]; then
ansible-playbook -i "$ANSIBLE_INVENTORY" "$PLAYBOOK_DIR/production.yml" $TAGS_OPTION
else
echo_warn "Deployment in Produktionsumgebung abgebrochen."
exit 1
fi
;;
*)
echo_error "Unbekannte Umgebung: $ENVIRONMENT"
exit 1
;;
esac
# Deployment-Status prüfen
if [ $? -eq 0 ]; then
echo_msg "Deployment erfolgreich abgeschlossen."
exit 0
else
echo_error "Deployment fehlgeschlagen! Bitte überprüfen Sie die Logs."
exit 1
fi
/home/michael/.local/bin/ansible-playbook -i ansible/inventory.ini ansible/playbooks/deploy.yml