pipeline #5

Merged
mondo merged 28 commits from pipeline into main 2025-10-17 13:13:14 -05:00
8 changed files with 6 additions and 6 deletions
Showing only changes of commit 80242b9602 - Show all commits

View File

@@ -243,7 +243,7 @@ kubectl port-forward -n warehouse13 svc/warehouse13-api 8000:8000
### Helm Documentation
- **Full Helm Guide:** [HELM-DEPLOYMENT.md](./HELM-DEPLOYMENT.md)
- **Full Helm Guide:** [HELM-DEPLOYMENT.md](./docs/HELM-DEPLOYMENT.md)
- **Chart README:** [helm/warehouse13/README.md](./helm/warehouse13/README.md)
- **Quick Start:** [helm/warehouse13/QUICKSTART.md](./helm/warehouse13/QUICKSTART.md)
- **Example Configurations:**

View File

@@ -54,7 +54,7 @@ This script will:
```bash
# Option A: Use the helper script
./build-for-airgap.sh
./scripts/build-for-airgap.sh
# Option B: Build manually
cd frontend

View File

@@ -43,4 +43,4 @@ Note: Check your values.yaml configuration and update image repositories, resour
## Quick Start
See [../HELM-DEPLOYMENT.md](../HELM-DEPLOYMENT.md) for comprehensive deployment guide.
See [../docs/HELM-DEPLOYMENT.md](../docs/HELM-DEPLOYMENT.md) for comprehensive deployment guide.

View File

@@ -118,7 +118,7 @@ kubectl delete namespace warehouse13
## Next Steps
- **Full Documentation:** [README.md](./README.md)
- **Deployment Guide:** [../../HELM-DEPLOYMENT.md](../../HELM-DEPLOYMENT.md)
- **Deployment Guide:** [../../docs/HELM-DEPLOYMENT.md](../../docs/HELM-DEPLOYMENT.md)
- **Configuration Options:** [values.yaml](./values.yaml)
- **Example Configs:** [values-dev.yaml](./values-dev.yaml), [values-production.yaml](./values-production.yaml), [values-airgapped.yaml](./values-airgapped.yaml)

View File

@@ -30,7 +30,7 @@ fi
echo "Step 1: Building Angular frontend locally..."
echo "==========================================="
./build-for-airgap.sh
./scripts/build-for-airgap.sh
echo ""
echo "Step 2: Starting Docker containers..."

View File

@@ -18,7 +18,7 @@ else
echo " Expected: frontend/dist/frontend/browser"
echo ""
echo " You need to build the Angular app first:"
echo " Run: ./build-for-airgap.sh"
echo " Run: ./scripts/build-for-airgap.sh"
echo " OR: cd frontend && npm install && npm run build:prod"
echo ""
errors=$((errors + 1))