mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-29 18:33:05 +00:00
Remove 1.16 from FQDN, bump 1.32.1
Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
This commit is contained in:
parent
cbbf9fbdef
commit
d706c3516d
2 changed files with 5 additions and 4 deletions
|
@ -84,8 +84,9 @@ func TestPingAllByHostname(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
spec := map[string]int{
|
spec := map[string]int{
|
||||||
"namespace3": len(TailscaleVersions),
|
// Omit 1.16.2 (-1) because it does not have the FQDN field
|
||||||
"namespace4": len(TailscaleVersions),
|
"namespace3": len(TailscaleVersions) - 1,
|
||||||
|
"namespace4": len(TailscaleVersions) - 1,
|
||||||
}
|
}
|
||||||
|
|
||||||
err = scenario.CreateHeadscaleEnv(spec)
|
err = scenario.CreateHeadscaleEnv(spec)
|
||||||
|
@ -113,7 +114,7 @@ func TestPingAllByHostname(t *testing.T) {
|
||||||
for _, client := range allClients {
|
for _, client := range allClients {
|
||||||
fqdn, err := client.FQDN()
|
fqdn, err := client.FQDN()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Errorf("failed to get fqdn of client %s: %s", t.Name(), err)
|
t.Errorf("failed to get fqdn of client %s: %s", client.Hostname, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
allHostnames = append(allHostnames, fqdn)
|
allHostnames = append(allHostnames, fqdn)
|
||||||
|
|
|
@ -29,7 +29,7 @@ var (
|
||||||
TailscaleVersions = []string{
|
TailscaleVersions = []string{
|
||||||
"head",
|
"head",
|
||||||
"unstable",
|
"unstable",
|
||||||
"1.32.0",
|
"1.32.1",
|
||||||
"1.30.2",
|
"1.30.2",
|
||||||
"1.28.0",
|
"1.28.0",
|
||||||
"1.26.2",
|
"1.26.2",
|
||||||
|
|
Loading…
Reference in a new issue