Skip to content
This repository was archived by the owner on May 16, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apm-server/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ maintainers:
- email: helm-charts@elastic.co
name: Elastic
name: apm-server
version: 7.9.0
appVersion: 7.9.0
version: 7.9.1-SNAPSHOT
appVersion: 7.9.1-SNAPSHOT
sources:
- https://github.com/elastic/apm
icon: https://helm.elastic.co/icons/apm.png
18 changes: 16 additions & 2 deletions apm-server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,18 @@ The design and code is less mature than official GA features and is being
provided as-is with no warranties. Alpha features are not subject to the support
SLA of official GA features (see [supported configurations][] for more details).

**Warning**: This branch is used for development, please use [7.9.0][] release
for released version.


<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->


- [Requirements](#requirements)
- [Installing](#installing)
- [Install released version using Helm repository](#install-released-version-using-helm-repository)
- [Install development version using 7.9 branch and 7.9.1-SNAPSHOT versions](#install-development-version-using-79-branch-and-791-snapshot-versions)
- [Upgrading](#upgrading)
- [Usage notes](#usage-notes)
- [Configuration](#configuration)
Expand All @@ -38,8 +43,9 @@ See [supported configurations][] for more details.

## Installing

This chart is tested with the latest 7.9.0 version.
This chart is tested with the latest 7.9.1-SNAPSHOT version.

### Install released version using Helm repository

* Add the Elastic Helm charts repo:
`helm repo add elastic https://helm.elastic.co`
Expand All @@ -49,6 +55,14 @@ This chart is tested with the latest 7.9.0 version.
- with [Helm 3 (beta)][]: `helm install apm-server elastic/apm-server`


### Install development version using 7.9 branch and 7.9.1-SNAPSHOT versions

* Clone the git repo: `git clone git@github.com:elastic/helm-charts.git`

* Install it:
- with Helm 2: `helm install --name apm-server ./helm-charts/apm-server --set imageTag=7.9.1-SNAPSHOT`
- with [Helm 3 (beta)][]: `helm install apm-server ./helm-charts/apm-server --set imageTag=7.9.1-SNAPSHOT`


## Upgrading

Expand Down Expand Up @@ -85,7 +99,7 @@ as a reference. They are also used in the automated testing of this chart.
| `fullnameOverride` | Overrides the full name of the resources. If not set the name will default to `.Release.Name` - `.Values.nameOverride` or `.Chart.Name` | `""` |
| `imagePullPolicy` | The Kubernetes [imagePullPolicy][] value | `IfNotPresent` |
| `imagePullSecrets` | Configuration for [imagePullSecrets][] so that you can use a private registry for your image | `[]` |
| `imageTag` | The APM Server Docker image tag | `7.9.0` |
| `imageTag` | The APM Server Docker image tag | `7.9.1-SNAPSHOT` |
| `image` | The APM Server Docker image | `docker.elastic.co/apm/apm-server` |
| `ingress` | Configurable [ingress][] to expose the APM Server service | see [values.yaml][] |
| `labels` | Configurable [labels][] applied to all APM server pods | `{}` |
Expand Down
2 changes: 1 addition & 1 deletion apm-server/examples/default/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Default

This example deploy APM Server 7.9.0 using [default values][].
This example deploy APM Server 7.9.1-SNAPSHOT using [default values][].


## Usage
Expand Down
2 changes: 1 addition & 1 deletion apm-server/examples/default/test/goss.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ http:
status: 200
timeout: 2000
body:
- '7.9.0'
- '7.9.1'
2 changes: 1 addition & 1 deletion apm-server/examples/oss/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# OSS

This example deploy APM Server 7.9.0 using [APM Server OSS][] version.
This example deploy APM Server 7.9.1-SNAPSHOT using [APM Server OSS][] version.


## Usage
Expand Down
2 changes: 1 addition & 1 deletion apm-server/examples/oss/test/goss.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ http:
status: 200
timeout: 2000
body:
- '7.9.0'
- '7.9.1'
2 changes: 1 addition & 1 deletion apm-server/examples/security/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Security

This example deploy APM Server 7.9.0 using authentication and TLS to connect to
This example deploy APM Server 7.9.1-SNAPSHOT using authentication and TLS to connect to
Elasticsearch (see [values][]).


Expand Down
2 changes: 1 addition & 1 deletion apm-server/examples/security/test/goss.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ http:
status: 200
timeout: 2000
body:
- '7.9.0'
- '7.9.1'
2 changes: 1 addition & 1 deletion apm-server/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ extraVolumes: []
# emptyDir: {}

image: "docker.elastic.co/apm/apm-server"
imageTag: "7.9.0"
imageTag: "7.9.1-SNAPSHOT"
imagePullPolicy: "IfNotPresent"
imagePullSecrets: []

Expand Down
4 changes: 2 additions & 2 deletions elasticsearch/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ maintainers:
- email: helm-charts@elastic.co
name: Elastic
name: elasticsearch
version: 7.9.0
appVersion: 7.9.0
version: 7.9.1-SNAPSHOT
appVersion: 7.9.1-SNAPSHOT
sources:
- https://github.com/elastic/elasticsearch
icon: https://helm.elastic.co/icons/elasticsearch.png
22 changes: 20 additions & 2 deletions elasticsearch/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,18 @@
This Helm chart is a lightweight way to configure and run our official
[Elasticsearch Docker image][].

**Warning**: This branch is used for development, please use [7.9.0][] release
for released version.


<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->


- [Requirements](#requirements)
- [Installing](#installing)
- [Install released version using Helm repository](#install-released-version-using-helm-repository)
- [Install development version using 7.9 branch and 7.9.1-SNAPSHOT versions](#install-development-version-using-79-branch-and-791-snapshot-versions)
- [Upgrading](#upgrading)
- [Usage notes](#usage-notes)
- [Configuration](#configuration)
Expand Down Expand Up @@ -47,7 +53,9 @@ See [supported configurations][] for more details.

## Installing

This chart is tested with the latest 7.9.0 version.
This chart is tested with the latest 7.9.1-SNAPSHOT version.

### Install released version using Helm repository

* Add the Elastic Helm charts repo:
`helm repo add elastic https://helm.elastic.co`
Expand All @@ -56,6 +64,16 @@ This chart is tested with the latest 7.9.0 version.
- with Helm 2: `helm install --name elasticsearch elastic/elasticsearch`
- with [Helm 3 (beta)][]: `helm install elasticsearch elastic/elasticsearch`


### Install development version using 7.9 branch and 7.9.1-SNAPSHOT versions

* Clone the git repo: `git clone git@github.com:elastic/helm-charts.git`

* Install it:
- with Helm 2: `helm install --name elasticsearch ./helm-charts/elasticsearch --set imageTag=7.9.1-SNAPSHOT`
- with [Helm 3 (beta)][]: `helm install elasticsearch ./helm-charts/elasticsearch --set imageTag=7.9.1-SNAPSHOT`


## Upgrading

Please always check [CHANGELOG.md][] and [BREAKING_CHANGES.md][] before
Expand Down Expand Up @@ -109,7 +127,7 @@ support multiple versions with minimal changes.
| `httpPort` | The http port that Kubernetes will use for the healthchecks and the service. If you change this you will also need to set [http.port][] in `extraEnvs` | `9200` |
| `imagePullPolicy` | The Kubernetes [imagePullPolicy][] value | `IfNotPresent` |
| `imagePullSecrets` | Configuration for [imagePullSecrets][] so that you can use a private registry for your image | `[]` |
| `imageTag` | The Elasticsearch Docker image tag | `7.9.0` |
| `imageTag` | The Elasticsearch Docker image tag | `7.9.1-SNAPSHOT` |
| `image` | The Elasticsearch Docker image | `docker.elastic.co/elasticsearch/elasticsearch` |
| `ingress` | Configurable [ingress][] to expose the Elasticsearch service. See [values.yaml][] for an example | see [values.yaml][] |
| `initResources` | Allows you to set the [resources][] for the `initContainer` in the StatefulSet | `{}` |
Expand Down
2 changes: 1 addition & 1 deletion elasticsearch/examples/config/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Config

This example deploy a single node Elasticsearch 7.9.0 with authentication and
This example deploy a single node Elasticsearch 7.9.1-SNAPSHOT with authentication and
custom [values][].


Expand Down
2 changes: 1 addition & 1 deletion elasticsearch/examples/default/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Default

This example deploy a 3 nodes Elasticsearch 7.9.0 cluster using
This example deploy a 3 nodes Elasticsearch 7.9.1-SNAPSHOT cluster using
[default values][].


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 @@ -15,7 +15,7 @@ http:
status: 200
timeout: 2000
body:
- '"number" : "7.9.0"'
- '"number" : "7.9.1"'
Comment thread
This conversation was marked as resolved.
Outdated
- '"cluster_name" : "elasticsearch"'
- '"name" : "elasticsearch-master-0"'
- 'You Know, for Search'
Expand Down
2 changes: 1 addition & 1 deletion elasticsearch/examples/docker-for-mac/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Docker for Mac

This example deploy a 3 nodes Elasticsearch 7.9.0 cluster on [Docker for Mac][]
This example deploy a 3 nodes Elasticsearch 7.9.1-SNAPSHOT cluster on [Docker for Mac][]
using [custom values][].

Note that this configuration should be used for test only and isn't recommended
Expand Down
4 changes: 2 additions & 2 deletions elasticsearch/examples/kubernetes-kind/README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# KIND

This example deploy a 3 nodes Elasticsearch 7.9.0 cluster on [Kind][]
This example deploy a 3 nodes Elasticsearch 7.9.1-SNAPSHOT cluster on [Kind][]
using [custom values][].

Note that this configuration should be used for test only and isn't recommended
for production.

Note that Kind < 0.7.0 are affected by a [kind issue][] with mount points
created from PVCs not writable by non-root users. [kubernetes-sigs/kind#1157][]
fix it in Kind 0.7.0.
fix it in Kind 0.7.9.1-SNAPSHOT
Comment thread
This conversation was marked as resolved.
Outdated

The workaround for Kind < 0.7.0 is to install manually
[Rancher Local Path Provisioner][] and use `local-path` storage class for
Expand Down
2 changes: 1 addition & 1 deletion elasticsearch/examples/microk8s/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# MicroK8S

This example deploy a 3 nodes Elasticsearch 7.9.0 cluster on [MicroK8S][]
This example deploy a 3 nodes Elasticsearch 7.9.1-SNAPSHOT cluster on [MicroK8S][]
using [custom values][].

Note that this configuration should be used for test only and isn't recommended
Expand Down
2 changes: 1 addition & 1 deletion elasticsearch/examples/minikube/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Minikube

This example deploy a 3 nodes Elasticsearch 7.9.0 cluster on [Minikube][]
This example deploy a 3 nodes Elasticsearch 7.9.1-SNAPSHOT cluster on [Minikube][]
using [custom values][].

If helm or kubectl timeouts occur, you may consider creating a minikube VM with
Expand Down
2 changes: 1 addition & 1 deletion elasticsearch/examples/multi/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Multi

This example deploy an Elasticsearch 7.9.0 cluster composed of 2 different Helm
This example deploy an Elasticsearch 7.9.1-SNAPSHOT cluster composed of 2 different Helm
releases:

- `helm-es-multi-master` for the 3 master nodes using [master values][]
Expand Down
2 changes: 1 addition & 1 deletion elasticsearch/examples/openshift/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# OpenShift

This example deploy a 3 nodes Elasticsearch 7.9.0 cluster on [OpenShift][]
This example deploy a 3 nodes Elasticsearch 7.9.1-SNAPSHOT cluster on [OpenShift][]
using [custom values][].

## Usage
Expand Down
2 changes: 1 addition & 1 deletion elasticsearch/examples/openshift/test/goss.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ http:
status: 200
timeout: 2000
body:
- '"number" : "7.9.0"'
- '"number" : "7.9.1"'
- '"cluster_name" : "elasticsearch"'
- '"name" : "elasticsearch-master-0"'
- 'You Know, for Search'
2 changes: 1 addition & 1 deletion elasticsearch/examples/oss/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# OSS

This example deploy a 3 nodes Elasticsearch 7.9.0 cluster using
This example deploy a 3 nodes Elasticsearch 7.9.1-SNAPSHOT cluster using
[Elasticsearch OSS][] version.

## Usage
Expand Down
2 changes: 1 addition & 1 deletion elasticsearch/examples/oss/test/goss.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ http:
status: 200
timeout: 2000
body:
- '"number" : "7.9.0"'
- '"number" : "7.9.1"'
Comment thread
This conversation was marked as resolved.
Outdated
- '"cluster_name" : "oss"'
- '"name" : "oss-master-0"'
- 'You Know, for Search'
2 changes: 1 addition & 1 deletion elasticsearch/examples/security/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Security

This example deploy a 3 nodes Elasticsearch 7.9.0 with authentication and
This example deploy a 3 nodes Elasticsearch 7.9.1-SNAPSHOT with authentication and
autogenerated certificates for TLS (see [values][]).

Note that this configuration should be used for test only. For a production
Expand Down
8 changes: 4 additions & 4 deletions elasticsearch/examples/upgrade/README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
# Upgrade

This example will deploy a 3 node Elasticsearch cluster using an old chart version,
then upgrade it to version 7.9.0.
then upgrade it to version 7.9.1-SNAPSHOT.

The following upgrades are tested:
- Upgrade from [7.0.0-alpha1][] version on K8S <1.16
- Upgrade from [7.4.0][] version on K8S >=1.16 (Elasticsearch chart < 7.4.0 are
- Upgrade from [7.9.1-SNAPSHOT][] version on K8S >=1.16 (Elasticsearch chart < 7.9.1-SNAPSHOT are
Comment thread
This conversation was marked as resolved.
Outdated
not compatible with K8S >= 1.16)


## Usage

Running `make install` command will do first install and 7.9.0 upgrade.
Running `make install` command will do first install and 7.9.1-SNAPSHOT upgrade.

Note: [jq][] is a requirement for this make target.

Expand All @@ -22,6 +22,6 @@ You can also run [goss integration tests][] using `make test`.


[7.0.0-alpha1]: https://github.com/elastic/helm-charts/releases/tag/7.0.0-alpha1
[7.4.0]: https://github.com/elastic/helm-charts/releases/tag/7.4.0
[7.9.1-SNAPSHOT]: https://github.com/elastic/helm-charts/releases/tag/7.9.1-SNAPSHOT
Comment thread
This conversation was marked as resolved.
Outdated
[goss integration tests]: https://github.com/elastic/helm-charts/tree/7.9/elasticsearch/examples/upgrade/test/goss.yaml
[jq]: https://stedolan.github.io/jq/
2 changes: 1 addition & 1 deletion elasticsearch/examples/upgrade/test/goss.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ http:
status: 200
timeout: 2000
body:
- '"number" : "7.9.0"'
- '"number" : "7.9.1"'
Comment thread
This conversation was marked as resolved.
Outdated
- '"cluster_name" : "upgrade"'
- '"name" : "upgrade-master-0"'
- 'You Know, for Search'
2 changes: 1 addition & 1 deletion elasticsearch/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ secretMounts: []
# defaultMode: 0755

image: "docker.elastic.co/elasticsearch/elasticsearch"
imageTag: "7.9.0"
imageTag: "7.9.1-SNAPSHOT"
imagePullPolicy: "IfNotPresent"

podAnnotations: {}
Expand Down
4 changes: 2 additions & 2 deletions filebeat/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ maintainers:
- email: helm-charts@elastic.co
name: Elastic
name: filebeat
version: 7.9.0
appVersion: 7.9.0
version: 7.9.1-SNAPSHOT
appVersion: 7.9.1-SNAPSHOT
sources:
- https://github.com/elastic/beats
icon: https://helm.elastic.co/icons/beats.png
Loading