Skip to content

Commit

Permalink
Prepare Release 2.5.1 (#716)
Browse files Browse the repository at this point in the history
### Description
Prepare Release 2.5.1

### 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 9f5ef49 commit e45a425
Show file tree
Hide file tree
Showing 6 changed files with 9 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.5.0
appVersion: 2.5.0
version: 2.5.1
appVersion: 2.5.1
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.5.0
version: 2.5.1

# 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.5.0
appVersion: 2.5.1
2 changes: 1 addition & 1 deletion charts/opensearch-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ manager:
parallelRecoveryEnabled: true

image:
repository: public.ecr.aws/opensearch-project/opensearch-operator
repository: opensearchproject/opensearch-operator
## tag default uses appVersion from Chart.yaml, to override specify tag tag: "v1.1"
tag: ""
pullPolicy: "Always"
Expand Down
2 changes: 1 addition & 1 deletion docs/designs/crd.md
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ InitHelperConfig defines global Opensearch InitHelper image configuration
<td>string</td>
<td>Define InitHelper image</td>
<td>false</td>
<td>public.ecr.aws/opensearch-project/opensearch-operator-busybox</td>
<td>docker.io/busybox</td>
</tr><tr>
</tr><tr>
<td><b>imagePullPolicy</b></td>
Expand Down
2 changes: 1 addition & 1 deletion docs/userguide/main.md
Original file line number Diff line number Diff line change
Expand Up @@ -767,7 +767,7 @@ manager:

### Custom init helper

During cluster initialization the operator uses init containers as helpers. For these containers a busybox image is used ( specifically `public.ecr.aws/opensearch-project/busybox:latest`). In case you are working in an offline environment and the cluster cannot access the registry or you want to customize the image, you can override the image used by specifying the `initHelper` image in your cluster spec:
During cluster initialization the operator uses init containers as helpers. For these containers a busybox image is used ( specifically `docker.io/busybox:latest`). In case you are working in an offline environment and the cluster cannot access the registry or you want to customize the image, you can override the image used by specifying the `initHelper` image in your cluster spec:

```yaml
spec:
Expand Down
3 changes: 2 additions & 1 deletion jenkins/release.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,8 @@ pipeline {
string(name: 'RELEASE_VERSION', value: "${OPERATOR_VERSION}"),
booleanParam(name: 'DOCKER_HUB_PROMOTE', value: true),
booleanParam(name: 'ECR_PROMOTE', value: true),
booleanParam(name: 'TAG_LATEST', value: true)
booleanParam(name: 'TAG_LATEST', value: true),
booleanParam(name: 'TAG_MAJOR_VERSION', value: false)
]
}
}
Expand Down

0 comments on commit e45a425

Please sign in to comment.