UNPKG

cdk8s-plus-28

Version:

cdk8s+ is a software development framework that provides high level abstractions for authoring Kubernetes applications. cdk8s-plus-28 synthesizes Kubernetes manifests for Kubernetes 1.28.0

22 lines (21 loc) 680 B
import { Container } from './container'; import * as k8s from './imports/k8s'; import { ConnectionScheme } from './probe'; /** * Utility class to implement the conversion between our API and the k8s action * structure. Used both for probes and handlers. * * @internal */ export declare class Action { static fromTcpSocket(container: Container, options?: { port?: number; host?: string; }): k8s.TcpSocketAction; static fromCommand(command: string[]): k8s.ExecAction; static fromHttpGet(container: Container, path: string, options?: { port?: number; scheme?: ConnectionScheme; host?: string; }): k8s.HttpGetAction; }