@kubevirt-ui/kubevirt-api
    Preparing search index...

    Interface V1VirtualMachineInstanceReplicaSet

    VirtualMachineInstance is the VirtualMachineInstance Definition. It represents a virtual machine in the runtime environment of kubernetes.

    interface V1VirtualMachineInstanceReplicaSet {
        apiVersion?: string;
        kind?: string;
        metadata?: K8sIoApimachineryPkgApisMetaV1ObjectMeta;
        spec: V1VirtualMachineInstanceReplicaSetSpec;
        status?: {
            conditions?: V1VirtualMachineInstanceReplicaSetCondition[];
            labelSelector?: string;
            readyReplicas?: number;
            replicas?: number;
        };
    }
    Index

    Properties

    apiVersion?: string

    APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources

    kind?: string

    Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds

    ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.

    {}
    

    VirtualMachineInstance Spec contains the VirtualMachineInstance specification.

    {}
    
    status?: {
        conditions?: V1VirtualMachineInstanceReplicaSetCondition[];
        labelSelector?: string;
        readyReplicas?: number;
        replicas?: number;
    }

    Status is the high level overview of how the VirtualMachineInstance is doing. It contains information available to controllers and users.

    Type Declaration

    • Optionalconditions?: V1VirtualMachineInstanceReplicaSetCondition[]
    • OptionallabelSelector?: string

      Canonical form of the label selector for HPA which consumes it through the scale subresource.

    • OptionalreadyReplicas?: number

      The number of ready replicas for this replica set.

      int32

    • Optionalreplicas?: number

      Total number of non-terminated pods targeted by this deployment (their labels match the selector).

      int32

    {}