-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathvalues.yaml
More file actions
219 lines (196 loc) · 6.41 KB
/
Copy pathvalues.yaml
File metadata and controls
219 lines (196 loc) · 6.41 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
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
# Default values for infinispan-helm-charts.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
images:
# [USER] The container images for server pods.
server: quay.io/infinispan/server:16.1
initContainer: registry.access.redhat.com/ubi8-micro
deploy:
# [USER] Specify the number of nodes in the cluster.
replicas: 1
clusterDomain: cluster.local
container:
imagePullSecrets: []
imagePullPolicy: "Always"
extraJvmOpts: ""
libraries: ""
# [USER] Define custom environment variables using standard K8s format
# env:
# - name: STANDARD_KEY
# value: standard value
# - name: CONFIG_MAP_KEY
# valueFrom:
# configMapKeyRef:
# name: special-config
# key: special.how
# - name: SECRET_KEY
# valueFrom:
# secretKeyRef:
# name: special-secret
# key: special.how
env:
storage:
size: 1Gi
storageClassName: ""
# [USER] Set `ephemeral: true` to delete all persisted data when clusters shut down or restart.
ephemeral: false
resources:
# [USER] Specify the CPU limit and the memory limit for each pod.
limits:
cpu: 500m
memory: 512Mi
# [USER] Specify the maximum CPU requests and the maximum memory requests for each pod.
requests:
cpu: 500m
memory: 512Mi
security:
secretName: ""
batch: ""
expose:
# [USER] Specify `type: ""` to disable network access to clusters.
type: Route
nodePort: 0
host: ""
annotations: []
monitoring:
enabled: false
logging:
console:
# [USER] Set to true to output logs as JSON on stdout instead of the default colored text format.
# Useful for log aggregation pipelines (ELK, Loki, etc.).
# When enabled, each log line includes extra fields: time, service, namespace, pod.
json: false
categories:
# [USER] Specify the FQN of a package from which you want to collect logs.
- category: com.arjuna
# [USER] Specify the level of log messages.
level: warn
# No need to warn about not being able to TLS/SSL handshake
- category: io.netty.handler.ssl.ApplicationProtocolNegotiationHandler
level: error
makeDataDirWritable: false
usePrefixedLabels: false
nameOverride: ""
resourceLabels: []
podAnnotations: []
podLabels: []
svcLabels: []
tolerations: []
nodeAffinity: {}
podAffinity: {}
# PodAntiAffinity is expressed as a string (note the > char)
# to allow dynamic replacing of clusterName in statefulSet
# chart also supports plain yaml value if dynamic replacement is not needed
podAntiAffinity: >
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchLabels:
{{- include "infinispan-helm-charts.selectorLabels" . | nindent 10 }}
topologyKey: kubernetes.io/hostname
weight: 100
nodeSelector: {}
securityContext: {}
volumeMounts: []
# - name: logs
# mountPath: /logs
volumes: []
# - name: logs
# emptyDir: {}
ssl:
endpointSecretName: ""
transportSecretName: ""
# [USER] Use cert-manager to automatically issue TLS certificates.
# Requires cert-manager to be installed in the cluster.
certmanager:
endpoint:
enabled: false
# [USER] Provide an issuerRef to use your own Issuer/ClusterIssuer.
# If omitted, a self-signed Issuer is created automatically.
# issuerRef:
# name: my-issuer
# kind: ClusterIssuer
# [USER] Provide a password to include a PKCS12 keystore in the secret.
# keystorePassword: "changeit"
# [USER] Additional DNS names to include in the certificate.
# additionalDnsNames: []
transport:
enabled: false
infinispan:
cacheContainer:
# [USER] Add cache, template, and counter configuration.
name: default
globalState:
uncleanShutdownAction: IGNORE
# [USER] Specify `security: null` to disable security authorization.
security:
authorization: {}
transport:
cluster: ${infinispan.cluster.name:cluster}
node-name: ${infinispan.node.name:}
stack: kubernetes
server:
endpoints:
# [USER] Hot Rod and REST endpoints.
- securityRealm: default
socketBinding: default
connectors:
rest:
restConnector:
hotrod:
hotrodConnector:
# [MEMCACHED] Uncomment to enable Memcached endpoint
# memcached:
# memcachedConnector:
# socketBinding: memcached
# [METRICS] Metrics endpoint for cluster monitoring capabilities.
- connectors:
rest:
restConnector:
authentication:
mechanisms: BASIC
securityRealm: metrics
socketBinding: metrics
interfaces:
- inetAddress:
value: ${infinispan.bind.address:127.0.0.1}
name: public
security:
credentialStores:
- clearTextCredential:
clearText: secret
name: credentials
path: credentials.pfx
securityRealms:
# [USER] Security realm for the Hot Rod and REST endpoints.
- name: default
# [USER] Comment or remove this properties realm to disable authentication.
propertiesRealm:
groupProperties:
path: groups.properties
groupsAttribute: Roles
userProperties:
path: users.properties
# [METRICS] Security realm for the metrics endpoint.
- name: metrics
propertiesRealm:
groupProperties:
path: metrics-groups.properties
relativeTo: infinispan.server.config.path
groupsAttribute: Roles
userProperties:
path: metrics-users.properties
relativeTo: infinispan.server.config.path
socketBindings:
defaultInterface: public
portOffset: ${infinispan.socket.binding.port-offset:0}
socketBinding:
# [USER] Socket binding for the Hot Rod and REST endpoints.
- name: default
port: 11222
# [METRICS] Socket binding for the metrics endpoint.
- name: metrics
port: 11223
# [MEMCACHED] Uncomment to enable Memcached endpoint
# - name: memcached
# port: 11221