UNPKG

kubernetes-fluent-client

Version:

A @kubernetes/client-node fluent API wrapper that leverages K8s Server Side Apply.

13 lines (12 loc) 395 B
// SPDX-License-Identifier: Apache-2.0 // SPDX-FileCopyrightText: 2023-Present The Kubernetes Fluent Client Authors /** * GenericKind is a generic Kubernetes object that can be used to represent any Kubernetes object * that is not explicitly supported. This can be used on its own or as a base class for * other types. */ export class GenericKind { apiVersion; kind; metadata; }