forked from s12v/awsbeats
-
-
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.
Deploy Heartbeat + Awsbeats to Kubernetes
Resolves s12v#30
- Loading branch information
Showing
1 changed file
with
32 additions
and
0 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 |
---|---|---|
|
@@ -197,6 +197,38 @@ helm upgrade --install apm-server ./charts/stable/apm-server \ | |
--set rbac.enabled=true | ||
``` | ||
|
||
### Heartbeat | ||
|
||
``` | ||
cat << EOS > values.yaml | ||
image: | ||
repository: kubeaws/awsbeats | ||
tag: heartbeat-canary | ||
pullPolicy: Always | ||
plugins: | ||
- kinesis.so | ||
config: | ||
output.file: | ||
enabled: false | ||
output.streams: | ||
enabled: true | ||
region: ap-northeast-1 | ||
stream_name: test1 | ||
partition_key: mykey | ||
EOS | ||
# No need to do this once stable/heartbeat is merged | ||
# See https://github.com/kubernetes/charts/pull/5766 | ||
git clone [email protected]:mumoshu/charts.git charts | ||
git checkout heartbeat | ||
helm upgrade --install heartbeat ./charts/stable/heartbeat \ | ||
-f values.yaml \ | ||
--set rbac.enabled=true | ||
``` | ||
|
||
### Metricbeat | ||
|
||
Edit the official Kubernetes manifests to use: | ||
|