Skip to content
This repository has been archived by the owner on May 16, 2023. It is now read-only.

Commit

Permalink
Merge pull request #20 from elastic/we_are_all_helm
Browse files Browse the repository at this point in the history
Update maintainer mailing list and bump to 6.5.4
  • Loading branch information
Crazybus authored Dec 31, 2018
2 parents b581951 + ffaf797 commit 9d91b42
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
8 changes: 4 additions & 4 deletions elasticsearch/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
description: Elasticsearch
home: https://github.com/elastic/helm-charts
maintainers:
- email: michael.russell@elastic.co
name: Michael Russell
- email: helm-charts@elastic.co
name: Elastic
name: elasticsearch
version: 6.5.3-alpha1
appVersion: 6.5.3
version: 6.5.4-alpha1
appVersion: 6.5.4
sources:
- https://github.com/elastic/elasticsearch
4 changes: 2 additions & 2 deletions elasticsearch/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.3-alpha1
helm install --name elasticsearch elastic/elasticsearch --version 6.5.4-alpha1
```


Expand All @@ -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.3` |
| `imageTag` | The Elasticsearch docker image tag | `6.5.4` |
| `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`<br>`requests.memory: 2Gi`<br>`limits.cpu: 1000m`<br>`limits.memory: 2Gi` |
Expand Down
2 changes: 1 addition & 1 deletion elasticsearch/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ secretMounts:
# path: /usr/share/elasticsearch/config/certs

image: "docker.elastic.co/elasticsearch/elasticsearch"
imageTag: "6.5.3"
imageTag: "6.5.4"
imagePullPolicy: "IfNotPresent"

esJavaOpts: "-Xmx1g -Xms1g"
Expand Down
8 changes: 4 additions & 4 deletions kibana/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
description: Kibana
home: https://github.com/elastic/helm-charts
maintainers:
- email: michael.russell@elastic.co
name: Michael Russell
- email: helm-charts@elastic.co
name: Elastic
name: kibana
version: 6.5.3-alpha1
appVersion: 6.5.3
version: 6.5.4-alpha1
appVersion: 6.5.4
sources:
- https://github.com/elastic/kibana
4 changes: 2 additions & 2 deletions kibana/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.3-alpha1
helm install --name kibana elastic/kibana --version 6.5.4-alpha1
```

## Configuration
Expand All @@ -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.3` |
| `imageTag` | The Kibana docker image tag | `6.5.4` |
| `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`<br>`requests.memory: 2Gi`<br>`limits.cpu: 1000m`<br>`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` |
Expand Down
2 changes: 1 addition & 1 deletion kibana/tests/kibana_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import yaml

name = 'RELEASE-NAME-kibana'
version = '6.5.3'
version = '6.5.4'
elasticsearchURL = 'http://elasticsearch-master:9200'


Expand Down
2 changes: 1 addition & 1 deletion kibana/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ secretMounts:
# path: /usr/share/elasticsearch/config/certs

image: "docker.elastic.co/kibana/kibana"
imageTag: "6.5.3"
imageTag: "6.5.4"
imagePullPolicy: "IfNotPresent"

resources:
Expand Down

0 comments on commit 9d91b42

Please sign in to comment.