This repository has been archived by the owner on May 28, 2024. It is now read-only.
forked from elastic/helm-charts
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FAQ and examples improvements (elastic#598)
- Add missing section in contributing guide - Add note about ECK - Add more FAQ topics - Document all examples - NIT: fixes typos...
- Loading branch information
Showing
35 changed files
with
1,022 additions
and
289 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Default | ||
|
||
This example deploy APM Server 7.7.0-SNAPSHOT using [default values][]. | ||
|
||
|
||
## Usage | ||
|
||
* Deploy [Elasticsearch Helm chart][]. | ||
|
||
* Deploy APM Server chart with the default values: `make install` | ||
|
||
* You can now setup a port forward to query APM indices: | ||
|
||
``` | ||
kubectl port-forward svc/elasticsearch-master 9200 | ||
curl localhost:9200/_cat/indices | ||
``` | ||
|
||
|
||
## Testing | ||
|
||
You can also run [goss integration tests][] using `make test` | ||
|
||
|
||
[elasticsearch helm chart]: https://github.com/elastic/helm-charts/tree/7.7/elasticsearch/examples/default/ | ||
[goss integration tests]: https://github.com/elastic/helm-charts/tree/7.7/apm-server/examples/default/test/goss.yaml | ||
[default values]: https://github.com/elastic/helm-charts/tree/7.7/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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# OSS | ||
|
||
This example deploy APM Server 7.7.0-SNAPSHOT using [APM Server OSS][] version. | ||
|
||
|
||
## Usage | ||
|
||
* Deploy [Elasticsearch Helm chart][]. | ||
|
||
* Deploy APM Server chart with the default values: `make install` | ||
|
||
* You can now setup a port forward to query APM indices: | ||
|
||
``` | ||
kubectl port-forward svc/oss-master 9200 | ||
curl localhost:9200/_cat/indices | ||
``` | ||
|
||
|
||
## Testing | ||
|
||
You can also run [goss integration tests][] using `make test` | ||
|
||
|
||
[apm server oss]: https://www.elastic.co/downloads/apm-oss | ||
[elasticsearch helm chart]: https://github.com/elastic/helm-charts/tree/7.7/elasticsearch/examples/oss/ | ||
[goss integration tests]: https://github.com/elastic/helm-charts/tree/7.7/apm-server/examples/oss/test/goss.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Security | ||
|
||
This example deploy APM Server 7.7.0-SNAPSHOT using authentication and TLS to connect to | ||
Elasticsearch (see [values][]). | ||
|
||
|
||
## Usage | ||
|
||
* Deploy [Elasticsearch Helm chart][]. | ||
|
||
* Deploy APM Server chart with security: `make install` | ||
|
||
* You can now setup a port forward to query APM indices: | ||
|
||
``` | ||
kubectl port-forward svc/security-master 9200 | ||
curl -u elastic:changeme https://localhost:9200/_cat/indices | ||
``` | ||
|
||
|
||
## Testing | ||
|
||
You can also run [goss integration tests][] using `make test` | ||
|
||
|
||
[elasticsearch helm chart]: https://github.com/elastic/helm-charts/tree/7.7/elasticsearch/examples/security/ | ||
[goss integration tests]: https://github.com/elastic/helm-charts/tree/7.7/apm-server/examples/security/test/goss.yaml | ||
[values]: https://github.com/elastic/helm-charts/tree/7.7/apm-server/examples/security/values.yaml |
Oops, something went wrong.