Skip to content

Commit

Permalink
Jenkinsfile bug and prepare for 2.5.0 release (#714)
Browse files Browse the repository at this point in the history
### Description
Jenkinsfile bug and prepare for 2.5.0 release 

### Issues Resolved
Part of
#709
and
#674

By submitting this pull request, I confirm that my contribution is made
under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and
signing off your commits, please check
[here](https://github.com/opensearch-project/OpenSearch/blob/main/CONTRIBUTING.md#developer-certificate-of-origin).

Signed-off-by: Prudhvi Godithi <[email protected]>
  • Loading branch information
prudhvigodithi authored Feb 2, 2024
1 parent 2b88183 commit 7c57b09
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions charts/opensearch-cluster/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ apiVersion: v2
name: opensearch-cluster
description: A Helm chart for OpenSearch Cluster
type: application
version: 2.4.0
appVersion: 2.4.0
version: 2.5.0
appVersion: 2.5.0
4 changes: 2 additions & 2 deletions charts/opensearch-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 2.4.0
version: 2.5.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: 2.4.0
appVersion: 2.5.0
7 changes: 3 additions & 4 deletions jenkins/release.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ pipeline {
GenericTrigger(
genericVariables: [
[key: 'ref', value: '$.ref'],
[key: 'isTag', value: '$.ref_type'],
],
tokenCredentialId: 'jenkins-opensearch-operator-generic-webhook-token',
causeString: 'A commit was pushed on opensearch-project/opensearch-k8s-operator repository main branch causing this workflow to run',
Expand Down Expand Up @@ -119,9 +118,9 @@ pipeline {
parameters: [
string(name: 'SOURCE_IMAGES', value: '${OPERATOR_PRODUCT}:${OPERATOR_VERSION}'),
string(name: 'RELEASE_VERSION', value: "${OPERATOR_VERSION}"),
string(name: 'DOCKER_HUB_PROMOTE', value: true),
string(name: 'ECR_PROMOTE', value: true),
string(name: 'TAG_LATEST', value: true)
booleanParam(name: 'DOCKER_HUB_PROMOTE', value: true),
booleanParam(name: 'ECR_PROMOTE', value: true),
booleanParam(name: 'TAG_LATEST', value: true)
]
}
}
Expand Down

0 comments on commit 7c57b09

Please sign in to comment.