openk8s 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -10
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -14,32 +14,29 @@ openk8s is a keyboard-driven TUI for browsing and managing Kubernetes clusters,
|
|
|
14
14
|
|------|----------|-------|
|
|
15
15
|
| [kubectl](https://kubernetes.io/docs/tasks/tools/) | yes | Must be configured with a valid kubeconfig |
|
|
16
16
|
| [helm](https://helm.sh/) | no | Enables HelmRelease management |
|
|
17
|
-
| [bun](https://bun.sh/) |
|
|
17
|
+
| [bun](https://bun.sh/) | yes | Required at runtime to execute the app |
|
|
18
18
|
|
|
19
19
|
## Installation
|
|
20
20
|
|
|
21
|
-
###
|
|
21
|
+
### npm (requires bun at runtime)
|
|
22
22
|
|
|
23
23
|
```bash
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
./dist/openk8s
|
|
24
|
+
npm install -g openk8s
|
|
25
|
+
openk8s
|
|
27
26
|
```
|
|
28
27
|
|
|
29
|
-
###
|
|
28
|
+
### bunx (no install needed)
|
|
30
29
|
|
|
31
30
|
```bash
|
|
32
|
-
npm install -g openk8s
|
|
33
|
-
# or
|
|
34
31
|
bunx openk8s
|
|
35
32
|
```
|
|
36
33
|
|
|
37
34
|
### From source
|
|
38
35
|
|
|
39
36
|
```bash
|
|
40
|
-
git clone https://github.com/
|
|
37
|
+
git clone https://github.com/leon19/openk8s
|
|
41
38
|
cd openk8s
|
|
42
|
-
|
|
39
|
+
npm install
|
|
43
40
|
bun run dev
|
|
44
41
|
```
|
|
45
42
|
|