Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
0252ffe9
Commit
0252ffe9
authored
Mar 17, 2020
by
Adrien Kohlbecker
Committed by
Achilleas Pipinellis
Mar 17, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Document kibana deployment
parent
c2990421
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
0 deletions
+35
-0
doc/user/clusters/applications.md
doc/user/clusters/applications.md
+35
-0
No files found.
doc/user/clusters/applications.md
View file @
0252ffe9
...
...
@@ -488,6 +488,41 @@ The Elastic Stack cluster application is intended as a log aggregation solution
[
Advanced Global Search
](
../search/advanced_global_search.md
)
functionality, which uses a separate
Elasticsearch cluster.
#### Optional: deploy Kibana to perform advanced queries
If you are an advanced user and have direct access to your Kubernetes cluster using
`kubectl`
and
`helm`
, you can deploy Kibana manually.
The following assumes that
`helm`
has been
[
initialized
](
https://v2.helm.sh/docs/helm/
)
with
`helm init`
.
Save the following to
`kibana.yml`
:
```
yaml
elasticsearch
:
enabled
:
false
logstash
:
enabled
:
false
kibana
:
enabled
:
true
env
:
ELASTICSEARCH_HOSTS
:
http://elastic-stack-elasticsearch-client.gitlab-managed-apps.svc.cluster.local:9200
```
Then install it on your cluster:
```
shell
helm
install
--name
kibana stable/elastic-stack
--values
kibana.yml
```
To access kibana, forward the port to your local machine:
```
shell
kubectl port-forward svc/kibana 5601:443
```
Then, you can visit Kibana at
`http://localhost:5601`
.
### Future apps
Interested in contributing a new GitLab managed app? Visit the
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment