diff --git a/README.md b/README.md index 8e408ea86..289c2a21c 100644 --- a/README.md +++ b/README.md @@ -90,7 +90,9 @@ kubectl apply -f https://github.com/open-telemetry/opentelemetry-operator/releas Please verify all the resources (e.g., Pods and Deployments) are in a ready state in the `opentelemetry-operator-system` namespace. -* Once all the resources are ready, create a Jaeger instance as follows: +### Using Jager with in-memory storage + +Once all the resources are ready, create a Jaeger instance as follows: ```yaml kubectl apply -f - < --port= --name= +``` + +Or + +```bash +kubectl expose deployment --port= --name= +``` + +After the service is created, add the name of the service as an endpoint in their respective config as follows: + +* [Cassandra DB](https://github.com/jaegertracing/jaeger/blob/main/cmd/jaeger/config-cassandra.yaml): +```yaml +jaeger_storage: + backends: + some_storage: + cassandra: + connection: + servers: [] +``` + +* [ElasticSearch](https://github.com/jaegertracing/jaeger/blob/main/cmd/jaeger/config-elasticsearch.yaml): +```yaml +jaeger_storage: + backends: + some_storage: + elasticseacrh: + servers: [] +``` + +Use the modified config to create Jaeger instance with the help of OpenTelemetry Operator. + +```yaml +kubectl apply -f - <