@kubernetes/client-node
Version:
NodeJS client for kubernetes
48 lines (47 loc) • 1.71 kB
TypeScript
/**
* Kubernetes
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* OpenAPI spec version: v1.32.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { V1DaemonSetUpdateStrategy } from '../models/V1DaemonSetUpdateStrategy.js';
import { V1LabelSelector } from '../models/V1LabelSelector.js';
import { V1PodTemplateSpec } from '../models/V1PodTemplateSpec.js';
/**
* DaemonSetSpec is the specification of a daemon set.
*/
export declare class V1DaemonSetSpec {
/**
* The minimum number of seconds for which a newly created DaemonSet pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready).
*/
'minReadySeconds'?: number;
/**
* The number of old history to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.
*/
'revisionHistoryLimit'?: number;
'selector': V1LabelSelector;
'template': V1PodTemplateSpec;
'updateStrategy'?: V1DaemonSetUpdateStrategy;
static readonly discriminator: string | undefined;
static readonly mapping: {
[index: string]: string;
} | undefined;
static readonly attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
format: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
format: string;
}[];
constructor();
}