Skip to content
This repository was archived by the owner on Sep 18, 2024. It is now read-only.

Commit 4fb5572

Browse files
committed
add kibana v0.0.2
1 parent 4c2dcd8 commit 4fb5572

File tree

3 files changed

+44
-2
lines changed

3 files changed

+44
-2
lines changed

charts/elastic/Chart.yaml

+5-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.0.1
18+
version: 0.0.2
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
@@ -26,6 +26,10 @@ dependencies:
2626
version: 7.10.2
2727
repository: https://helm.elastic.co
2828
enabled: true
29+
- name: kibana
30+
version: 7.10.2
31+
repository: https://helm.elastic.co
32+
enabled: true
2933

3034

3135

charts/elastic/values.schema.json

+26
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,32 @@
1313
"default": "docker.elastic.co/elasticsearch/elasticsearch"
1414
}
1515
}
16+
},
17+
"kibana": {
18+
"description": "postgres specific configuration",
19+
"type": "object",
20+
"properties": {
21+
"ingress": {
22+
"type": "object",
23+
"form": true,
24+
"title": "Ingress Details",
25+
"properties": {
26+
"hostname": {
27+
"type": "string",
28+
"form": true,
29+
"title": "Hostname",
30+
"x-form": {
31+
"hidden": true
32+
},
33+
"x-generated": {
34+
"type": "externalDNS",
35+
"scope": "jupyter",
36+
"name": "ihm"
37+
}
38+
}
39+
}
40+
}
41+
}
1642
}
1743
}
1844

charts/elastic/values.yaml

+13-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
11
elasticsearch:
22
image: docker.elastic.co/elasticsearch/elasticsearch
33
sysctlInitContainer:
4-
enabled: false
4+
enabled: false
5+
6+
kibana:
7+
ingress:
8+
enabled: true
9+
tls: true
10+
annotations:
11+
kubernetes.io/ingress.class: nginx
12+
# kubernetes.io/tls-acme: "true"
13+
hostname: chart-example.local
14+
# - secretName: chart-example-tls
15+
# hosts:
16+
# - chart-example.local

0 commit comments

Comments
 (0)