An open API service indexing awesome lists of open source software.

https://github.com/ahmedgrati/kibana-helm-chart

This is a kibana helm chart that will be part of the ELK stack.
https://github.com/ahmedgrati/kibana-helm-chart

elk-stack helm kibana kubernetes monitoring

Last synced: 7 months ago
JSON representation

This is a kibana helm chart that will be part of the ELK stack.

Awesome Lists containing this project

README

          

# kibana-helm-chart
This is a kibana helm chart that will be part of the ELK stack.
# Getting Started
1. Create `monitoring` namespace, by running the following command:
```shell
kubectl create ns monitoring
```
2. Pull `kibana` dependencies, by running the following command:
```shell
helm dependency update ./kibana-helm-chart
```
3. Create a secret that will hold elasticsearch credentials. It should look like this:
```yaml
apiVersion: v1
kind: Secret
metadata:
name: kibana-elastic-secret
namespace: monitoring
data:
username: ZWxhc3RpYw==
password: RWxhc3RpYzJQYXNzd29yZA==
```
4. Install the chart, by running this command:
```shell
helm install kibana kibana-helm-chart -f kibana-helm-chart/values.yaml -n monitoring
```