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

    Interface IoK8sApiResourceV1beta1DeviceTaint

    The device this taint is attached to has the "effect" on any claim which does not tolerate the taint and, through the claim, to pods using the claim.

    interface IoK8sApiResourceV1beta1DeviceTaint {
        effect: string;
        key: string;
        timeAdded?: string;
        value?: string;
    }
    Index

    Properties

    effect: string

    The effect of the taint on claims that do not tolerate the taint and through such claims on the pods using them. Valid effects are NoSchedule and NoExecute. PreferNoSchedule as used for nodes is not valid here.

    key: string

    The taint key to be applied to a device. Must be a label name.

    timeAdded?: string

    TimeAdded represents the time at which the taint was added. Added automatically during create or update if not set.

    value?: string

    The taint value corresponding to the taint key. Must be a label value.