feat(emqx_conf): support AAAA cluster dns record type
Ekka autocluster DNS already supports AAAA records, so it's only needed to update enum in schema.
This commit is contained in:
parent
fa0baf2f38
commit
5e0c3d4051
|
@ -259,7 +259,7 @@ fields(cluster_dns) ->
|
||||||
)},
|
)},
|
||||||
{"record_type",
|
{"record_type",
|
||||||
sc(
|
sc(
|
||||||
hoconsc:enum([a, srv]),
|
hoconsc:enum([a, aaaa, srv]),
|
||||||
#{
|
#{
|
||||||
default => a,
|
default => a,
|
||||||
desc => ?DESC(cluster_dns_record_type),
|
desc => ?DESC(cluster_dns_record_type),
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
Support cluster discovery using AAAA DNS record type.
|
Loading…
Reference in New Issue