From 49a489cd97eee13d60703f1a19d4ee7e9acc6168 Mon Sep 17 00:00:00 2001 From: Jean-Marc Andre Date: Wed, 17 Feb 2021 22:07:23 +0100 Subject: [PATCH] Added RestoreSession related constants --- api/v1alpha1/common.go | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/api/v1alpha1/common.go b/api/v1alpha1/common.go index f94867c..993f6a4 100644 --- a/api/v1alpha1/common.go +++ b/api/v1alpha1/common.go @@ -7,11 +7,14 @@ import ( type SessionState string const ( - New SessionState = "New" - Running SessionState = "Running" - Success SessionState = "Success" - Failure SessionState = "Failure" - Deleted SessionState = "Deleted" + New SessionState = "New" + Running SessionState = "Running" + Success SessionState = "Success" + Failure SessionState = "Failure" + Deleted SessionState = "Deleted" + TARGET_NAME string = "TARGET_NAME" + RESTORESESSION_NAMESPACE string = "RESTORESESSION_NAMESPACE" + RESTORESESSION_NAME string = "RESTORESESSION_NAME" ) type TargetStatus struct {