prometheus: Unbreak IPv6 listenAddress
The format of the listenAddress option was recently changed to separate the address and the port parts. There is now a legacy check that tells users to update to the new format. This legacy check produces a false positive on IPv6 addresses, since they contain colons. Fix the regex to make it not match colons within IPv6 addresses.
This commit is contained in:
parent
799f149bbf
commit
a4afd525cb
@ -629,7 +629,9 @@ in {
|
|||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
assertions = [
|
assertions = [
|
||||||
( let
|
( let
|
||||||
legacy = builtins.match "(.*):(.*)" cfg.listenAddress;
|
# Match something with dots (an IPv4 address) or something ending in
|
||||||
|
# a square bracket (an IPv6 addresses) followed by a port number.
|
||||||
|
legacy = builtins.match "(.*\\..*|.*]):([[:digit:]]+)" cfg.listenAddress;
|
||||||
in {
|
in {
|
||||||
assertion = legacy == null;
|
assertion = legacy == null;
|
||||||
message = ''
|
message = ''
|
||||||
|
Loading…
x
Reference in New Issue
Block a user