Documentation
¶
Index ¶
Constants ¶
View Source
const ( // General constants KodeFinalizerName = "kode.jacero.io/kode-finalizer" EntryPointFinalizerName = "kode.jacero.io/entrypoint-finalizer" PVCFinalizerName = "kode.jacero.io/kode-pvc-finalizer" // Resource related constants DefaultKodeVolumeStorageName = "kode-storage" DefaultKodePodPort = 3000 // Credential related constants DefaultUsername = "abc" // These are the condition types that are used in the status of the Kode and EntryPoint resources // ConditionTypeReady indicates that the resource is fully operational and prepared to serve its intended purpose. ConditionTypeReady ConditionType = "Ready" // ConditionTypeAvailable indicates that the resource is accessible and can actively serve requests or perform its function. ConditionTypeAvailable ConditionType = "Available" // ConditionTypeProgressing indicates that the resource is actively working towards a desired state. ConditionTypeProgressing ConditionType = "Progressing" // ConditionTypeDegraded indicates that the resource is operational but not functioning optimally or with full capabilities. ConditionTypeDegraded ConditionType = "Degraded" // ConditionTypeError indicates that the resource has encountered an error state that requires attention. ConditionTypeError ConditionType = "Error" // ConditionTypeConfigured indicates that the resource has been properly configured with all necessary settings. ConditionTypeConfigured ConditionType = "Configured" // ConditionTypeValidated indicates that the resource has been validated and is ready for provisioning. ConditionTypeValidated ConditionType = "Validated" // ConditionTypeHTTPRouteReady indicates that the HTTP route is available and can be accessed. ConditionTypeHTTPRouteReady ConditionType = "HTTPRouteReady" // ConditionTypeHTTPSRouteReady indicates that the HTTPS route is available and can be accessed. ConditionTypeHTTPSRouteReady ConditionType = "HTTPSRouteReady" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ConditionType ¶
type ConditionType string
Click to show internal directories.
Click to hide internal directories.