https://github.com/andrewstuart/helm-charts
My helm charts
https://github.com/andrewstuart/helm-charts
Last synced: 5 months ago
JSON representation
My helm charts
- Host: GitHub
- URL: https://github.com/andrewstuart/helm-charts
- Owner: andrewstuart
- License: apache-2.0
- Created: 2017-03-16T19:48:34.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-16T20:25:28.000Z (over 9 years ago)
- Last Synced: 2025-02-03T06:41:58.648Z (over 1 year ago)
- Size: 19.5 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Helm Charts
A set of helm charts I've created that have proven useful to me, and hopefully
you may find useful also.
## Elk
Set up ELK logging with automatic fluentd log aggregation for all stdout logs in
your kubernetes cluster. Log events will be tagged automatically with helpful
metadata such as pod name, container name, namespace, and some other k8s
metadata.
So far there are two required values:
- pvcStorage
- dnsName
There is also a prerequisite for you to have a PVC provisioner that can create
PersistentVolumes for the `standard` storage class.
```bash
helm install --set pvcStorage=100G --set dnsName=logs.astuart.co -n elk elk-cluster-addon
```