2018-08-15 09:26:38 +02:00
|
|
|
import com.sap.piper.ConfigurationHelper
|
2017-07-11 15:12:03 +02:00
|
|
|
import com.sap.piper.Utils
|
2019-01-28 12:32:24 +02:00
|
|
|
import com.sap.piper.tools.neo.DeployMode
|
|
|
|
import com.sap.piper.tools.neo.NeoCommandHelper
|
|
|
|
import com.sap.piper.tools.neo.WarAction
|
2018-08-15 09:26:38 +02:00
|
|
|
import groovy.transform.Field
|
|
|
|
|
2019-01-28 12:32:24 +02:00
|
|
|
import static com.sap.piper.Prerequisites.checkScript
|
|
|
|
|
2018-11-29 10:54:05 +02:00
|
|
|
@Field String STEP_NAME = getClass().getName()
|
2019-01-28 12:32:24 +02:00
|
|
|
@Field Set GENERAL_CONFIG_KEYS = [
|
|
|
|
'neo'
|
|
|
|
]
|
|
|
|
@Field Set STEP_CONFIG_KEYS = GENERAL_CONFIG_KEYS.plus([
|
2018-08-15 09:26:38 +02:00
|
|
|
'dockerEnvVars',
|
|
|
|
'dockerImage',
|
|
|
|
'dockerOptions',
|
2019-03-18 15:55:51 +02:00
|
|
|
'neoHome',
|
|
|
|
'source'
|
2019-01-28 12:32:24 +02:00
|
|
|
])
|
|
|
|
|
2018-08-15 09:26:38 +02:00
|
|
|
@Field Set PARAMETER_KEYS = STEP_CONFIG_KEYS.plus([
|
|
|
|
'deployMode',
|
|
|
|
'warAction'
|
|
|
|
])
|
2018-02-20 16:30:34 +02:00
|
|
|
|
2018-08-30 16:33:07 +02:00
|
|
|
void call(parameters = [:]) {
|
2019-01-28 12:32:24 +02:00
|
|
|
handlePipelineStepErrors(stepName: STEP_NAME, stepParameters: parameters) {
|
2017-12-11 12:15:51 +02:00
|
|
|
|
2018-10-31 09:40:12 +02:00
|
|
|
def script = checkScript(this, parameters) ?: this
|
2018-09-21 16:55:31 +02:00
|
|
|
|
2018-11-08 10:44:11 +02:00
|
|
|
def utils = parameters.utils ?: new Utils()
|
2017-12-11 14:55:07 +02:00
|
|
|
|
2017-12-11 12:15:51 +02:00
|
|
|
prepareDefaultValues script: script
|
|
|
|
|
2018-08-15 09:26:38 +02:00
|
|
|
// load default & individual configuration
|
2019-03-13 16:32:31 +02:00
|
|
|
ConfigurationHelper configHelper = ConfigurationHelper.newInstance(this)
|
2018-09-07 10:08:16 +02:00
|
|
|
.loadStepDefaults()
|
2018-08-15 09:26:38 +02:00
|
|
|
.mixinGeneralConfig(script.commonPipelineEnvironment, GENERAL_CONFIG_KEYS)
|
2019-01-28 13:35:35 +02:00
|
|
|
.mixinStepConfig(script.commonPipelineEnvironment, STEP_CONFIG_KEYS)
|
|
|
|
.mixinStageConfig(script.commonPipelineEnvironment, parameters.stageName ?: env.STAGE_NAME, STEP_CONFIG_KEYS)
|
2019-01-28 12:32:24 +02:00
|
|
|
.addIfEmpty('source', script.commonPipelineEnvironment.getMtarFilePath())
|
2019-01-28 13:35:35 +02:00
|
|
|
.mixin(parameters, PARAMETER_KEYS)
|
2019-03-20 13:14:57 +02:00
|
|
|
.collectValidationFailures()
|
2019-01-28 12:32:24 +02:00
|
|
|
.withPropertyInValues('deployMode', DeployMode.stringValues())
|
2019-03-13 16:32:31 +02:00
|
|
|
|
|
|
|
Map configuration = configHelper.use()
|
|
|
|
|
|
|
|
DeployMode deployMode = DeployMode.fromString(configuration.deployMode)
|
|
|
|
|
2019-03-20 13:14:57 +02:00
|
|
|
def isWarParamsDeployMode = { deployMode == DeployMode.WAR_PARAMS },
|
|
|
|
isNotWarPropertiesDeployMode = {deployMode != DeployMode.WAR_PROPERTIES_FILE}
|
2019-03-13 16:32:31 +02:00
|
|
|
|
|
|
|
configHelper
|
2019-03-20 13:14:57 +02:00
|
|
|
.withMandatoryProperty('source')
|
|
|
|
.withMandatoryProperty('neo/credentialsId')
|
2019-03-13 16:32:31 +02:00
|
|
|
.withMandatoryProperty('neo/application', null, isWarParamsDeployMode)
|
|
|
|
.withMandatoryProperty('neo/runtime', null, isWarParamsDeployMode)
|
|
|
|
.withMandatoryProperty('neo/runtimeVersion', null, isWarParamsDeployMode)
|
2019-03-20 13:14:57 +02:00
|
|
|
.withMandatoryProperty('neo/host', null, isNotWarPropertiesDeployMode)
|
|
|
|
.withMandatoryProperty('neo/account', null, isNotWarPropertiesDeployMode)
|
|
|
|
//
|
|
|
|
// call 'use()' a second time in order to get the collected validation failures
|
|
|
|
// since the map did not change, it is not required to replace the previous configuration map.
|
|
|
|
.use()
|
2018-08-30 16:33:07 +02:00
|
|
|
|
2018-08-30 11:03:34 +02:00
|
|
|
utils.pushToSWA([
|
2018-08-30 16:33:07 +02:00
|
|
|
step: STEP_NAME,
|
2019-01-21 09:47:34 +02:00
|
|
|
stepParamKey1: 'deployMode',
|
2018-08-30 11:03:34 +02:00
|
|
|
stepParam1: configuration.deployMode == 'mta'?'mta':'war', // ['mta', 'warParams', 'warPropertiesFile']
|
2019-01-21 09:47:34 +02:00
|
|
|
stepParamKey2: 'warAction',
|
2018-10-30 17:22:42 +02:00
|
|
|
stepParam2: configuration.warAction == 'rolling-update'?'blue-green':'standard', // ['deploy', 'deploy-mta', 'rolling-update']
|
2019-01-21 09:47:34 +02:00
|
|
|
stepParamKey3: 'scriptMissing',
|
2018-11-08 10:44:11 +02:00
|
|
|
stepParam3: parameters?.script == null,
|
2018-08-30 11:03:34 +02:00
|
|
|
], configuration)
|
2017-12-11 12:15:51 +02:00
|
|
|
|
2019-01-28 12:32:24 +02:00
|
|
|
|
2019-01-29 10:48:52 +02:00
|
|
|
withCredentials([usernamePassword(
|
|
|
|
credentialsId: configuration.neo.credentialsId,
|
|
|
|
passwordVariable: 'NEO_PASSWORD',
|
|
|
|
usernameVariable: 'NEO_USERNAME')]) {
|
|
|
|
|
|
|
|
assertPasswordRules(NEO_PASSWORD)
|
|
|
|
|
|
|
|
dockerExecute(
|
|
|
|
script: script,
|
|
|
|
dockerImage: configuration.dockerImage,
|
|
|
|
dockerEnvVars: configuration.dockerEnvVars,
|
|
|
|
dockerOptions: configuration.dockerOptions
|
|
|
|
) {
|
|
|
|
NeoCommandHelper neoCommandHelper = new NeoCommandHelper(
|
|
|
|
this,
|
|
|
|
deployMode,
|
|
|
|
configuration.neo,
|
|
|
|
NEO_USERNAME,
|
|
|
|
NEO_PASSWORD,
|
|
|
|
configuration.source
|
|
|
|
)
|
|
|
|
|
|
|
|
lock("$STEP_NAME :${neoCommandHelper.resourceLock()}") {
|
|
|
|
deploy(script, utils, configuration, neoCommandHelper, configuration.dockerImage, deployMode)
|
2019-01-28 12:32:24 +02:00
|
|
|
}
|
2017-12-11 12:15:51 +02:00
|
|
|
}
|
|
|
|
}
|
2019-01-28 12:32:24 +02:00
|
|
|
}
|
|
|
|
}
|
2017-12-11 12:15:51 +02:00
|
|
|
|
2019-01-28 12:32:24 +02:00
|
|
|
private deploy(script, utils, Map configuration, NeoCommandHelper neoCommandHelper, dockerImage, DeployMode deployMode) {
|
2018-01-16 11:54:17 +02:00
|
|
|
|
2019-01-28 12:32:24 +02:00
|
|
|
try {
|
|
|
|
sh "mkdir -p logs/neo"
|
|
|
|
withEnv(["neo_logging_location=${pwd()}/logs/neo"]) {
|
|
|
|
if (deployMode.isWarDeployment()) {
|
|
|
|
ConfigurationHelper.newInstance(this, configuration).withPropertyInValues('warAction', WarAction.stringValues())
|
|
|
|
WarAction warAction = WarAction.fromString(configuration.warAction)
|
2017-12-11 12:15:51 +02:00
|
|
|
|
2019-01-28 12:32:24 +02:00
|
|
|
if (warAction == WarAction.ROLLING_UPDATE) {
|
|
|
|
if (!isAppRunning(neoCommandHelper)) {
|
|
|
|
warAction = WarAction.DEPLOY
|
|
|
|
echo "Rolling update not possible because application is not running. Falling back to standard deployment."
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
echo "Link to the application dashboard: ${neoCommandHelper.cloudCockpitLink()}"
|
2017-12-28 14:10:11 +02:00
|
|
|
|
2019-01-28 12:32:24 +02:00
|
|
|
if (warAction == WarAction.ROLLING_UPDATE) {
|
|
|
|
sh neoCommandHelper.rollingUpdateCommand()
|
|
|
|
} else {
|
|
|
|
sh neoCommandHelper.deployCommand()
|
|
|
|
sh neoCommandHelper.restartCommand()
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} else if (deployMode == DeployMode.MTA) {
|
|
|
|
sh neoCommandHelper.deployMta()
|
2018-01-11 16:25:58 +02:00
|
|
|
}
|
2017-12-28 14:10:11 +02:00
|
|
|
}
|
2019-01-28 12:32:24 +02:00
|
|
|
}
|
|
|
|
catch (Exception ex) {
|
|
|
|
if (dockerImage) {
|
|
|
|
echo "Error while deploying to SAP Cloud Platform. Here are the neo.sh logs:"
|
|
|
|
sh "cat logs/neo/*"
|
2017-12-28 14:10:11 +02:00
|
|
|
}
|
2019-01-28 12:32:24 +02:00
|
|
|
throw ex
|
|
|
|
}
|
|
|
|
}
|
2017-12-28 14:10:11 +02:00
|
|
|
|
2019-01-28 12:32:24 +02:00
|
|
|
private boolean isAppRunning(NeoCommandHelper commandHelper) {
|
|
|
|
def status = sh script: "${commandHelper.statusCommand()} || true", returnStdout: true
|
|
|
|
return status.contains('Status: STARTED')
|
|
|
|
}
|
2018-04-20 15:20:50 +02:00
|
|
|
|
2019-01-28 12:32:24 +02:00
|
|
|
private assertPasswordRules(String password) {
|
|
|
|
if (password.startsWith("@")) {
|
|
|
|
error("Your password for the deployment to SAP Cloud Platform contains characters which are not " +
|
|
|
|
"supported by the neo tools. " +
|
|
|
|
"For example it is not allowed that the password starts with @. " +
|
|
|
|
"Please consult the documentation for the neo command line tool for more information: " +
|
|
|
|
"https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/8900b22376f84c609ee9baf5bf67130a.html")
|
2017-07-11 15:12:03 +02:00
|
|
|
}
|
|
|
|
}
|