Skip to content

Commit 9e0a228

Browse files
committed
updated steps for configuring HKube
1 parent 3fc749c commit 9e0a228

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

site/learn/InstallHkubeCLI.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,21 @@ export os="linux" # or macos
4545
### Step 2: Configure HKube
4646
1. **Set the HKube API endpoint:**
4747
```bash
48-
hkubectl config set endpoint ${KUBERNETES-MASTER-IP}
48+
hkubectl config set endpoint <domain>
4949
```
50+
> Replace <domain> with the domain in your URL when accessing HKube.
5051
2. **Handle self-signed certificates (if applicable):**
5152
```bash
5253
hkubectl config set rejectUnauthorized false
5354
```
54-
3. **Verify Kubernetes configuration:** Ensure kubectl is correctly configured to connect to your cluster:
55+
3. **Login to your HKube user:**
5556
```bash
56-
kubectl get nodes
57+
hkubectl config set username <your_username>
58+
hkubectl config set password <your_password>
59+
```
60+
4. **Verify hkubectl configuration:** Ensure hkubectl is correctly configured and connected to your cluster by running for example:
61+
```bash
62+
hkubectl algorithm list
5763
```
5864

5965
---

0 commit comments

Comments
 (0)