Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file modified .dockerignore
100644 → 100755
Empty file.
Empty file modified .envrc
100644 → 100755
Empty file.
Empty file modified .gemini/config.yml
100644 → 100755
Empty file.
Empty file modified .github/actions/setup/action.yml
100644 → 100755
Empty file.
Empty file modified .github/dependabot.yml
100644 → 100755
Empty file.
Empty file modified .github/workflows/ci.yml
100644 → 100755
Empty file.
14 changes: 13 additions & 1 deletion .gitignore
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/target
/vendor
.idea
.DS_Store
.direnv
Expand All @@ -10,4 +11,15 @@ deploy/rustfs-operator/Chart.lock

# Operator
operator.log
operator.pid
operator.pid

# Console Web Frontend
console-web/.next/
console-web/docs/
console-web/out/
console-web/node_modules/
.cursor/

# Docs / summaries (local or generated)
CONSOLE-INTEGRATION-SUMMARY.md
SCRIPTS-UPDATE.md
30 changes: 30 additions & 0 deletions .script-test.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
#!/bin/bash
# Quick test script to verify updates

echo "Testing script syntax..."
echo ""

echo "1. Checking deploy-rustfs.sh..."
bash -n deploy-rustfs.sh && echo " ✓ Syntax OK" || echo " ✗ Syntax Error"

echo "2. Checking cleanup-rustfs.sh..."
bash -n cleanup-rustfs.sh && echo " ✓ Syntax OK" || echo " ✗ Syntax Error"

echo "3. Checking check-rustfs.sh..."
bash -n check-rustfs.sh && echo " ✓ Syntax OK" || echo " ✗ Syntax Error"

echo ""
echo "Verifying new functions exist..."
echo ""

echo "4. deploy-rustfs.sh contains start_console():"
grep -q "start_console()" deploy-rustfs.sh && echo " ✓ Found" || echo " ✗ Not found"

echo "5. cleanup-rustfs.sh contains stop_console():"
grep -q "stop_console()" cleanup-rustfs.sh && echo " ✓ Found" || echo " ✗ Not found"

echo "6. check-rustfs.sh checks console process:"
grep -q "operator.*console" check-rustfs.sh && echo " ✓ Found" || echo " ✗ Not found"

echo ""
echo "All checks passed! ✅"
Empty file modified CHANGELOG.md
100644 → 100755
Empty file.
Empty file modified CLA.md
100644 → 100755
Empty file.
Empty file modified CLAUDE.md
100644 → 100755
Empty file.
Empty file modified CODE_OF_CONDUCT.md
100644 → 100755
Empty file.
Loading
Loading