11 lines
301 B
TypeScript
11 lines
301 B
TypeScript
import type { V1StatefulSet } from '@kubernetes/client-node';
|
|
|
|
import { Resource } from '../resources/resource/resource.js';
|
|
|
|
class StatefulSet extends Resource<V1StatefulSet> {
|
|
public static readonly apiVersion = 'apps/v1';
|
|
public static readonly kind = 'StatefulSet';
|
|
}
|
|
|
|
export { StatefulSet };
|