forked from istio/istio
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add instruction about stackdriver adapter config (istio#16388)
- Loading branch information
1 parent
d9cd0c0
commit 737dcad
Showing
2 changed files
with
28 additions
and
799 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Mixer Stackdriver Adapter | ||
|
||
To enable stackdriver adapter: | ||
|
||
1. Download istio/installer repo: | ||
``` | ||
git clone https://github.com/istio/installer && cd installer` | ||
``` | ||
2. Render and apply Stackdriver adapter manifest: | ||
``` | ||
helm template istio-telemetry/mixer-telemetry --execute=templates/stackdriver.yaml -f global.yaml --set mixer.adapters.stackdriver.enabled=true --namespace istio-system | kubectl apply -f - | ||
``` | ||
The full Stackdriver adapter template could be found [here](https://github.com/istio/installer/blob/master/istio-telemetry/mixer-telemetry/templates/stackdriver.yaml) with several values to set: | ||
``` | ||
mixer: | ||
stackdriver: | ||
enabled: false | ||
|
||
auth: | ||
appCredentials: false | ||
apiKey: "" | ||
serviceAccountPath: "" | ||
|
||
tracer: | ||
enabled: false | ||
sampleProbability: 1 | ||
``` |
Oops, something went wrong.