diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 06:48:59 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 06:48:59 +0000 |
commit | d835b2cae8abc71958b69362162e6a70c3d7ef63 (patch) | |
tree | 81052e3d2ce3e1bcda085f73d925e9d6257dec15 /etc/profiles.yml | |
parent | Initial commit. (diff) | |
download | crmsh-d835b2cae8abc71958b69362162e6a70c3d7ef63.tar.xz crmsh-d835b2cae8abc71958b69362162e6a70c3d7ef63.zip |
Adding upstream version 4.6.0.upstream/4.6.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | etc/profiles.yml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/etc/profiles.yml b/etc/profiles.yml new file mode 100644 index 0000000..eca34d2 --- /dev/null +++ b/etc/profiles.yml @@ -0,0 +1,29 @@ +# The valid profile names are: +# "microsoft-azure", "google-cloud-platform", "amazon-web-services", "s390", "default" +# +# "default" profile is loaded in the beginning. +# +# Those specific profile will override the corresponding values in "default" +# profile if the specific environment is detected. +# +# Users could customize the "default" profile for their needs, for example, +# those on-premise environments which is not defined yet. +# +# Profiles are only loaded on bootstrap init node. +# +# More details please see man corosync.conf, man sbd + +default: + corosync.totem.crypto_hash: sha1 + corosync.totem.crypto_cipher: aes256 + corosync.totem.token: 5000 + corosync.totem.join: 60 + corosync.totem.max_messages: 20 + corosync.totem.token_retransmits_before_loss_const: 10 + # sbd.msgwait is set to sbd.watchdog_timeout*2 by crmsh + # or, you can define your own value in profiles.yml + sbd.watchdog_timeout: 15 + +microsoft-azure: + corosync.totem.token: 30000 + sbd.watchdog_timeout: 60 |