Skip to content

Commit aa147f6

Browse files
fix: update library branch from feature to master for merge
1 parent a00208d commit aa147f6

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

pmm/v3/pmm3-ha-eks-cleanup.groovy

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* - Create: pmm3-ha-eks.groovy
1515
* - Shared library: vars/pmmHaEks.groovy
1616
*/
17-
library changelog: false, identifier: 'lib@fix/pmm-ha-eks-access-entries', retriever: modernSCM([
17+
library changelog: false, identifier: 'lib@master', retriever: modernSCM([
1818
$class: 'GitSCMSource',
1919
remote: 'https://github.com/Percona-Lab/jenkins-pipelines'
2020
])
@@ -49,9 +49,9 @@ pipeline {
4949
}
5050

5151
environment {
52-
REGION = "us-east-2"
53-
CLUSTER_PREFIX = "pmm-ha-test-"
54-
R53_ZONE_NAME = "cd.percona.com"
52+
REGION = 'us-east-2'
53+
CLUSTER_PREFIX = 'pmm-ha-test-'
54+
R53_ZONE_NAME = 'cd.percona.com'
5555
}
5656

5757
stages {
@@ -60,14 +60,14 @@ pipeline {
6060
script {
6161
if (currentBuild.getBuildCauses('hudson.triggers.TimerTrigger$TimerTriggerCause')) {
6262
env.ACTION = 'DELETE_OLD'
63-
echo "Triggered by cron - will delete clusters older than 1 day."
63+
echo 'Triggered by cron - will delete clusters older than 1 day.'
6464
} else {
6565
env.ACTION = params.ACTION
6666
echo "Manual run with ACTION=${params.ACTION}"
6767
}
6868

6969
if (env.ACTION == 'DELETE_CLUSTER' && !params.CLUSTER_NAME) {
70-
error("CLUSTER_NAME is required for DELETE_CLUSTER.")
70+
error('CLUSTER_NAME is required for DELETE_CLUSTER.')
7171
}
7272
if (params.CLUSTER_NAME && !params.CLUSTER_NAME.startsWith(env.CLUSTER_PREFIX)) {
7373
error("Cluster name must start with ${env.CLUSTER_PREFIX}")

pmm/v3/pmm3-ha-eks.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* - Cleanup: pmm3-ha-eks-cleanup.groovy
1010
* - Shared library: vars/pmmHaEks.groovy
1111
*/
12-
library changelog: false, identifier: 'lib@fix/pmm-ha-eks-access-entries', retriever: modernSCM([
12+
library changelog: false, identifier: 'lib@master', retriever: modernSCM([
1313
$class: 'GitSCMSource',
1414
remote: 'https://github.com/Percona-Lab/jenkins-pipelines'
1515
])

0 commit comments

Comments
 (0)