diff --git a/charts/opensearch-cluster/Chart.yaml b/charts/opensearch-cluster/Chart.yaml index 0e833e80..24ba0b2a 100644 --- a/charts/opensearch-cluster/Chart.yaml +++ b/charts/opensearch-cluster/Chart.yaml @@ -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 diff --git a/charts/opensearch-operator/Chart.yaml b/charts/opensearch-operator/Chart.yaml index 645de063..fc688ae5 100644 --- a/charts/opensearch-operator/Chart.yaml +++ b/charts/opensearch-operator/Chart.yaml @@ -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 diff --git a/jenkins/release.jenkinsfile b/jenkins/release.jenkinsfile index 0a596693..a4aaca61 100644 --- a/jenkins/release.jenkinsfile +++ b/jenkins/release.jenkinsfile @@ -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', @@ -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) ] } }