diff --git a/charts/opensearch-cluster/Chart.yaml b/charts/opensearch-cluster/Chart.yaml index 24ba0b2a..691425bd 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.5.0 -appVersion: 2.5.0 +version: 2.5.1 +appVersion: 2.5.1 diff --git a/charts/opensearch-operator/Chart.yaml b/charts/opensearch-operator/Chart.yaml index fc688ae5..6304d918 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.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 diff --git a/charts/opensearch-operator/values.yaml b/charts/opensearch-operator/values.yaml index 7c2d409a..4afa24a5 100644 --- a/charts/opensearch-operator/values.yaml +++ b/charts/opensearch-operator/values.yaml @@ -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" diff --git a/docs/designs/crd.md b/docs/designs/crd.md index 59ceb7ef..5f13da5d 100644 --- a/docs/designs/crd.md +++ b/docs/designs/crd.md @@ -559,7 +559,7 @@ InitHelperConfig defines global Opensearch InitHelper image configuration string Define InitHelper image false - public.ecr.aws/opensearch-project/opensearch-operator-busybox + docker.io/busybox imagePullPolicy diff --git a/docs/userguide/main.md b/docs/userguide/main.md index 031efded..a05ed069 100644 --- a/docs/userguide/main.md +++ b/docs/userguide/main.md @@ -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: diff --git a/jenkins/release.jenkinsfile b/jenkins/release.jenkinsfile index ab7b3a0e..c57141c8 100644 --- a/jenkins/release.jenkinsfile +++ b/jenkins/release.jenkinsfile @@ -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) ] } }