This repository has been archived by the owner on May 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bump 7.x branch to 7.9.0-SNAPSHOT (#661)
This commit bump the 7.x branch which will be dedicated to the 7.x.x releases for the Helm Charts. It will allow to: - test this branch with the daily Stack Docker images 7.9.0-SNAPSHOT via dedicated Jenkins jobs - test the staging 7.9.x Docker images before a release This is also backporting some updates in README files that were made in other branches and fixing the links to Elastic documentation.
- Loading branch information
Showing
71 changed files
with
295 additions
and
472 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,8 +5,8 @@ maintainers: | |
- email: [email protected] | ||
name: Elastic | ||
name: apm-server | ||
version: 7.8.0-SNAPSHOT | ||
appVersion: 7.8.0-SNAPSHOT | ||
version: 7.9.0-SNAPSHOT | ||
appVersion: 7.9.0-SNAPSHOT | ||
sources: | ||
- https://github.com/elastic/apm | ||
icon: https://helm.elastic.co/icons/apm.png |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,25 @@ | ||
# APM Server Helm Chart | ||
|
||
This Helm chart is a lightweight way to configure and run our official | ||
[APM Server Docker image][]. | ||
|
||
**Warning**: This functionality is in alpha and is subject to change. | ||
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.7.1][] 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) | ||
- [Using Helm repository](#using-helm-repository) | ||
- [Using the 7.x branch](#using-the-7x-branch) | ||
- [Install released version using Helm repository](#install-released-version-using-helm-repository) | ||
- [Install development version using 7.x branch and 7.9.0-SNAPSHOT versions](#install-development-version-using-7x-branch-and-790-snapshot-versions) | ||
- [Upgrading](#upgrading) | ||
- [Usage notes](#usage-notes) | ||
- [Configuration](#configuration) | ||
|
@@ -20,45 +33,31 @@ | |
<!-- docker run --rm -it -v $(pwd):/usr/src jorgeandrada/doctoc --github --> | ||
|
||
|
||
This functionality is in alpha and is subject to change. 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. | ||
|
||
This Helm chart is a lightweight way to configure and run our official | ||
[APM Server Docker image][]. | ||
|
||
|
||
## Requirements | ||
|
||
* Kubernetes >= 1.9 | ||
* [Helm][] >= 2.8.0 | ||
|
||
See [supported configurations][] for more details. | ||
|
||
|
||
## Installing | ||
|
||
This chart is tested with the latest 7.8.0-SNAPSHOT versions. | ||
This chart is tested with the latest 7.9.0-SNAPSHOT versions. | ||
|
||
### Using Helm repository | ||
### Install released version using Helm repository | ||
|
||
* Add the Elastic Helm charts repo: | ||
`helm repo add elastic https://helm.elastic.co` | ||
|
||
* Install the latest 7.8 release: | ||
`helm install --name apm-server elastic/apm-server --version=7.8.0` | ||
|
||
### Using the 7.x branch | ||
* Install the latest 7.7 release: | ||
`helm install --name apm-server elastic/apm-server` | ||
|
||
* Clone the git repo and checkout the right branch: | ||
### Install development version using 7.x branch and 7.9.0-SNAPSHOT versions | ||
|
||
```shell | ||
git clone [email protected]:elastic/helm-charts.git | ||
cd helm-charts | ||
git checkout -b 7.x origin/7.x | ||
```` | ||
* Clone the git repo: `git clone [email protected]:elastic/helm-charts.git` | ||
|
||
* Install the latest 7.8.0-SNAPSHOT: | ||
`helm install --name apm-server ./helm-charts/apm-server` | ||
* Install it: `helm install --name apm-server ./helm-charts/apm-server` | ||
|
||
|
||
## Upgrading | ||
|
@@ -96,7 +95,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.8.0-SNAPSHOT` | | ||
| `imageTag` | The APM Server Docker image tag | `7.9.0-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 | `{}` | | ||
|
@@ -144,6 +143,7 @@ Please check [CONTRIBUTING.md][] before any contribution or for any questions | |
about our development and testing process. | ||
|
||
|
||
[7.7.1]: https://github.com/elastic/helm-charts/blob/7.7.1/apm-server/README.md | ||
[BREAKING_CHANGES.md]: https://github.com/elastic/helm-charts/blob/master/BREAKING_CHANGES.md | ||
[CHANGELOG.md]: https://github.com/elastic/helm-charts/blob/master/CHANGELOG.md | ||
[CONTRIBUTING.md]: https://github.com/elastic/helm-charts/blob/master/CONTRIBUTING.md | ||
|
@@ -172,6 +172,7 @@ about our development and testing process. | |
[resources]: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ | ||
[service]: https://kubernetes.io/docs/concepts/services-networking/service/ | ||
[serviceAccount]: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ | ||
[supported configurations]: https://github.com/elastic/helm-charts/tree/7.x/README.md#supported-configurations | ||
[tolerations]: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ | ||
[updateStrategy]: https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#updating-a-deployment | ||
[values.yaml]: https://github.com/elastic/helm-charts/tree/7.x/apm-server/values.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.