This fabrikate stack installs Jaeger on your cluster, with a provided "production" configuration.
- The fabrikate 0.2.3 cli tool installed locally
- The helm cli tool installed locally
- The kubectl cli tool installed locally
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/
- In your stack's
component.json
, includefabrikate-jaeger
:
{
"name": "my-cool-stack",
"subcomponents": [
{
"name": "fabrikate-jaeger",
"source": "https://github.com/bnookala/fabrikate-jaeger",
"method": "git"
}
]
}
- In a terminal window, install the stack dependencies:
fab install
- In a terminal window, generate the stack:
fab generate prod
- Apply the generated stack manifests:
kubectl apply -f ./generated/prod/ --recursive
MIT