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

Commit

Permalink
Bump version to 6.6.2-alpha1
Browse files Browse the repository at this point in the history
  • Loading branch information
Crazybus committed Mar 14, 2019
1 parent 3356a0d commit 5f75ca6
Show file tree
Hide file tree
Showing 14 changed files with 18 additions and 18 deletions.
4 changes: 2 additions & 2 deletions elasticsearch/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ maintainers:
- email: [email protected]
name: Elastic
name: elasticsearch
version: 6.6.0-alpha1
appVersion: 6.6.0
version: 6.6.2-alpha1
appVersion: 6.6.2
sources:
- https://github.com/elastic/elasticsearch
icon: https://helm.elastic.co/icons/elasticsearch.png
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.6.0-alpha1
helm install --name elasticsearch elastic/elasticsearch --version 6.6.2-alpha1
```


Expand All @@ -48,7 +48,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.6.0` |
| `imageTag` | The Elasticsearch docker image tag | `6.6.2` |
| `imagePullPolicy` | The Kubernetes [imagePullPolicy](https://kubernetes.io/docs/concepts/containers/images/#updating-images) value | `IfNotPresent` |
| `podAnnotations` | Configurable [annotations](https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/) applied to all Elasticsearch pods | `{}` |
| `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` |
Expand Down
2 changes: 1 addition & 1 deletion elasticsearch/examples/5.x/test/goss.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ http:
username: '{{ .Env.ELASTIC_USERNAME }}'
password: '{{ .Env.ELASTIC_PASSWORD }}'
body:
- '"number" : "5.6.14"'
- '"number" : "5.6.15"'
- '"cluster_name" : "fivex"'
- '"name" : "fivex-master-0"'
- 'You Know, for Search'
2 changes: 1 addition & 1 deletion elasticsearch/examples/5.x/values.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---

clusterName: "fivex"
imageTag: "5.6.14"
imageTag: "5.6.15"
esMajorVersion: 5

extraEnvs:
Expand Down
2 changes: 1 addition & 1 deletion elasticsearch/examples/default/test/goss.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ http:
status: 200
timeout: 2000
body:
- '"number" : "6.6.0"'
- '"number" : "6.6.2"'
- '"cluster_name" : "elasticsearch"'
- '"name" : "elasticsearch-master-0"'
- 'You Know, for Search'
Expand Down
2 changes: 1 addition & 1 deletion elasticsearch/examples/security/test/goss.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ http:
username: '{{ .Env.ELASTIC_USERNAME }}'
password: '{{ .Env.ELASTIC_PASSWORD }}'
body:
- '"number" : "6.6.0"'
- '"number" : "6.6.2"'
- '"cluster_name" : "security"'
- '"name" : "security-master-0"'
- 'You Know, for Search'
Expand Down
2 changes: 1 addition & 1 deletion elasticsearch/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ secretMounts:
# path: /usr/share/elasticsearch/config/certs

image: "docker.elastic.co/elasticsearch/elasticsearch"
imageTag: "6.6.0"
imageTag: "6.6.2"
imagePullPolicy: "IfNotPresent"

podAnnotations: {}
Expand Down
4 changes: 2 additions & 2 deletions kibana/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ maintainers:
- email: [email protected]
name: Elastic
name: kibana
version: 6.6.0-alpha1
appVersion: 6.6.0
version: 6.6.2-alpha1
appVersion: 6.6.2
sources:
- https://github.com/elastic/kibana
icon: https://helm.elastic.co/icons/kibana.png
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.6.0-alpha1
helm install --name kibana elastic/kibana --version 6.6.2-alpha1
```

## Configuration
Expand All @@ -30,7 +30,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.6.0` |
| `imageTag` | The Kibana docker image tag | `6.6.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`<br>`requests.memory: 2Gi`<br>`limits.cpu: 1000m`<br>`limits.memory: 2Gi` |
| `protocol` | The protocol that will be used for the readinessProbe. Change this to `https` if you have `server.ssl.enabled: true` set | `http` |
Expand Down
2 changes: 1 addition & 1 deletion kibana/examples/5.x/test/goss.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ http:
status: 200
timeout: 2000
body:
- '"version":"5.6.14"'
- '"version":"5.6.15"'
username: '{{ .Env.ELASTICSEARCH_USERNAME }}'
password: '{{ .Env.ELASTICSEARCH_PASSWORD }}'

Expand Down
2 changes: 1 addition & 1 deletion kibana/examples/5.x/values.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---

imageTag: 5.6.14
imageTag: 5.6.15
elasticsearchURL: "http://fivex-master:9200"

extraEnvs:
Expand Down
2 changes: 1 addition & 1 deletion kibana/examples/default/test/goss.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ http:
status: 200
timeout: 2000
body:
- '"number":"6.6.0"'
- '"number":"6.6.2"'

http://localhost:5601/app/kibana:
status: 200
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.6.0'
version = '6.6.2'
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 @@ -21,7 +21,7 @@ secretMounts:
# path: /usr/share/elasticsearch/config/certs

image: "docker.elastic.co/kibana/kibana"
imageTag: "6.6.0"
imageTag: "6.6.2"
imagePullPolicy: "IfNotPresent"

resources:
Expand Down

0 comments on commit 5f75ca6

Please sign in to comment.