https://github.com/jaegertracing/jaeger-operator
Jaeger Operator for Kubernetes simplifies deploying and running Jaeger on Kubernetes.
https://github.com/jaegertracing/jaeger-operator
hacktoberfest jaegertracing kubernetes operator
Last synced: about 1 month ago
JSON representation
Jaeger Operator for Kubernetes simplifies deploying and running Jaeger on Kubernetes.
- Host: GitHub
- URL: https://github.com/jaegertracing/jaeger-operator
- Owner: jaegertracing
- License: apache-2.0
- Created: 2018-08-28T08:03:12.000Z (almost 7 years ago)
- Default Branch: main
- Last Pushed: 2025-05-09T01:53:37.000Z (about 2 months ago)
- Last Synced: 2025-05-12T13:08:51.130Z (about 1 month ago)
- Topics: hacktoberfest, jaegertracing, kubernetes, operator
- Language: Go
- Homepage: https://www.jaegertracing.io/docs/latest/operator/
- Size: 24.1 MB
- Stars: 1,070
- Watchers: 15
- Forks: 347
- Open Issues: 121
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
[![Build Status][ci-img]][ci] [![Go Report Card][goreport-img]][goreport] [![Code Coverage][cov-img]][cov] [![GoDoc][godoc-img]][godoc] [](https://securityscorecards.dev/viewer/?uri=github.com/jaegertracing/jaeger-operator)
# Jaeger Operator for Kubernetes
The Jaeger Operator is an implementation of a [Kubernetes Operator](https://kubernetes.io/docs/concepts/extend-kubernetes/operator/).
## Getting started
Firstly, ensure an [ingress-controller is deployed](https://kubernetes.github.io/ingress-nginx/deploy/). When using `minikube`, you can use the `ingress` add-on: `minikube start --addons=ingress`
Then follow the Jaeger Operator [installation instructions](https://www.jaegertracing.io/docs/latest/operator/).
Once the `jaeger-operator` deployment in the namespace `observability` is ready, create a Jaeger instance, like:
```
kubectl apply -n observability -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 - <