Skip to content

Commit

Permalink
Deploy APM Server + Awsbeats to Kubernetes
Browse files Browse the repository at this point in the history
Resolves s12v#34
  • Loading branch information
mumoshu committed Jun 13, 2018
1 parent a39d985 commit 4491a67
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 @@ -165,6 +165,38 @@ helm upgrade --install filebeat ./charts/stable/filebeat \
--set rbac.enabled=true
```

### APM Server

```
cat << EOS > values.yaml
image:
repository: kubeaws/awsbeats
tag: apm-server-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/apm-server is merged
# See https://github.com/kubernetes/charts/pull/6058
git clone [email protected]:mumoshu/charts.git charts
git checkout apm-server
helm upgrade --install apm-server ./charts/stable/apm-server \
-f values.yaml \
--set rbac.enabled=true
```

### Metricbeat

Edit the official Kubernetes manifests to use:
Expand Down

0 comments on commit 4491a67

Please sign in to comment.