k8ts
Version:
Powerful framework for building Kubernetes manifests in TypeScript.
15 lines (13 loc) • 417 B
text/typescript
import { Kind } from "@k8ts/instruments"
export namespace networking {
export const _ = Kind.group("networking.k8s.io")
export type _ = typeof _
export namespace v1 {
export const _ = networking._.version("v1")
export type _ = typeof _
export namespace NetworkPolicy {
export const _ = v1._.kind("NetworkPolicy")
export type _ = typeof _
}
}
}