Skip to content

Commit

Permalink
Deploy Auditbeat + 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 ad2686e commit 617f6f3
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
```

### Auditbeat

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

### Heartbeat

```
Expand Down

0 comments on commit 617f6f3

Please sign in to comment.