fix: correct URL pattern to /raw/branch/main for download compatibility
- Revert GIT_RAW_URL from /src/branch/main to /raw/branch/main in deployment scripts - Remove Forgejo references that were inadvertently re-added to README.md - Update changelog to document URL correction
This commit is contained in:
parent
509909de09
commit
c07c7afd6d
4 changed files with 8 additions and 6 deletions
|
|
@ -35,7 +35,7 @@ A comprehensive solution for deploying Wallarm filtering nodes on virtual machin
|
|||
Use the wrapper script to download all necessary tools:
|
||||
|
||||
```bash
|
||||
curl -fsSL "https://git.sechpoint.app/customer-engineering/wallarm/src/branch/main/setup.sh" | bash
|
||||
curl -fsSL "https://git.sechpoint.app/customer-engineering/wallarm/raw/branch/main/setup.sh" | bash
|
||||
```
|
||||
|
||||
This will download and make executable:
|
||||
|
|
|
|||
|
|
@ -19,10 +19,10 @@ and this project adheres to date-based versioning (YYYY-MM.x).
|
|||
- `GITLAB_WALLARM_IMAGE_URL` → `GIT_WALLARM_IMAGE_URL`
|
||||
- `GITLAB_WALLARM_CHECKSUM_URL` → `GIT_WALLARM_CHECKSUM_URL`
|
||||
- `GITLAB_REACHABLE` → `GIT_REACHABLE`
|
||||
- **URL structure**: Updated `GIT_RAW_URL` from `/-/raw/main` to `/src/branch/main` path
|
||||
- **URL structure**: Updated `GIT_RAW_URL` from `/-/raw/main` to `/raw/branch/main` path (corrected for download compatibility)
|
||||
- **Terminology**: Replaced all "GitLab" references in comments and log messages with "Git Repositorys"
|
||||
- **Documentation**: Updated README.md to reflect new terminology
|
||||
- **URL fix**: Updated setup.sh download URL in README.md from `/raw/branch/main/` to `/src/branch/main/`
|
||||
- **URL correction**: Corrected setup.sh download URL in README.md back to `/raw/branch/main/` pattern for download compatibility
|
||||
- **Branding**: Removed all Forgejo references from codebase and documentation for neutrality
|
||||
- **Fallback chains**: Simplified from three-tier to two-tier approach
|
||||
- Docker binary: `Git Repositorys → local dir → current dir` (removed `→ internal proxy`)
|
||||
|
|
@ -38,7 +38,9 @@ and this project adheres to date-based versioning (YYYY-MM.x).
|
|||
- All references to internal proxy/registry in error messages
|
||||
|
||||
### Technical Details
|
||||
- **Commit**: `3158ee7` (chore: refactor git references and remove internal registry fallback)
|
||||
- **Commits**:
|
||||
- `3158ee7` (chore: refactor git references and remove internal registry fallback)
|
||||
- `509909d` (chore: remove Forgejo references and fix setup URL)
|
||||
- **Files modified**: 4 files changed, additional modifications
|
||||
- `README.md` - Documentation updates and URL fixes
|
||||
- `setup.sh` - URL base update and Forgejo reference removal
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ fi
|
|||
|
||||
# Git Repositorys artifact URLs (primary source) - same as deployment script
|
||||
GIT_BASE_URL="https://git.sechpoint.app/customer-engineering/wallarm"
|
||||
GIT_RAW_URL="https://git.sechpoint.app/customer-engineering/wallarm/src/branch/main"
|
||||
GIT_RAW_URL="https://git.sechpoint.app/customer-engineering/wallarm/raw/branch/main"
|
||||
GIT_DOCKER_BINARY_URL="${GIT_RAW_URL}/binaries/docker-29.2.1.tgz"
|
||||
GIT_WALLARM_IMAGE_URL="${GIT_RAW_URL}/images/wallarm-node-6.11.0-rc1.tar.gz"
|
||||
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@ fi
|
|||
|
||||
# Git Repositorys artifact URLs (primary source)
|
||||
GIT_BASE_URL="https://git.sechpoint.app/customer-engineering/wallarm"
|
||||
GIT_RAW_URL="https://git.sechpoint.app/customer-engineering/wallarm/src/branch/main"
|
||||
GIT_RAW_URL="https://git.sechpoint.app/customer-engineering/wallarm/raw/branch/main"
|
||||
GIT_DOCKER_BINARY_URL="${GIT_RAW_URL}/binaries/docker-29.2.1.tgz"
|
||||
GIT_DOCKER_CHECKSUM_URL="${GIT_RAW_URL}/binaries/docker-29.2.1.tgz.sha256"
|
||||
GIT_WALLARM_IMAGE_URL="${GIT_RAW_URL}/images/wallarm-node-6.11.0-rc1.tar.gz"
|
||||
|
|
|
|||
Loading…
Reference in a new issue