Skip to content

Commit

Permalink
Deploy Heartbeat + Awsbeats to Kubernetes
Browse files Browse the repository at this point in the history
Resolves s12v#30
  • Loading branch information
mumoshu committed Jun 13, 2018
1 parent 4491a67 commit 8ba9ead
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 8ba9ead

Please sign in to comment.