14 lines
495 B
Go
14 lines
495 B
Go
package v1alpha1
|
|
|
|
const (
|
|
// the name of the sidecar container
|
|
SIDECARCONTAINER_NAME string = "formol"
|
|
// the name of the container we backup when there are more than 1 container in the pod
|
|
TARGETCONTAINER_TAG string = "FORMOL_TARGET"
|
|
// Used by both the backupsession and restoresession controllers to identified the target deployment
|
|
TARGET_NAME string = "TARGET_NAME"
|
|
// Used by the backupsession controller
|
|
POD_NAME string = "POD_NAME"
|
|
POD_NAMESPACE string = "POD_NAMESPACE"
|
|
)
|