kubernetes-client
kubernetes-client copied to clipboard
Simplified Kubernetes API client for Node.js.
request has been deprecated, https://github.com/request/request/issues/3142 What's the plan to replace it with alternative? Thanks.
Our customer reported a vulnerability in bluemix-autoscaling-agent caused by "request" package. The vulnerability reports that ``` "The request package is vulnerable to Weak Authentication Algorithm. The function function in oauth.js...
Bumps [jose](https://github.com/panva/jose) from 1.25.0 to 1.28.1. Release notes Sourced from jose's releases. v1.28.1 Bug Fixes defer AES CBC w/ HMAC decryption after tag verification passes (08e1bc5), fixes CVE-2021-29443 v1.28.0 Features...
Bumps [y18n](https://github.com/yargs/y18n) from 4.0.0 to 4.0.1. Changelog Sourced from y18n's changelog. Change Log All notable changes to this project will be documented in this file. See standard-version for commit guidelines....
Suppose I have a custom resource like this: ```yaml --- apiVersion: example.com/v1 kind: Example metadata: # ... spec: foo: "bar" ``` When calling the following method: ```javascript client.apis['example.com'].v1.namespace('default').examples('name').patch({ body: [...
Do you have any options to set any filter or sort while fetching resource list ? await client.apis.apps.v1.namespaces('default').pods.get();
If I execute the sample code given in the Github readme. The node application throws error that client is not defined. The code I executed is const config = {...
I am trying to create a deployment using the following code snippet: ``` return client.apis.apps.v1.namespaces(namespace).deployments.post({ body: doc }) .then(function(res){ console.log(res) }).catch(function(e){ console.log(e) if (e.code !== 409) return Promise.reject(e); return client.apis.apps.v1.namespaces(namespace).deployments("dc-notebook-{{id}}").put({...
Hi i thought this was related to the `insecureSkipTlsVerify` option in the client but setting it to true doesn't seem to fix the issue.. ``` const client = new Client({...
Bumps [ini](https://github.com/isaacs/ini) from 1.3.5 to 1.3.7. Commits c74c8af 1.3.7 024b8b5 update deps, add linting 032fbaf Use Object.create(null) to avoid default object property hazards 2da9039 1.3.6 cfea636 better git push script,...