Axinom Mosaic Libraries
    Preparing search index...

    Options used to set up liveliness and readiness endpoints.

    interface ILivenessReadinessOptions {
        defaultLiveness?: boolean;
        defaultReadiness?: boolean;
        enableLivenessEndpoint?: boolean;
        enableReadinessEndpoint?: boolean;
        livenessPath?: string;
        readinessPath?: string;
    }
    Index

    Properties

    defaultLiveness?: boolean

    defaultLiveness: the default value of the liveness state

    defaultReadiness?: boolean

    defaultReadiness: the default value of the readiness state

    enableLivenessEndpoint?: boolean

    enableLivenessEndpoint: expose a liveness probe endpoint or not

    enableReadinessEndpoint?: boolean

    enableReadinessEndpoint: expose a readiness probe endpoint or not

    livenessPath?: string

    livenessPath: the path to mount the liveness probe endpoint

    readinessPath?: string

    readinessPath: the path to mount the readiness probe endpoint