forked from cyberark/cyberark-aws-auto-onboarding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile-stress
69 lines (66 loc) · 2.42 KB
/
Jenkinsfile-stress
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
pipeline {
agent {
node {
label 'ansible'
}
}
parameters {
choice name: 'mainRegion',
choices: ['eu-west-2', 'eu-central-1'],
description: 'region name of main AOB solution'
choice name: 'secRegion',
choices: ['eu-central-1', 'eu-west-2'],
description: 'region name of secondary AOB solution'
string name: 'mainSubnet',
defaultValue: 'subnet-050842545d0fce2d4',
description: 'subnet id at main region',
trim: true
string name: 'secSubnet',
defaultValue: 'subnet-0dbd84f0b33d6ad33',
description: 'subnet id at secondary region',
trim: true
string name: 'mainKP',
defaultValue: 'Erez-AOB-def',
description: 'key pair name at main region',
trim: true
string name: 'secKP',
defaultValue: 'aob-frank',
description: 'key pair name at secondary region',
trim: true
booleanParam(
name: 'test',
defaultValue: false,
description: 'do you want to execute stress test & deploy 1002 instances?')
}
environment {
shortCommit = sh(script: "git log -n 1 --pretty=format:'%h'", returnStdout: true).trim()
}
stages {
stage('Install virtual environment') {
steps {
sh '''
python3 -m pip install --user virtualenv
python3 -m virtualenv .testenv
source ./.testenv/bin/activate
pip install boto3
wget https://releases.hashicorp.com/terraform/0.12.26/terraform_0.12.26_linux_amd64.zip
unzip -o terraform_0.12.26_linux_amd64.zip
sudo mv terraform /usr/bin/
'''
}
}
stage('AOB stress test') {
steps {
script {
if (params.test) {
sh """
source ./.testenv/bin/activate
cd tests/stress
bash tf_deployer.sh ${params.mainRegion} ${params.secRegion} ${params.mainSubnet} ${params.secSubnet} ${params.mainKP} ${params.secKP}
"""
}
}
}
}
}
}