Skip to content

updated steps for configuring HKube #69

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: source
Choose a base branch
from
Open
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
12 changes: 9 additions & 3 deletions site/learn/InstallHkubeCLI.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,21 @@ export os="linux" # or macos
### Step 2: Configure HKube
1. **Set the HKube API endpoint:**
```bash
hkubectl config set endpoint ${KUBERNETES-MASTER-IP}
hkubectl config set endpoint <domain>
```
> Replace <domain> with the domain in your URL when accessing HKube.
2. **Handle self-signed certificates (if applicable):**
```bash
hkubectl config set rejectUnauthorized false
```
3. **Verify Kubernetes configuration:** Ensure kubectl is correctly configured to connect to your cluster:
3. **Login to your HKube user:**
```bash
kubectl get nodes
hkubectl config set username <your_username>
hkubectl config set password <your_password>
```
4. **Verify hkubectl configuration:** Ensure hkubectl is correctly configured and connected to your cluster by running for example:
```bash
hkubectl algorithm list
```

---
Expand Down