diff --git a/elasticsearch/Chart.yaml b/elasticsearch/Chart.yaml index f634ac4d5..01fc71254 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.0 -appVersion: 6.5.0 +version: 6.5.2-alpha1 +appVersion: 6.5.2 sources: - https://github.com/elastic/elasticsearch diff --git a/elasticsearch/README.md b/elasticsearch/README.md index a59b612fe..192dd790a 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.0 + helm install --name elasticsearch elastic/elasticsearch --version 6.5.2-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.0` | +| `imageTag` | The Elasticsearch docker image tag | `6.5.2` | | `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 29377ed99..39e410330 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.0" +imageTag: "6.5.2" imagePullPolicy: "IfNotPresent" esJavaOpts: "-Xmx1g -Xms1g" diff --git a/kibana/Chart.yaml b/kibana/Chart.yaml index 774c977ab..f4d3fd8df 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.0 -appVersion: 6.5.0 +version: 6.5.2-alpha1 +appVersion: 6.5.2 sources: - https://github.com/elastic/kibana diff --git a/kibana/README.md b/kibana/README.md index 5a18819c5..d7e883482 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.0 + helm install --name kibana elastic/kibana --version 6.5.2-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.0` | +| `imageTag` | The Kibana docker image tag | `6.5.2` | | `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 6718c41d7..05a7b4d31 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.0' +version = '6.5.2' elasticsearchURL = 'http://elasticsearch-master:9200' diff --git a/kibana/values.yaml b/kibana/values.yaml index 62f105aec..50e4e3c8d 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.0" +imageTag: "6.5.2" imagePullPolicy: "IfNotPresent" resources: