kubernetes-client icon indicating copy to clipboard operation
kubernetes-client copied to clipboard

Simplified Kubernetes API client for Node.js.

Results 116 kubernetes-client issues
Sort by recently updated
recently updated
newest added

We are trying to eventually mimic the functionality of `kubectl cp` through an exec.post() with your API. For now though we're just trying to get a dummy `ls` command to...

Looking at the examples of the implementation of watches for resources. How would the reconciliation work in the event that a creation/update/deletion event fails and needs to be retried again?...

### code example: [example link](https://github.com/godaddy/kubernetes-client/blob/de189a65fcf7cc5c3d711c7508e8beacbea4d444/examples/basic.js#L35-L42) ``` const replica = { spec: { replicas: 10 } } const replicaModify = await client.api.v1.namespaces('default').deployments(deploymentManifest.metadata.name).patch(body: replica); console.log('Replica Modification: ', replicaModify) ``` i've tried this...

This code allows the kubernetes client to work on aws linux (where child_process doesn't work). Firstly, it checks if the cluster is running on EKS - if so, it fetches...

I run the following code on CI with GKE authentication and I get the error below. When I SSH into machine where this error happened or when I run it...

Is there a call for "describe node [node-name]"? I need to get the number of pods running in a node and also know how much resources are being consumed by...

after getting this message kubernetes-client deprecated getInCluster see https://github.com/godaddy/kubernetes-client/blob/master/merging-with-kubernetes.md#request-kubeconfig- at .out/ReadOperator.js:7:48 I changed to new verion. That stopped working thios morning for no real reason so I consider it unstable...

This is the configMap I am trying to update and add data to: ``` kind: ConfigMap apiVersion: v1 metadata: name: my-config-map data: users.json: |- [ { name: 'user-one', age: 10...

# Unable to post in configmaps I am working on minikube this is the minikube start command log ``` * minikube 1.12.3 is available! Download it: https://github.com/kubernetes/minikube/releases/tag/v1.12.3 * To disable...