You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
547 B
20 lines
547 B
# Copyright (C) 2005-2024 Splunk Inc. All Rights Reserved.
|
|
|
|
# Two different modes for migration utility
|
|
MODES = {
|
|
"PRECHECK": "1",
|
|
"AUTO_REMEDIATION": "2",
|
|
}
|
|
|
|
MODES_STR_MAP = {
|
|
MODES["PRECHECK"]: "precheck",
|
|
MODES["AUTO_REMEDIATION"]: "auto remediation",
|
|
}
|
|
|
|
# Time limit of 12 hours before ITSI considers a job to be stale
|
|
# since remediation should not take more than 12 hours to complete.
|
|
UPGRADE_READINESS_JOB_TIMEOUT_LIMIT = 12 * 60 * 60
|
|
|
|
# Upgrade readiness dashboard url
|
|
UPGRADE_READINESS_URL = '/app/itsi/upgrade_readiness'
|