From 1e5576293add783b3b271f2eed0e5cf32736801a Mon Sep 17 00:00:00 2001 From: Michael Russell Date: Thu, 13 Dec 2018 09:04:15 -0800 Subject: [PATCH] Bump default version to 6.5.3 --- elasticsearch/Chart.yaml | 4 ++-- elasticsearch/README.md | 4 ++-- elasticsearch/values.yaml | 2 +- kibana/Chart.yaml | 4 ++-- kibana/README.md | 4 ++-- kibana/tests/kibana_test.py | 2 +- kibana/values.yaml | 2 +- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/elasticsearch/Chart.yaml b/elasticsearch/Chart.yaml index 01fc71254..97b2f827e 100755 --- a/elasticsearch/Chart.yaml +++ b/elasticsearch/Chart.yaml @@ -4,7 +4,7 @@ maintainers: - email: michael.russell@elastic.co name: Michael Russell name: elasticsearch -version: 6.5.2-alpha1 -appVersion: 6.5.2 +version: 6.5.3-alpha1 +appVersion: 6.5.3 sources: - https://github.com/elastic/elasticsearch diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 192dd790a..5aeda5f2b 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -29,7 +29,7 @@ This helm chart is a lightweight way to configure and run our official [Elastics ``` * Install it ``` - helm install --name elasticsearch elastic/elasticsearch --version 6.5.2-alpha1 + helm install --name elasticsearch elastic/elasticsearch --version 6.5.3-alpha1 ``` @@ -46,7 +46,7 @@ This helm chart is a lightweight way to configure and run our official [Elastics | `extraEnvs` | Extra [environment variables](https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/#using-environment-variables-inside-of-your-config) which will be appended to the `env:` definition for the container | `{}` | | `secretMounts` | Allows you easily mount a secret as a file inside the statefulset. Useful for mounting certificates and other secrets. See [values.yaml](./values.yaml) for an example | `{}` | | `image` | The Elasticsearch docker image | `docker.elastic.co/elasticsearch/elasticsearch` | -| `imageTag` | The Elasticsearch docker image tag | `6.5.2` | +| `imageTag` | The Elasticsearch docker image tag | `6.5.3` | | `imagePullPolicy` | The Kubernetes [imagePullPolicy](https://kubernetes.io/docs/concepts/containers/images/#updating-images) value | `IfNotPresent` | | `esJavaOpts` | [Java options](https://www.elastic.co/guide/en/elasticsearch/reference/current/jvm-options.html) for Elasticsearch. This is where you should configure the [jvm heap size](https://www.elastic.co/guide/en/elasticsearch/reference/current/heap-size.html) | `-Xmx1g -Xms1g` | | `resources` | Allows you to set the [resources](https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/) for the statefulset | `requests.cpu: 100m`
`requests.memory: 2Gi`
`limits.cpu: 1000m`
`limits.memory: 2Gi` | diff --git a/elasticsearch/values.yaml b/elasticsearch/values.yaml index 39e410330..219b26477 100755 --- a/elasticsearch/values.yaml +++ b/elasticsearch/values.yaml @@ -32,7 +32,7 @@ secretMounts: # path: /usr/share/elasticsearch/config/certs image: "docker.elastic.co/elasticsearch/elasticsearch" -imageTag: "6.5.2" +imageTag: "6.5.3" imagePullPolicy: "IfNotPresent" esJavaOpts: "-Xmx1g -Xms1g" diff --git a/kibana/Chart.yaml b/kibana/Chart.yaml index f4d3fd8df..412e3fa3c 100755 --- a/kibana/Chart.yaml +++ b/kibana/Chart.yaml @@ -4,7 +4,7 @@ maintainers: - email: michael.russell@elastic.co name: Michael Russell name: kibana -version: 6.5.2-alpha1 -appVersion: 6.5.2 +version: 6.5.3-alpha1 +appVersion: 6.5.3 sources: - https://github.com/elastic/kibana diff --git a/kibana/README.md b/kibana/README.md index d7e883482..c2be672af 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -17,7 +17,7 @@ This helm chart is a lightweight way to configure and run our official [Kibana d ``` * Install it ``` - helm install --name kibana elastic/kibana --version 6.5.2-alpha1 + helm install --name kibana elastic/kibana --version 6.5.3-alpha1 ``` ## Configuration @@ -29,7 +29,7 @@ This helm chart is a lightweight way to configure and run our official [Kibana d | `extraEnvs` | Extra [environment variables](https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/#using-environment-variables-inside-of-your-config) which will be appended to the `env:` definition for the container | `{}` | | `secretMounts` | Allows you easily mount a secret as a file inside the deployment. Useful for mounting certificates and other secrets. See [values.yaml](./values.yaml) for an example | `{}` | | `image` | The Kibana docker image | `docker.elastic.co/kibana/kibana` | -| `imageTag` | The Kibana docker image tag | `6.5.2` | +| `imageTag` | The Kibana docker image tag | `6.5.3` | | `imagePullPolicy` | The Kubernetes [imagePullPolicy](https://kubernetes.io/docs/concepts/containers/images/#updating-images) value | `IfNotPresent` | | `resources` | Allows you to set the [resources](https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/) for the statefulset | `requests.cpu: 100m`
`requests.memory: 2Gi`
`limits.cpu: 1000m`
`limits.memory: 2Gi` | | `antiAffinityTopologyKey` | The [anti-affinity topology key](https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity). By default this will prevent multiple Kibana instances from running on the same Kubernetes node | `kubernetes.io/hostname` | diff --git a/kibana/tests/kibana_test.py b/kibana/tests/kibana_test.py index 05a7b4d31..ffb3b31b7 100644 --- a/kibana/tests/kibana_test.py +++ b/kibana/tests/kibana_test.py @@ -5,7 +5,7 @@ import yaml name = 'RELEASE-NAME-kibana' -version = '6.5.2' +version = '6.5.3' elasticsearchURL = 'http://elasticsearch-master:9200' diff --git a/kibana/values.yaml b/kibana/values.yaml index 50e4e3c8d..f9975fb86 100755 --- a/kibana/values.yaml +++ b/kibana/values.yaml @@ -20,7 +20,7 @@ secretMounts: # path: /usr/share/elasticsearch/config/certs image: "docker.elastic.co/kibana/kibana" -imageTag: "6.5.2" +imageTag: "6.5.3" imagePullPolicy: "IfNotPresent" resources: