-
Notifications
You must be signed in to change notification settings - Fork 404
/
Jenkinsfile.disabled
134 lines (111 loc) · 5.05 KB
/
Jenkinsfile.disabled
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
#!/usr/bin/env groovy
import static groovy.json.JsonOutput.*
/* These are variables that can be used to test an un-released version of the Confluent Platform that resides at
* a different HTTPS Endpoint other than `https://packages.confluent.io`. You do not need to specify *any* of them
* for normal testing purposes, and are purely here for Confluent Inc's usage only.
*/
// The version to install, set to the "next" version to test the "next" version.
def confluent_package_version = string(name: 'CONFLUENT_PACKAGE_VERSION',
defaultValue: '',
description: 'Confluent Version to install and test (ie: 5.4.1)'
)
// The HTTP(S) endpoint from which to obtain the platform packages
def confluent_common_repository_baseurl = string(name: 'CONFLUENT_PACKAGE_BASEURL',
defaultValue: '',
description: 'Packaging Base URL from where to download packages (ie: https://packages.confluent.io)'
)
// Confluent's nightly packages use a different version scheme, so this parameter controls the "suffix" value
// of the packages that are installed.
def confluent_release_quality = choice(name: 'CONFLUENT_RELEASE_QUALITY',
choices: ['prod', 'snapshot'],
defaultValue: 'prod',
description: 'Determines the release extention (suffix) (ie: "prod" for public releases, "snapshot" for nightly builds)',
)
// Parameter for the molecule test scenario to run
def molecule_scenario_name = choice(name: 'SCENARIO_NAME',
choices: ['rbac-mtls-rhel8', 'plaintext-rhel'],
defaultValue: 'rbac-mtls-rhel8',
description: 'The Ansible Molecule scenario name to run',
)
def config = jobConfig {
nodeLabel = 'docker-ubuntu-20-ansible'
slackChannel = '#ansible-eng'
timeoutHours = 4
runMergeCheck = false
properties = [parameters([confluent_package_version, confluent_common_repository_baseurl, confluent_release_quality, molecule_scenario_name])]
}
def job = {
def override_config = [:]
// ansible_fqdn within certs does not match the FQDN that zookeeper verifies
override_config['zookeeper_custom_java_args'] = '-Dzookeeper.ssl.hostnameVerification=false -Dzookeeper.ssl.quorum.hostnameVerification=false'
def branch_name = targetBranch().toString()
if(params.CONFLUENT_PACKAGE_BASEURL) {
override_config['confluent_common_repository_baseurl'] = params.CONFLUENT_PACKAGE_BASEURL
// CI/CD Nightly passes URLs that return 400s when directly querying confluent_common_repository_baseurl URL.
override_config['validate_hosts'] = false
}
if(params.CONFLUENT_PACKAGE_VERSION) {
override_config['confluent_package_version'] = params.CONFLUENT_PACKAGE_VERSION
override_config['confluent_repo_version'] = params.CONFLUENT_PACKAGE_VERSION.tokenize('.')[0..1].join('.')
if(params.CONFLUENT_RELEASE_QUALITY != 'prod') {
// 'prod' case doesn't need anything overriden
switch(params.CONFLUENT_RELEASE_QUALITY) {
case "snapshot":
override_config['confluent_package_redhat_suffix'] = "-${params.CONFLUENT_PACKAGE_VERSION}-0.1.0"
override_config['confluent_package_debian_suffix'] = "=${params.CONFLUENT_PACKAGE_VERSION}~0-1"
// Disable reporting for nightly builds
config.testbreakReporting = false
config.slackChannel = null
break
default:
error("Unknown release quality ${params.CONFLUENT_RELEASE_QUALITY}")
break
}
}
}
def molecule_args = ""
if(override_config) {
override_config['bootstrap'] = false
def base_config = [
'provisioner': [
'inventory': [
'group_vars': [
'all': override_config
]
],
'env':[
"ANSIBLE_SKIP_TAGS": "validate_memory_usage,validate_disk_usage"
]
]
]
echo "Overriding Ansible vars for testing with base-config:\n" + prettyPrint(toJson(override_config))
writeYaml file: "base-config.yml", data: base_config
// by providing a base config outside of the default location, it is required to pass both
molecule_args = "--base-config base-config.yml --base-config .config/molecule/config.yml"
}
withDockerServer([uri: dockerHost()]) {
stage("Test Scenario: ${params.SCENARIO_NAME}") {
sh """
docker rmi molecule_local/geerlingguy/docker-centos7-ansible || true
cd ../
mkdir -p ansible_collections/confluent
cp -r $WORKSPACE ansible_collections/confluent/platform
cd ansible_collections/confluent/platform
python3 -m pip install yamllint --upgrade
python3 -m yamllint .
molecule ${molecule_args} test -s ${params.SCENARIO_NAME}
"""
}
}
}
def post = {
withDockerServer([uri: dockerHost()]) {
stage("Destroy Scenario: ${params.SCENARIO_NAME}") {
sh """
cd ../ansible_collections/confluent/platform
molecule destroy -s ${params.SCENARIO_NAME} || true
"""
}
}
}
runJob config, job, post