kubernetes-client
kubernetes-client copied to clipboard
Simplified Kubernetes API client for Node.js.
Based on the documentation it supports Kubernetes 1.7 to 1.13 but 1.7 is already deprecated in most systems and in the major public cloud services 1.14+ is ready available. Is...
Bumps [standard-version](https://github.com/conventional-changelog/standard-version) from 7.1.0 to 8.0.1. Release notes Sourced from standard-version's releases. standard-version v8.0.1 Bug Fixes deps: update dependency conventional-changelog to v3.1.21 (#586) (fd456c9) deps: update dependency conventional-changelog-conventionalcommits to v4.3.0...
Clock skew may cause an error about id_token issued in the future. `openid-client` lib provides a tolerance to solve this. https://github.com/panva/node-openid-client/blob/master/docs/README.md#customizing-clock-skew-tolerance
In Kubernetes v1.16 the `apiextensions.k8s.io/v1beta1` is being marked as deprecated and due to be removed in Kubernetes v1.19: https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG/CHANGELOG-1.16.md#deprecations-and-removals kubernetes-client/javascript added support for `apiextensions.k8s.io/v1` from v0.12.0. kubernetes-client/javascript#438
I would like to run a cronjob programmatically using the following command, Can anyone help on this? `kubectl create job --from=cronjob/test-job test1`
Hacky, but addresses https://github.com/godaddy/kubernetes-client/issues/633 and https://github.com/godaddy/kubernetes-client/issues/636
If you have a crd with a plural that is not as simple as most e.g. `Repositories` and the singular is `Repository` When you make a call using the client...
Hi guys, we realised that using: `client.apis['some.api'].watch.some_plural.getStream()` is no longer supported in 9.0.0. We tried to do: ``` const stream = await client.apis["dtk.io"].v1alpha1.some_plural.getStream(); const jsonStream = new JSONStream(); stream.pipe(jsonStream); jsonStream.on("data",...