Newer
Older
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
description: he number of entries allowed per internal list node can be specified as a fixed maximum size or a maximum number of elements. For a fixed maximum size, use -5 through -1. Positive numbers mean store up to exactly that number of elements per list node. The default is -2 (max size 8 Kb).
list_compress_depth:
type: int
choices:
- 0
- 1
- 2
- 3
required: false
description: Compress depth is the number of quicklist ziplist nodes from each side of the list to exclude from compression. The default is 0, disable all list compression.
set_max_intset_entries:
type: int
required: false
description: Sets containing non-integer values are also encoded using a memory efficient data structure when they have a small number of entries, and the biggest entry does not exceed a given threshold. The default value is 128.
set_max_listpack_value:
type: int
required: false
description: Sets containing non-integer values are also encoded using a memory efficient data structure when they have a small number of entries, and the biggest entry does not exceed a given threshold. The default value is 64.
zset_max_listpack_entries:
type: int
required: false
description: Similarly to hashes and lists, sorted sets are also specially encoded in order to save a lot of space. The default value is 128.
zset_max_listpack_value:
type: int
required: false
description: Similarly to hashes and lists, sorted sets are also specially encoded in order to save a lot of space. The default value is 64.
hll_sparse_max_bytes:
type: int
required: false
description: HyperLogLog sparse representation bytes limit. The default value is 3000.
# TODO line 2067 ish onwards...
pidfile:
type: str
required: false
description: Path to the pid file.
valkey_enabled:
type: bool
required: true
description: Enable and start Valkey.
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
valkey_jpq:
type: dict
required: true
description: A dictionary of JMESPath query strings.
options:
pkgs_absent:
type: str
required: true
description: JMESPath query string for the packages absent.
pkgs_present:
type: str
required: true
description: JMESPath query string for the packages present.
pkgs_present_backports:
type: str
required: true
description: JMESPath query string for the backports packages present.
service:
type: str
required: true
description: JMESPath query string for the Valkey service.
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
valkey_pkgs:
type: list
elements: dict
required: true
description: A list of distros and deb packages that should be absent and present.
options:
name:
type: str
required: true
description: The Linux distro name.
choices:
- bookworm
- noble
- trixie
pkgs_absent:
type: list
required: false
description: A list of deb packages that should be absent.
pkgs_present:
type: list
required: false
description: A list of deb packages that should be present.
pkgs_present_backports:
type: list
description: A list of deb packages that should be present from backports.
valkey_protected_configs:
type: list
required: false
description: A list of Valkey config to be editing using lineinfile.
valkey_verify:
type: bool
required: true
description: Use the argument specification to verify the variables that start with valkey_.