Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/kubernetes_apis/builtin/apps@v1/mod.ts>StatefulSet

REST focused Typescript classes for Kubernetes APIs, and tools for generating API interfaces
Latest
interface StatefulSet
import { type StatefulSet } from "https://deno.land/x/kubernetes_apis@v0.5.0/builtin/apps@v1/mod.ts";

StatefulSet represents a set of pods with consistent identities. Identities are defined as:

  • Network: A single stable DNS and hostname.
  • Storage: As many VolumeClaims as requested.

The StatefulSet guarantees that a given network identity will always map to the same storage identity.

Properties

optional
apiVersion: "apps/v1"
optional
kind: "StatefulSet"
optional
metadata: MetaV1.ObjectMeta | null
optional
spec: StatefulSetSpec | null
optional
status: StatefulSetStatus | null