kube-watch
kube-watch copied to clipboard
Kubernetes Watch API for node
Your FOSSA integration was successful! Attached in this PR is a badge and license report to track scan status in your README. Below are docs for integrating FOSSA license checks...
If I keep running the watcher for a long time (approx an hour or so), I stop getting events. Anyway to keep the watch on continuously? ` ``` import KubeWatch...
1. `npm i kube-watch` 2. copy ```javascript import KubeWatch from 'kube-watch'; const pods = new KubeWatch('pods', { url: 'http://kube-api-server' // Kubernetes API URL }); pods .on('added', event => { console.log('Pod...
This is a common issue I've noticed amongst Kubernetes clients that integrate the watch API, the stream appears to not read in the entire buffer and doesn't return the most...
Hi, I wanted to use your library, but needed to add a few other things to it in order to get it working for my purposes. I've not fully tested...
Hi, I'm trying to get this working for a production setup and I need to use TLS, however the options needed for this ``` const services = new KubeWatch('services', {...
Reading this in the documentation leads me to believe I should be getting an `added` event for each pod on first run: ``` By default, kube-watch will first request Kubernetes...
Test suite should simulate workload using minikube to provide real tests.
Do some testing on Kubernetes 1.4 Verify that all resources are available