From d1e4fd806379b3037841a6b914d1204655077102 Mon Sep 17 00:00:00 2001 From: David Hope Date: Fri, 11 Oct 2024 14:10:19 -0400 Subject: [PATCH] Update README.md --- .github/README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/README.md b/.github/README.md index 46dccc866f..b683369a40 100644 --- a/.github/README.md +++ b/.github/README.md @@ -37,7 +37,12 @@ Additionally, the OpenTelemetry Contrib collector has also been changed to the [ ``` Don't forget to replace - `YOUR_APM_ENDPOINT_WITHOUT_HTTPS_PREFIX`: your Elastic APM endpoint (*without* `https://` prefix) that *must* also include the port (example: `1234567.apm.us-west2.gcp.elastic-cloud.com:443`). - - `YOUR_APM_SECRET_TOKEN`: your Elastic APM secret token, include the Bearer or ApiKey but not the "Authorization=" part e.g. Bearer XXXXXX or ApiKey XXXXX + - `YOUR_APM_SECRET_TOKEN`: your Elastic APM secret token, include the Bearer or ApiKey but not the "Authorization=" part e.g. Bearer XXXXXX or ApiKey XXXXX below is an example: + ``` + kubectl create secret generic elastic-secret \ + --from-literal=elastic_apm_endpoint='12345.apm.us-west2.gcp.elastic-cloud.com:443' \ + --from-literal=elastic_apm_secret_token='Bearer 123456789123456YE2' + ``` 1. Execute the following commands to deploy the OpenTelemetry demo to your Kubernetes cluster: ``` # clone this repository