This repository was archived by the owner on Sep 18, 2024. It is now read-only.
File tree 3 files changed +44
-2
lines changed
3 files changed +44
-2
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ type: application
15
15
# This is the chart version. This version number should be incremented each time you make changes
16
16
# to the chart and its templates, including the app version.
17
17
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18
- version : 0.0.1
18
+ version : 0.0.2
19
19
20
20
# This is the version number of the application being deployed. This version number should be
21
21
# incremented each time you make changes to the application. Versions are not expected to
@@ -26,6 +26,10 @@ dependencies:
26
26
version : 7.10.2
27
27
repository : https://helm.elastic.co
28
28
enabled : true
29
+ - name : kibana
30
+ version : 7.10.2
31
+ repository : https://helm.elastic.co
32
+ enabled : true
29
33
30
34
31
35
Original file line number Diff line number Diff line change 13
13
"default" : " docker.elastic.co/elasticsearch/elasticsearch"
14
14
}
15
15
}
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
+ }
16
42
}
17
43
}
18
44
Original file line number Diff line number Diff line change 1
1
elasticsearch :
2
2
image : docker.elastic.co/elasticsearch/elasticsearch
3
3
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
You can’t perform that action at this time.
0 commit comments