Some checks failed
Build Helm Chart / helm-package (push) Failing after 30s
Rename artemis-broker to artemis-broker-primary This commit renames and refactors the Helm chart for the artemis-broker. The original files in the artemis-broker directory are renamed and moved to artemis-broker-primary. The purpose of this change is to enable a clear distinction between the primary broker configuration and any backup or alternative configurations. Additionally, the configuration has been updated to support enhancements in TLS setup, metrics services, and users, allowing for a more robust and flexible deployment. This change introduces new templates and scripts needed for managing various aspects of the broker's functions, including improved user authentication and logging. No breaking changes were introduced, but users must update their references to the chart paths as they now point to the new directory structure. ```
35 lines
1.2 KiB
XML
35 lines
1.2 KiB
XML
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns="urn:org:jgroups"
|
|
xsi:schemaLocation="urn:org:jgroups http://www.jgroups.org/schema/jgroups.xsd">
|
|
<TCP bind_addr="${jgroups.bind_addr:site_local}"
|
|
bind_port="${jgroups.bind_port:{{ .Values.ping_service.jgroups.bind_port }}}"
|
|
external_addr="${jgroups.external_addr}"
|
|
external_port="${jgroups.external_port}"
|
|
thread_pool.min_threads="0"
|
|
thread_pool.max_threads="200"
|
|
thread_pool.keep_alive_time="30000"/>
|
|
<RED/>
|
|
|
|
<dns.DNS_PING
|
|
dns_query="{{ tpl .Values.ping_service.name . }}"
|
|
dns_record_type="${DNS_RECORD_TYPE:A}"
|
|
/>
|
|
|
|
<MERGE3 min_interval="10000"
|
|
max_interval="30000" />
|
|
<FD_SOCK2/>
|
|
<FD_ALL3 timeout="40000" interval="5000" />
|
|
<VERIFY_SUSPECT2 timeout="1500" />
|
|
<pbcast.NAKACK2 use_mcast_xmit="false" />
|
|
<UNICAST3 />
|
|
<pbcast.STABLE desired_avg_gossip="50000"
|
|
max_bytes="4M"/>
|
|
<pbcast.GMS print_local_addr="true" join_timeout="2000"/>
|
|
<UFC max_credits="2M"
|
|
min_threshold="0.4"/>
|
|
<MFC max_credits="2M"
|
|
min_threshold="0.4"/>
|
|
<FRAG2 frag_size="60K" />
|
|
</config>
|
|
|