Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bnookala/fabrikate-jaeger
https://github.com/bnookala/fabrikate-jaeger
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bnookala/fabrikate-jaeger
- Owner: bnookala
- License: mit
- Created: 2019-01-16T22:55:28.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-02T03:19:05.000Z (over 5 years ago)
- Last Synced: 2024-10-26T00:30:46.726Z (about 2 months ago)
- Homepage:
- Size: 5.86 KB
- Stars: 2
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Fabrikate-Jaeger
This [fabrikate](http://github.com/microsoft/fabrikate) stack installs Jaeger on your cluster, with a provided "production" configuration.
### Requirements
- The [fabrikate 0.2.3](http://github.com/microsoft/fabrikate/releases) cli tool installed locally
- The [helm](https://github.com/helm/helm/releases) cli tool installed locally
- The kubectl cli tool installed locally### Setup
Make sure your helm incubator repository is pointed at https://kubernetes-charts-incubator.storage.googleapis.com/. Older versions of Helm will have the incubator repository configured to a different location.
Run the following in a terminal/shell:
```
helm repo remove incubator && helm repo add incubator https://kubernetes-charts-incubator.storage.googleapis.com/
```### Installing fabrikate-jaeger
1. In your stack's `component.json`, include `fabrikate-jaeger`:
```json
{
"name": "my-cool-stack",
"subcomponents": [
{
"name": "fabrikate-jaeger",
"source": "https://github.com/bnookala/fabrikate-jaeger",
"method": "git"
}
]
}
```2. In a terminal window, install the stack dependencies:
```
fab install
```3. In a terminal window, generate the stack:
```
fab generate prod
```4. Apply the generated stack manifests:
```
kubectl apply -f ./generated/prod/ --recursive
```### License
MIT