diff --git a/components/README.md b/components/README.md old mode 100644 new mode 100755 index 32ef23ac1..f40d130d5 --- a/components/README.md +++ b/components/README.md @@ -65,10 +65,10 @@ CONTAINER_REGISTRY=$REGISTRY ./deploy.sh ### Rebuild Components ```bash -make local-rebuild # Rebuild and reload all components -make local-reload-backend # Rebuild and reload backend only -make local-reload-frontend # Rebuild and reload frontend only -make local-reload-operator # Rebuild and reload operator only +make kind-rebuild # Rebuild and reload all components +make kind-reload-backend # Rebuild and reload backend only +make kind-reload-frontend # Rebuild and reload frontend only +make kind-reload-operator # Rebuild and reload operator only ``` ## Quick Deploy diff --git a/docs/internal/architecture/diagrams/component-structure.mmd b/docs/internal/architecture/diagrams/component-structure.mmd old mode 100644 new mode 100755 index 15f0a9956..6e2bb5112 --- a/docs/internal/architecture/diagrams/component-structure.mmd +++ b/docs/internal/architecture/diagrams/component-structure.mmd @@ -18,8 +18,8 @@ graph LR end subgraph "Development Commands" - LocalUp[make local-up
🚀 Complete Stack] - LocalRebuild[make local-rebuild
♻️ Rebuild & Reload] + LocalUp[make kind-up
🚀 Complete Stack] + LocalRebuild[make kind-rebuild
♻️ Rebuild & Reload] Deploy[make deploy
📦 Production] BuildPush[make build-all push-all
🏗️ Container Images] end diff --git a/docs/internal/architecture/diagrams/deployment-stack.mmd b/docs/internal/architecture/diagrams/deployment-stack.mmd old mode 100644 new mode 100755 index 78b6d721c..533633d31 --- a/docs/internal/architecture/diagrams/deployment-stack.mmd +++ b/docs/internal/architecture/diagrams/deployment-stack.mmd @@ -9,8 +9,8 @@ graph TD subgraph "Local Development" KIND[Kind] CRC[OpenShift Local/CRC] - LocalUp[make local-up] - LocalRebuild[make local-rebuild
♻️ Rebuild & Reload] + LocalUp[make kind-up] + LocalRebuild[make kind-rebuild
♻️ Rebuild & Reload] end subgraph "Production" diff --git a/docs/internal/developer/README.md b/docs/internal/developer/README.md old mode 100644 new mode 100755 index cfe23ba4d..d7db9decf --- a/docs/internal/developer/README.md +++ b/docs/internal/developer/README.md @@ -97,7 +97,7 @@ make lint make test # Test locally -make local-up +make kind-up ``` ### 4. Submit PR @@ -119,7 +119,7 @@ make build-backend # Build backend only ### Local Development ```bash -make local-up # Start local environment +make kind-up # Start local environment make local-status # Check status make local-logs # View logs make local-down # Stop environment diff --git a/docs/internal/developer/local-development/kind.md b/docs/internal/developer/local-development/kind.md old mode 100644 new mode 100755 index 6f83a1dfc..790525443 --- a/docs/internal/developer/local-development/kind.md +++ b/docs/internal/developer/local-development/kind.md @@ -374,8 +374,8 @@ lsof -i:8080 # Find what's using the port **Fix:** ```bash # Auto-detect and use native architecture -make local-clean -make local-up +make kind-down +make kind-up ``` **Diagnosis:** Run `make check-architecture` to verify native builds are enabled. diff --git a/tests/README.md b/tests/README.md old mode 100644 new mode 100755 index 5c97785b4..23c595897 --- a/tests/README.md +++ b/tests/README.md @@ -130,7 +130,7 @@ make local-test-dev ```bash # Start environment -make local-up +make kind-up # Wait for pods to be ready sleep 30 @@ -216,7 +216,7 @@ make local-troubleshoot #### "Backend not responding" ```bash make local-logs-backend -make local-reload-backend +make kind-reload-backend ``` ## Writing New Tests @@ -309,7 +309,7 @@ When adding features to the local development environment: Wait for pods to be ready before running tests: ```bash -make local-up +make kind-up sleep 30 make local-test-dev ``` @@ -346,8 +346,8 @@ Run with verbose output: - **Before every PR** - `make local-test-dev` - **Weekly** - Full cleanup and restart ```bash - make local-clean - make local-up + make kind-down + make kind-up make local-test-dev ```