mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[stable/elasticsearch-curator] Update to 5.7.6 by changing docker repository (#15669)
* [stable/elasticsearch-curator] Update to 5.7.6 by changing docker repository. Also add desaintmartin to maintainers. Signed-off-by: Cédric de Saint Martin <cdesaintmartin@wiremind.fr> * Update stable/elasticsearch-curator/README.md Co-Authored-By: Carlos Rodríguez Hernández <carrodher1179@gmail.com> Signed-off-by: Cédric de Saint Martin <cdesaintmartin@wiremind.fr> * [stable/elasticsearch-curator] Remove @tmestdagh from OWNERS. Signed-off-by: Cédric de Saint Martin <cdesaintmartin@wiremind.fr>
This commit is contained in:
committed by
Kubernetes Prow Robot
co-authored by
Carlos Rodríguez Hernández
parent
4ea22823de
commit
d6da308013
@@ -2,7 +2,7 @@ apiVersion: v1
|
||||
appVersion: "5.5.4"
|
||||
description: A Helm chart for Elasticsearch Curator
|
||||
name: elasticsearch-curator
|
||||
version: 1.5.0
|
||||
version: 2.0.0
|
||||
home: https://github.com/elastic/curator
|
||||
keywords:
|
||||
- curator
|
||||
@@ -12,7 +12,7 @@ sources:
|
||||
- https://github.com/kubernetes/charts/elasticsearch-curator
|
||||
- https://github.com/pires/docker-elasticsearch-curator
|
||||
maintainers:
|
||||
- name: tmestdagh
|
||||
email: mestdagh.tom@gmail.com
|
||||
- name: desaintmartin
|
||||
email: cedric.dsm@gmail.com
|
||||
- name: gianrubio
|
||||
email: gianrubio@gmail.com
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
approvers:
|
||||
- tmestdagh
|
||||
- desaintmartin
|
||||
- gianrubio
|
||||
reviewers:
|
||||
- tmestdagh
|
||||
- gianrubio
|
||||
- desaintmartin
|
||||
- gianrubio
|
||||
|
||||
@@ -23,6 +23,17 @@ To install the chart, use the following:
|
||||
$ helm install stable/elasticsearch-curator
|
||||
```
|
||||
|
||||
## Upgrading an existing Release to a new major version
|
||||
|
||||
A major chart version change (like v1.2.3 -> v2.0.0) indicates that there is an
|
||||
incompatible breaking change needing manual actions.
|
||||
|
||||
### To 2.0.0
|
||||
|
||||
v2.0.0 uses docker image from `elasticsearch-curator` author, which differs in its way to install curator.
|
||||
|
||||
If you have a hardcoded `command` value, please update it to follow the new `curator` executable path: `/curator/curator` (which is not in PATH).
|
||||
|
||||
## Configuration
|
||||
|
||||
The following table lists the configurable parameters of the docker-registry chart and
|
||||
@@ -31,8 +42,8 @@ their default values.
|
||||
| Parameter | Description | Default |
|
||||
| :----------------------------------- | :---------------------------------------------------------- | :------------------------------------------- |
|
||||
| `image.pullPolicy` | Container pull policy | `IfNotPresent` |
|
||||
| `image.repository` | Container image to use | `quay.io/pires/docker-elasticsearch-curator` |
|
||||
| `image.tag` | Container image tag to deploy | `5.5.4` |
|
||||
| `image.repository` | Container image to use | `untergeek/curator` |
|
||||
| `image.tag` | Container image tag to deploy | `5.7.6` |
|
||||
| `hooks` | Whether to run job on selected hooks | `{ "install": false, "upgrade": false }` |
|
||||
| `cronjob.schedule` | Schedule for the CronJob | `0 1 * * *` |
|
||||
| `cronjob.annotations` | Annotations to add to the cronjob | {} |
|
||||
@@ -45,15 +56,15 @@ their default values.
|
||||
| `envFromSecrets` | Environment variables from secrets to the cronjob container | {} |
|
||||
| `envFromSecrets.*.from.secret` | - `secretKeyRef.name` used for environment variable | |
|
||||
| `envFromSecrets.*.from.key` | - `secretKeyRef.key` used for environment variable | |
|
||||
| `command` | Command to execute | ["curator"] |
|
||||
| `configMaps.action_file_yml` | Contents of the Curator action_file.yml | See values.yaml |
|
||||
| `configMaps.config_yml` | Contents of the Curator config.yml (overrides config) | See values.yaml |
|
||||
| `command` | Command to execute | ["/curator/curator"] |
|
||||
| `configMaps.action_file_yml` | Contents of the Curator action_file.yml | See values.yaml |
|
||||
| `configMaps.config_yml` | Contents of the Curator config.yml (overrides config) | See values.yaml |
|
||||
| `resources` | Resource requests and limits | {} |
|
||||
| `priorityClassName` | priorityClassName | `nil` |
|
||||
| `extraVolumeMounts` | Mount extra volume(s), | |
|
||||
| `extraVolumes` | Extra volumes | |
|
||||
| `extraInitContainers` | Init containers to add to the cronjob container | {} |
|
||||
| `securityContext` | Configure PodSecurityContext | `false` |
|
||||
| `securityContext` | Configure PodSecurityContext | `false` |
|
||||
| `rbac.enabled` | Enable RBAC resources | `false` |
|
||||
| `psp.create` | Create pod security policy resources | `false` |
|
||||
| `serviceAccount.create` | Create a default serviceaccount for elasticsearch curator | `true` |
|
||||
|
||||
@@ -30,8 +30,8 @@ psp:
|
||||
create: false
|
||||
|
||||
image:
|
||||
repository: quay.io/pires/docker-elasticsearch-curator
|
||||
tag: 5.5.4
|
||||
repository: untergeek/curator
|
||||
tag: 5.7.6
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
hooks:
|
||||
@@ -41,7 +41,7 @@ hooks:
|
||||
# run curator in dry-run mode
|
||||
dryrun: false
|
||||
|
||||
command: ["curator"]
|
||||
command: ["/curator/curator"]
|
||||
env: {}
|
||||
|
||||
configMaps:
|
||||
|
||||
Reference in New Issue
Block a user