mirror of
https://github.com/sailor-sh/CK-X.git
synced 2026-05-25 01:42:47 +00:00
update refs
This commit is contained in:
@@ -17,13 +17,13 @@ This guide provides instructions for deploying the CK-X Simulator on different o
|
||||
Open Terminal and run:
|
||||
|
||||
```bash
|
||||
curl -fsSL https://raw.githubusercontent.com/nishanb/CK-X/master/scripts/install.sh | bash
|
||||
curl -fsSL https://raw.githubusercontent.com/sailor-sh/CK-X/master/scripts/install.sh | bash
|
||||
```
|
||||
|
||||
or, if the current user does not have the permission to run docker commands:
|
||||
|
||||
```bash
|
||||
curl -fsSL https://raw.githubusercontent.com/nishanb/CK-X/master/scripts/install.sh | sudo bash
|
||||
curl -fsSL https://raw.githubusercontent.com/sailor-sh/CK-X/master/scripts/install.sh | sudo bash
|
||||
```
|
||||
|
||||
### Windows
|
||||
@@ -31,7 +31,7 @@ curl -fsSL https://raw.githubusercontent.com/nishanb/CK-X/master/scripts/install
|
||||
Open PowerShell as Administrator and run:
|
||||
|
||||
```powershell
|
||||
irm https://raw.githubusercontent.com/nishanb/CK-X/master/scripts/install.ps1 | iex
|
||||
irm https://raw.githubusercontent.com/sailor-sh/CK-X/master/scripts/install.ps1 | iex
|
||||
```
|
||||
|
||||
## Manual Installation
|
||||
@@ -40,7 +40,7 @@ irm https://raw.githubusercontent.com/nishanb/CK-X/master/scripts/install.ps1 |
|
||||
|
||||
1. Clone the repository:
|
||||
```bash
|
||||
git clone https://github.com/nishanb/CK-X.git
|
||||
git clone https://github.com/sailor-sh/CK-X.git
|
||||
cd CK-X
|
||||
```
|
||||
|
||||
@@ -54,8 +54,8 @@ irm https://raw.githubusercontent.com/nishanb/CK-X/master/scripts/install.ps1 |
|
||||
If you prefer to install manually or the quick install doesn't work:
|
||||
|
||||
1. Download the installation script:
|
||||
- Linux/macOS: [install.sh](https://raw.githubusercontent.com/nishanb/CK-X/master/scripts/install.sh)
|
||||
- Windows: [install.ps1](https://raw.githubusercontent.com/nishanb/CK-X/master/scripts/install.ps1)
|
||||
- Linux/macOS: [install.sh](https://raw.githubusercontent.com/sailor-sh/CK-X/master/scripts/install.sh)
|
||||
- Windows: [install.ps1](https://raw.githubusercontent.com/sailor-sh/CK-X/master/scripts/install.ps1)
|
||||
|
||||
2. Run the script:
|
||||
- Linux/macOS:
|
||||
@@ -124,7 +124,7 @@ docker compose up -d
|
||||
|
||||
If you encounter issues:
|
||||
1. Check the logs: `docker compose logs -f`
|
||||
2. Visit our [GitHub Issues](https://github.com/nishanb/CK-X/issues)
|
||||
2. Visit our [GitHub Issues](https://github.com/sailor-sh/CK-X/issues)
|
||||
3. Contact support with logs and system information
|
||||
|
||||
## Uninstallation
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
# Supports multi-architecture builds (linux/amd64 and linux/arm64)
|
||||
|
||||
# Set variables
|
||||
DOCKER_HUB_USERNAME=${DOCKER_HUB_USERNAME:-nishanb}
|
||||
DOCKER_HUB_USERNAME=${DOCKER_HUB_USERNAME:}
|
||||
REGISTRY="${DOCKER_HUB_USERNAME}"
|
||||
SKIP_LOGIN_CHECK=${SKIP_LOGIN_CHECK:-false}
|
||||
PLATFORMS="linux/amd64,linux/arm64"
|
||||
|
||||
@@ -46,7 +46,7 @@ try {
|
||||
Write-ColorOutput "CK-X Simulator: Kubernetes Certification Exam Simulator" "Cyan"
|
||||
Write-ColorOutput "Practice in a realistic environment for CKA, CKAD, and more" "Cyan"
|
||||
Write-ColorOutput "==============================================================" "Cyan"
|
||||
Write-ColorOutput " Facing any issues? Please report at: https://github.com/nishanb/CK-X/issues" "Cyan"
|
||||
Write-ColorOutput " Facing any issues? Please report at: https://github.com/sailor-sh/CK-X/issues" "Cyan"
|
||||
Write-Host ""
|
||||
}
|
||||
|
||||
@@ -258,7 +258,7 @@ try {
|
||||
|
||||
# Download docker-compose.yml
|
||||
Write-ColorOutput "Downloading Docker Compose file..." "Yellow"
|
||||
$composeUrl = "https://raw.githubusercontent.com/nishanb/ck-x/master/docker-compose.yaml"
|
||||
$composeUrl = "https://raw.githubusercontent.com/sailor-sh/CK-X/master/docker-compose.yaml"
|
||||
|
||||
if (Test-Command curl) {
|
||||
curl.exe -fsSL $composeUrl -o docker-compose.yml
|
||||
|
||||
@@ -23,7 +23,7 @@ print_header() {
|
||||
echo -e "${CYAN}CK-X Simulator: Kubernetes Certification Exam Simulator${NC}"
|
||||
echo -e "${CYAN}Practice in a realistic environment for CKA, CKAD, and more${NC}"
|
||||
echo -e "${CYAN}==============================================================${NC}"
|
||||
echo -e "${CYAN} Facing any issues? Please report at: https://github.com/nishanb/CK-X/issues${NC}"
|
||||
echo -e "${CYAN} Facing any issues? Please report at: https://github.com/sailor-sh/CK-X/issues${NC}"
|
||||
echo
|
||||
}
|
||||
|
||||
@@ -184,7 +184,7 @@ main() {
|
||||
|
||||
# Download docker-compose.yml
|
||||
echo -e "${YELLOW}Downloading Docker Compose file...${NC}"
|
||||
curl -fsSL https://raw.githubusercontent.com/nishanb/ck-x/master/docker-compose.yaml -o docker-compose.yml
|
||||
curl -fsSL https://raw.githubusercontent.com/sailor-sh/CK-X/master/docker-compose.yaml -o docker-compose.yml
|
||||
|
||||
if [ ! -f docker-compose.yml ]; then
|
||||
echo -e "${RED}✗ Failed to download docker-compose.yml${NC}"
|
||||
|
||||
Reference in New Issue
Block a user