cloudfoundry/cf-k8s-controllers

View on GitHub
controllers/api/v1alpha1/constants.go

Summary

Maintainability
A
0 mins
Test Coverage
package v1alpha1

const (
    BuildpackLifecycle LifecycleType = "buildpack"
    DockerPackage      PackageType   = "docker"

    StartedState AppState = "STARTED"
    StoppedState AppState = "STOPPED"

    HTTPHealthCheckType    HealthCheckType = "http"
    PortHealthCheckType    HealthCheckType = "port"
    ProcessHealthCheckType HealthCheckType = "process"

    StatusConditionReady = "Ready"
)