All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yahoo.vespa.hosted.controller.deployment.RunStatus Maven / Gradle / Ivy

// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.controller.deployment;

/**
 * Status of jobs run by a {@link JobController}.
 *
 * @author jonmv
 */
public enum RunStatus {

    /** Run is still proceeding normally, i.e., without failures. */
    running,

    /** Deployment was rejected due node allocation failure. */
    nodeAllocationFailure,

    /** Deployment of the real application was rejected because the package is faulty. */
    invalidApplication,

    /** Deployment of the real application was rejected, for other reasons. */
    deploymentFailed,

    /** Deployment timed out waiting for endpoint certificate */
    endpointCertificateTimeout,

    /** Installation of the real application timed out. */
    installationFailed,

    /** The verification tests failed. */
    testFailure,

    /** No tests, for a test job. */
    noTests,

    /** An unexpected error occurred. */
    error,

    /** Everything completed with great success! */
    success,

    /** Run was abandoned, due to job timeout or blocking a newer target for the same job. */
    aborted,

    /** Cancelled by a human being. */
    cancelled,

    /** Run should be reset to its starting state. Used for production tests. */
    reset,

    /** Deployment of the real application was rejected due to exceeding quota. */
    quotaExceeded

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy