-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathopensearch-dashboards-values.yaml
More file actions
57 lines (57 loc) · 1.55 KB
/
opensearch-dashboards-values.yaml
File metadata and controls
57 lines (57 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
---
image:
repository: oci.stackable.tech/sdp/opensearch-dashboards
tag: 3.4.0-stackable0.0.0-dev
serviceAccount:
create: false
name: simple-opensearch-serviceaccount
config:
opensearch_dashboards.yml:
server:
ssl:
enabled: true
certificate: /stackable/opensearch-dashboards/config/tls/tls.crt
key: /stackable/opensearch-dashboards/config/tls/tls.key
opensearch:
username: kibanaserver
ssl:
verificationMode: full
certificateAuthorities:
- /stackable/opensearch-dashboards/config/tls/ca.crt
opensearch_security:
cookie:
secure: true
extraEnvs:
- name: OPENSEARCH_HOSTS
valueFrom:
configMapKeyRef:
name: simple-opensearch
key: OPENSEARCH_HOSTS
- name: OPENSEARCH_PASSWORD
valueFrom:
secretKeyRef:
name: opensearch-credentials
key: kibanaserver
extraVolumes:
- name: tls
ephemeral:
volumeClaimTemplate:
metadata:
annotations:
secrets.stackable.tech/class: tls
secrets.stackable.tech/scope: service=opensearch-dashboards
spec:
storageClassName: secrets.stackable.tech
accessModes:
- ReadWriteOnce
resources:
requests:
storage: "1"
extraVolumeMounts:
- mountPath: /stackable/opensearch-dashboards/config/tls
name: tls
- mountPath: /stackable/opensearch-dashboards/config/opensearch_dashboards.yml
name: config
subPath: opensearch_dashboards.yml
podSecurityContext:
fsGroup: 1000