Files
operator/src/instances/deployment.ts
Morten Olsen b8bb16ccbb updates
2025-08-12 22:32:09 +02:00

12 lines
341 B
TypeScript

import type { V1Deployment } from '@kubernetes/client-node';
import { ResourceInstance } from '../services/resources/resources.ts';
class DeploymentInstance extends ResourceInstance<V1Deployment> {
public get ready() {
return this.exists && this.status?.readyReplicas === this.status?.replicas;
}
}
export { DeploymentInstance };