kubernetesjs 0.4.0 → 0.5.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 +25 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -31,7 +31,7 @@ yarn add kubernetesjs
|
|
|
31
31
|
|
|
32
32
|
```
|
|
33
33
|
|
|
34
|
-
## Example
|
|
34
|
+
## Example
|
|
35
35
|
|
|
36
36
|
```js
|
|
37
37
|
import { KubernetesClient } from "kubernetesjs";
|
|
@@ -74,3 +74,27 @@ client.listCoreV1NamespacedPod({
|
|
|
74
74
|
console.error('Failed to fetch pods:', reason);
|
|
75
75
|
});
|
|
76
76
|
```
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
## Related
|
|
80
|
+
|
|
81
|
+
Checkout these related projects:
|
|
82
|
+
|
|
83
|
+
* [`schema-typescript`](https://github.com/cosmology-tech/schema-typescript/tree/main/packages/schema-typescript)
|
|
84
|
+
Provides robust tools for handling JSON schemas and converting them to TypeScript interfaces with ease and efficiency.
|
|
85
|
+
* [`@schema-typescript/cli`](https://github.com/cosmology-tech/schema-typescript/tree/main/packages/cli)
|
|
86
|
+
CLI is the command line utility for `schema-typescript`.
|
|
87
|
+
* [`schema-sdk`](https://github.com/cosmology-tech/schema-typescript/tree/main/packages/schema-sdk)
|
|
88
|
+
Provides robust tools for handling OpenAPI schemas and converting them to TypeScript clients with ease and efficiency.
|
|
89
|
+
* [`starship`](https://github.com/cosmology-tech/starship) Unified Testing and Development for the Interchain.
|
|
90
|
+
|
|
91
|
+
## Credits
|
|
92
|
+
|
|
93
|
+
🛠 Built by Cosmology — if you like our tools, please consider delegating to [our validator ⚛️](https://cosmology.zone/validator)
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
## Disclaimer
|
|
97
|
+
|
|
98
|
+
AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED “AS IS”, AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.
|
|
99
|
+
|
|
100
|
+
No developer or entity involved in creating this software will be liable for any claims or damages whatsoever associated with your use, inability to use, or your interaction with other users of the code, including any direct, indirect, incidental, special, exemplary, punitive or consequential damages, or loss of profits, cryptocurrencies, tokens, or anything else of value.
|