mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
* Update default hazelcast-jet version Signed-off-by: Emin Demirci <emin@hazelcast.com> * Bump version to 1.1.0 Signed-off-by: Emin Demirci <emin@hazelcast.com>
162 lines
6.7 KiB
YAML
162 lines
6.7 KiB
YAML
## Hazelcast Jet image version
|
|
## ref: https://hub.docker.com/r/hazelcast/hazelcast-jet/tags/
|
|
##
|
|
image:
|
|
# repository is the Hazelcast Jet image name
|
|
repository: "hazelcast/hazelcast-jet"
|
|
# tag is the Hazelcast Jet image tag
|
|
tag: "3.0"
|
|
# pullPolicy is the Docker image pull policy
|
|
# It's recommended to change this to 'Always' if the image tag is 'latest'
|
|
# ref: http://kubernetes.io/docs/user-guide/images/#updating-images
|
|
#
|
|
pullPolicy: IfNotPresent
|
|
# pullSecrets is an array of docker-registry secret names
|
|
# Secrets must be manually created in the namespace.
|
|
# ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
|
|
# pullSecrets:
|
|
# - myRegistryKeySecretName
|
|
|
|
# Cluster settings
|
|
cluster:
|
|
# memberCount is the number Hazelcast Jet members
|
|
memberCount: 2
|
|
|
|
# Hazelcast Jet properties
|
|
jet:
|
|
# rest is a flag used to enable REST endpoints for Hazelcast Jet member
|
|
rest: true
|
|
# javaOpts are additional JAVA_OPTS properties for Hazelcast Jet member
|
|
javaOpts:
|
|
# configurationFiles are Hazelcast Jet configuration files
|
|
configurationFiles:
|
|
hazelcast.xml: |-
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<hazelcast xsi:schemaLocation="http://www.hazelcast.com/schema/config hazelcast-config-3.10.xsd"
|
|
xmlns="http://www.hazelcast.com/schema/config"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
<properties>
|
|
<property name="hazelcast.discovery.enabled">true</property>
|
|
</properties>
|
|
<network>
|
|
<join>
|
|
<multicast enabled="false"/>
|
|
<tcp-ip enabled="false" />
|
|
<discovery-strategies>
|
|
<discovery-strategy enabled="true" class="com.hazelcast.kubernetes.HazelcastKubernetesDiscoveryStrategy">
|
|
<properties>
|
|
<property name="service-name">${serviceName}</property>
|
|
<property name="namespace">${namespace}</property>
|
|
</properties>
|
|
</discovery-strategy>
|
|
</discovery-strategies>
|
|
</join>
|
|
</network>
|
|
</hazelcast>
|
|
hazelcast-jet.xml: |-
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<hazelcast-jet xsi:schemaLocation="http://www.hazelcast.com/schema/jet-config hazelcast-jet-config-0.8.xsd"
|
|
xmlns="http://www.hazelcast.com/schema/jet-config"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
<instance>
|
|
<!-- number of threads in the cooperative thread pool -->
|
|
<cooperative-thread-count>8</cooperative-thread-count>
|
|
<!-- period between flow control packets in milliseconds -->
|
|
<flow-control-period>100</flow-control-period>
|
|
<!-- number of backup copies to configure for Hazelcast IMaps used internally in a Jet job -->
|
|
<backup-count>1</backup-count>
|
|
</instance>
|
|
<!-- custom properties which can be read in the user code -->
|
|
<properties>
|
|
<property name="custom.property">custom property</property>
|
|
</properties>
|
|
<edge-defaults>
|
|
<!-- capacity of the concurrent SPSC queue between each two processors -->
|
|
<queue-size>1024</queue-size>
|
|
<!-- network packet size limit in bytes, only applies to distributed edges -->
|
|
<packet-size-limit>16384</packet-size-limit>
|
|
<!-- receive window size multiplier, only applies to distributed edges -->
|
|
<receive-window-multiplier>3</receive-window-multiplier>
|
|
</edge-defaults>
|
|
<!-- whether metrics collection is enabled -->
|
|
<metrics enabled="true">
|
|
<!-- the number of seconds the metrics will be retained on the instance -->
|
|
<retention-seconds>120</retention-seconds>
|
|
<!-- the metrics collection interval in seconds -->
|
|
<collection-interval-seconds>5</collection-interval-seconds>
|
|
<!-- whether metrics should be collected for data structures. Metrics
|
|
collection can have some overhead if there is a large number of data
|
|
structures -->
|
|
<metrics-for-data-structures>false</metrics-for-data-structures>
|
|
</metrics>
|
|
</hazelcast-jet>
|
|
|
|
# nodeSelector is an array of Hazelcast Node labels for POD assignments
|
|
# ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector
|
|
nodeSelector: {}
|
|
|
|
gracefulShutdown:
|
|
enabled: true
|
|
maxWaitSeconds: 600
|
|
|
|
# Hazelcast Liveness probe
|
|
livenessProbe:
|
|
# enabled is a flag to used to enable liveness probe
|
|
enabled: true
|
|
# initialDelaySeconds is a delay before liveness probe is initiated
|
|
initialDelaySeconds: 30
|
|
# periodSeconds decides how often to perform the probe
|
|
periodSeconds: 10
|
|
# timeoutSeconds decides when the probe times out
|
|
timeoutSeconds: 5
|
|
# successThreshold is the minimum consecutive successes for the probe to be considered successful after having failed
|
|
successThreshold: 1
|
|
# failureThreshold is the minimum consecutive failures for the probe to be considered failed after having succeeded
|
|
failureThreshold: 3
|
|
|
|
# Hazelcast Readiness probe
|
|
readinessProbe:
|
|
# enabled is a flag to used to enable readiness probe
|
|
enabled: true
|
|
# initialDelaySeconds is a delay before readiness probe is initiated
|
|
initialDelaySeconds: 30
|
|
# periodSeconds decides how often to perform the probe
|
|
periodSeconds: 10
|
|
# timeoutSeconds decides when the probe times out
|
|
timeoutSeconds: 1
|
|
# successThreshold is the minimum consecutive successes for the probe to be considered successful after having failed
|
|
successThreshold: 1
|
|
# failureThreshold is the minimum consecutive failures for the probe to be considered failed after having succeeded
|
|
failureThreshold: 3
|
|
|
|
# Configure resource requests and limits
|
|
# ref: http://kubernetes.io/docs/user-guide/compute-resources/
|
|
#
|
|
# resources:
|
|
# requests:
|
|
# memory: 256Mi
|
|
# cpu: 100m
|
|
|
|
# Hazelcast Service properties
|
|
service:
|
|
# type defines the Kubernetes service type ('ClusterIP', 'LoadBalancer', or 'NodePort')
|
|
type: ClusterIP
|
|
# port is the Kubernetes service port
|
|
port: 5701
|
|
# clusterIP set to None makes the service headless
|
|
# It is required if DNS Lookup is used (https://github.com/hazelcast/hazelcast-kubernetes#dns-lookup)
|
|
# clusterIP: "None"
|
|
|
|
# Role-based Access Control
|
|
rbac:
|
|
# Specifies whether RBAC resources should be created
|
|
# It is not required if DNS Lookup is used (https://github.com/hazelcast/hazelcast-kubernetes#dns-lookup)
|
|
create: true
|
|
|
|
serviceAccount:
|
|
# Specifies whether a ServiceAccount should be created
|
|
create: true
|
|
# The name of the ServiceAccount to use.
|
|
# If not set and create is true, a name is generated using the fullname template
|
|
name:
|