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.
- Host: GitHub
- URL: https://github.com/ahmedgrati/kibana-helm-chart
- Owner: AhmedGrati
- License: apache-2.0
- Created: 2022-03-22T11:21:36.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-05-30T16:41:06.000Z (over 3 years ago)
- Last Synced: 2025-01-12T23:27:06.656Z (9 months ago)
- Topics: elk-stack, helm, kibana, kubernetes, monitoring
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```