-
Notifications
You must be signed in to change notification settings - Fork 345
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added automatic provisioning of Kafka when its operator is available
Signed-off-by: Juraci Paixão Kröhling <[email protected]>
- Loading branch information
1 parent
01e39a3
commit ca924b3
Showing
38 changed files
with
2,484 additions
and
66 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# this example requires the strimzi operator to be running in the cluster: | ||
# https://strimzi.io/quickstarts/minikube/ | ||
# basically: | ||
# $ kubectl create namespace kafka | ||
# $ curl -L https://github.com/strimzi/strimzi-kafka-operator/releases/download/0.14.0/strimzi-cluster-operator-0.14.0.yaml \ | ||
# | sed 's/namespace: .*/namespace: kafka/' \ | ||
# | kubectl apply -f - -n kafka | ||
apiVersion: jaegertracing.io/v1 | ||
kind: Jaeger | ||
metadata: | ||
name: auto-provision-kafka | ||
spec: | ||
strategy: streaming | ||
collector: | ||
image: jaegertracing/jaeger-collector:latest # TLS configuration is supported starting from 1.15 | ||
ingester: | ||
image: jaegertracing/jaeger-ingester:latest # TLS configuration is supported starting from 1.15 | ||
options: | ||
ingester: | ||
deadlockInterval: 0 | ||
storage: | ||
type: elasticsearch | ||
options: | ||
es: | ||
# Note: This assumes elasticsearch is running in the "default" namespace. | ||
server-urls: http://elasticsearch.default.svc:9200 |
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
Oops, something went wrong.