diff --git a/RELEASE.md b/RELEASE.md index b54189da..fe975661 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -25,7 +25,7 @@ Maintainers, when creating a new release, follow the procedure below: 5. Verify that artifacts have been published: - Python PIP package was [published][3] successfully. - Helm chart has been [published][4] successfully. - - Docker Hub image was [published][2] successfully. + - Docker Hub image was [tagged][2] successfully. 6. Wait a minimum of a few hours for community feedback in case someone notices a problem with the the upcoming release. 7. Publish the release. diff --git a/chart/elastalert2/Chart.yaml b/chart/elastalert2/Chart.yaml index 813b4808..4d469c10 100644 --- a/chart/elastalert2/Chart.yaml +++ b/chart/elastalert2/Chart.yaml @@ -1,8 +1,8 @@ apiVersion: v1 description: Elastalert 2 is a simple framework for alerting on anomalies, spikes, or other patterns of interest from data in Elasticsearch. name: elastalert2 -version: 2.0.2 -appVersion: 2.0.2 +version: 2.0.3 +appVersion: 2.0.3 home: https://github.com/jertel/elastalert2 sources: - https://github.com/jertel/elastalert2 diff --git a/chart/elastalert2/README.md b/chart/elastalert2/README.md index a3dd5c91..86132ff5 100644 --- a/chart/elastalert2/README.md +++ b/chart/elastalert2/README.md @@ -47,7 +47,7 @@ The command removes all the Kubernetes components associated with the chart and | Parameter | Description | Default | |----------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|---------------------------------| | `image.repository` | docker image | jertel/elastalert-docker | -| `image.tag` | docker image tag | 2.0.2 | +| `image.tag` | docker image tag | 2.0.3 | | `image.pullPolicy` | image pull policy | IfNotPresent | | `podAnnotations` | Annotations to be added to pods | {} | | `command` | command override for container | `NULL` | diff --git a/chart/elastalert2/values.yaml b/chart/elastalert2/values.yaml index c3a24acb..d54f54bd 100644 --- a/chart/elastalert2/values.yaml +++ b/chart/elastalert2/values.yaml @@ -25,7 +25,7 @@ image: # docker image repository: jertel/elastalert2 # docker image tag - tag: 2.0.2 + tag: 2.0.3 pullPolicy: IfNotPresent resources: {} diff --git a/setup.py b/setup.py index 058ca531..eab96832 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ base_dir = os.path.dirname(__file__) setup( name='elastalert2', - version='2.0.2', + version='2.0.3', description='Runs custom filters on Elasticsearch and alerts on matches', setup_requires='setuptools', license='Apache 2.0',