github.com/kubeshop/testkube@v1.17.23/cmd/tcl/testworkflow-init/constants/commands.go (about)

     1  package constants
     2  
     3  const (
     4  	ArgSeparator      = "--"
     5  	ArgInit           = "-i"
     6  	ArgInitLong       = "--init"
     7  	ArgCondition      = "-c"
     8  	ArgConditionLong  = "--cond"
     9  	ArgResult         = "-r"
    10  	ArgResultLong     = "--result"
    11  	ArgTimeout        = "-t"
    12  	ArgTimeoutLong    = "--timeout"
    13  	ArgComputeEnv     = "-e"
    14  	ArgComputeEnvLong = "--env"
    15  	ArgNegative       = "-n"
    16  	ArgNegativeLong   = "--negative"
    17  	ArgDebug          = "--debug"
    18  	ArgRetryUntil     = "--retryUntil" // TODO: Replace when multi-level retry will be there
    19  	ArgRetryCount     = "--retryCount" // TODO: Replace when multi-level retry will be there
    20  )