client: fix Consul version finterprint (#17349)

Consul v1.13.8 was released with a breaking change in the /v1/agent/self
endpoint version where a line break was being returned.

This caused the Nomad finterprint to fail because `NewVersion` errors on
parse.

This commit removes any extra space from the Consul version returned by
the API.
This commit is contained in:
Luiz Aoqui 2023-05-30 11:07:57 -04:00 committed by GitHub
parent acfdf0f479
commit bb2395031b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 23 additions and 2 deletions

3
.changelog/17349.txt Normal file
View File

@ -0,0 +1,3 @@
```release-note:bug
client: fixed a bug that prevented Nomad from fingerprinting Consul 1.13.8 correctly
```

View File

@ -197,8 +197,9 @@ func (f *ConsulFingerprint) grpc(scheme string) func(info agentconsul.Self) (str
return "", false
}
consulVersion, err := version.NewVersion(v)
consulVersion, err := version.NewVersion(strings.TrimSpace(v))
if err != nil {
f.logger.Warn("invalid Consul version", "version", v)
return "", false
}

View File

@ -159,6 +159,14 @@ func TestConsulFingerprint_sku(t *testing.T) {
require.Equal(t, "ent", s)
})
t.Run("extra spaces", func(t *testing.T) {
v, ok := fp.sku(agentconsul.Self{
"Config": {"Version": " v1.9.5\n"},
})
require.True(t, ok)
require.Equal(t, "oss", v)
})
t.Run("missing", func(t *testing.T) {
_, ok := fp.sku(agentconsul.Self{
"Config": {},
@ -371,6 +379,15 @@ func TestConsulFingerprint_grpc(t *testing.T) {
require.Equal(t, "8503", s)
})
t.Run("version with extra spaces", func(t *testing.T) {
s, ok := fp.grpc("https")(agentconsul.Self{
"Config": {"Version": " 1.14.0\n"},
"DebugConfig": {"GRPCTLSPort": 8503.0}, // JSON numbers are floats
})
require.True(t, ok)
require.Equal(t, "8503", s)
})
t.Run("grpc missing http", func(t *testing.T) {
_, ok := fp.grpc("http")(agentconsul.Self{
"DebugConfig": {},

View File

@ -20,7 +20,7 @@ func SKU(info Self) (string, bool) {
return "", ok
}
ver, vErr := version.NewVersion(v)
ver, vErr := version.NewVersion(strings.TrimSpace(v))
if vErr != nil {
return "", false
}