deno-kubernetes_apis icon indicating copy to clipboard operation
deno-kubernetes_apis copied to clipboard

REST focused Typescript classes for Kubernetes APIs, and tools for generating API interfaces

Results 2 deno-kubernetes_apis issues
Sort by recently updated
recently updated
newest added

Hi, I'm trying to run this code ``` import { autoDetectClient, readAllItems, Reflector} from "https://deno.land/x/[email protected]/mod.ts"; import { CoreV1Api } from 'https://deno.land/x/kubernetes_apis/builtin/core@v1/mod.ts'; const client = await autoDetectClient(); const coreApi = new...

I've created a custom resource definition and I see the api for CustomResourceDefinitions, but how do I then use this api to query for my custom resources?

question