-
Notifications
You must be signed in to change notification settings - Fork 5
/
values.yaml
174 lines (148 loc) · 3.51 KB
/
values.yaml
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
# Kubernetes namespace to deploy OrientDB cluster
namespace: orientdb
statefulSetName: orientdb
podAnnotations: {}
serviceName: orientdb
labelValue: orientdb
# number of servers in the cluster
servers: 3
# If provided, the custom labels (in addition to app: {{ .Values.labelValue }}) are also
# added to all the objects created by the helm chart and also used in the selector labels.
customLabels: {}
# environment: test
# booleanLabel: '"true"'
httpPort: 2480
httpNodePort: 30080
httpsPort: 2443
httpsNodePort: 30443
binaryPort: 2424
binaryNodePort: 30024
binarySslPort: 2423
binarySslNodePort: 30023
createRootUser: true
rootPassword: root
orientdbConfigMapName: orientdb-configmap
configMapAnnotations: {}
# Resource limit/request applied to OrientDB pods
resources: {}
# If you do want to specify resources, uncomment the following
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
environmentVariables: []
#- name: ORIENTDB_OPTS_MEMORY
# value: "-Xms4G -Xmx4G"
nodeSelector: {}
tolerations: []
tryAvoidingColocation: false
podSecurityContext: {}
# fsGroup: 2000
# Applies only to the container running OrientDB
securityContext: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
# Log levels: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST
log:
rootLevel: INFO
# Used for com.orientechnologies.*
orientLevel: INFO
# Used for com.orientechnologies.orient.server.distributed.*
orientDistributedLevel: INFO
customLogPropertiesFile:
image:
repository: orientdb
tag: 3.1.3
pullPolicy: IfNotPresent
imagePullSecrets: []
customSqlFunctions:
enabled: true
automaticBackup:
enabled: false
mode: FULL_BACKUP
delay: 4h
customBackupConfigFile:
serverSideScript:
enabled: true
allowedLanguages:
- SQL
ssl:
enable: false
secretName: orientdb-server-ssl
secretAnnotations: {}
keyStoreFile:
trustStoreFile:
# Path to store keyStore in the pod
# must not be under config since config is mounted from a configmap
keyStore: cert/orientdb.ks
keyStorePassword: ks-password
clientAuth: false
trustStore: cert/orientdb.ts
trustStorePassword: ts-password
# security module
security:
customSecurityConfigFile:
enabled: true
createDefaultUsers: true
auditing:
enabled: false
hazelcast:
network:
port: 2434
group:
name: orientdb
password: orientdb
properties:
phoneHomeEnabled: false
mancenterEnabled: false
memcacheEnabled: false
restEnabled: false
waitSecondsBeforeJoin: 5
operationThreadCount: 1
ioThreadCount: 1
operationGenericThreadCount: 1
clientEventThreadCount: 1
eventThreadCount: 1
heartbeatIntervalSeconds: 5
maxNoHeartbeatSeconds: 30
mergeNextRunDelaySeconds: 15
discovery:
podLabel:
name: orientdb-cluster-member
value: true
distributedDB:
defaultConfig:
autoDeploy: true
readQuorum: 1
writeQuorum: majority
readYourWrites: true
newNodeStrategy: dynamic
serviceAccount:
# Specifies whether a service account should be created
create: true
# The name of the service account to use or create.
name: hazelcast-k8s
annotations: {}
volumeClaims:
databases:
storageClass: ""
size: 2Gi
backup:
mount: false
storageClass: ""
size: 2Gi
config:
storageClass: ""
size: 100Mi
annotations: {}
service:
nodePort:
create: false
annotations: {}