k-v.io has an A record, a pre-requisite for a website

I've chosen to add the website to GKE, not Hetzner, because I get fewer
strident abuse messages from GKE.

I'm dismayed that when I make a small change to the DNS, I need to go
through the laborious release process for it to take effect. Sigh. Maybe
that's something I'll fix another day.
This commit is contained in:
Brian Cunnie
2022-04-22 13:09:58 -07:00
parent cb08c5a9c3
commit 602ba32c7b
2 changed files with 9 additions and 0 deletions

View File

@@ -64,6 +64,10 @@ var _ = Describe("sslip.io-dns-server", func() {
Eventually(string(digSession.Out.Contents())).Should(MatchRegexp(digResults))
Eventually(serverSession.Err).Should(Say(serverLogMessage))
},
Entry("A (customized) for k-v.io",
"@localhost k-v.io +short",
`\A104.155.144.4\n\z`,
`TypeA k-v.io. \? 104.155.144.4\n$`),
Entry("A (customized) for sslip.io",
"@localhost sslip.io +short",
`\A78.46.204.247\n\z`,

View File

@@ -154,6 +154,11 @@ var (
}, nil // Sender Policy Framework
},
},
"k-v.io.": {
A: []dnsmessage.AResource{
{A: [4]byte{104, 155, 144, 4}},
},
},
// a global nameserver for sslip.io, a conglomeration of ns-{aws,azure,gce}.sslip.io
"ns.sslip.io.": {
A: []dnsmessage.AResource{