
Product
Unify Your Security Stack with Socket Basics
A single platform for static analysis, secrets detection, container scanning, and CVE checks—built on trusted open source tools, ready to run out of the box.
@mittwald/kubernetes
Advanced tools
You can install this package via NPM:
$ npm install @mittwald/kubernetes
External configuration using a kubeconfig
file:
import {
FileBasedConfig,
KubernetesRESTClient,
KubernetesAPI,
} from "@mittwald/kubernetes";
const config = new FileBasedConfig("/home/mhelmich/.kube/config");
const client = new KubernetesRESTClient(config);
const api = new KubernetesAPI(client);
Internal configuration (when the client is running within a Kubernetes cluster):
import {
InClusterConfig,
KubernetesRESTClient,
KubernetesAPI,
} from "@mittwald/kubernetes";
const config = new InClusterConfig();
const client = new KubernetesRESTClient(config);
const api = new KubernetesAPI(client);
api
.core()
.v1()
.pods.namespace("default")
.list()
.then((pods) => {
console.log("Found " + pods.length + " Pods:");
pods.forEach((pod) => {
console.log(pod.metadata.name);
});
});
import {
InClusterConfig,
KubernetesRESTClient,
RatelimitingKubernetesRESTClient,
KubernetesAPI,
} from "@mittwald/kubernetes";
const config = new InClusterConfig();
const client = new KubernetesRESTClient(config);
const limitedClient = new RatelimitingKubernetesRESTClient(client);
const api = new KubernetesAPI(limitedClient);
api
.core()
.v1()
.pods.namespace("default")
.watch({ "some-label": "foo" }, (ev) => {
console.log(`Pod: ${ev.type}: ${ev.object}`);
});
If you have a package that offers a client for Custom Resource Definitions
(take a look at the
@mittwald/kubernetes-rook
package as an example), you can use the extend
method to add the respective
API client:
import { RookCustomResourceAPI } from "@mittwald/kubernetes-rook";
// ...
let extendedAPI = api.extend("rook", new RookCustomResourceAPI(client));
This library supports a reasonable subset of Kubernetes resources (these were implemented on an as-needed basis). Feel free to open a new issue or pull request to add support for additional API objects.
FAQs
Kubernetes client library
The npm package @mittwald/kubernetes receives a total of 439 weekly downloads. As such, @mittwald/kubernetes popularity was classified as not popular.
We found that @mittwald/kubernetes demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
A single platform for static analysis, secrets detection, container scanning, and CVE checks—built on trusted open source tools, ready to run out of the box.
Product
Socket is launching experimental protection for the Hugging Face ecosystem, scanning for malware and malicious payload injections inside model files to prevent silent AI supply chain attacks.
Research
/Security News
The Socket Threat Research Team uncovered a coordinated campaign that floods the Chrome Web Store with 131 rebranded clones of a WhatsApp Web automation extension to spam Brazilian users.