Questions tagged [google-cloud-dns]

Google Cloud DNS is a high performance, resilient, and global DNS service that provides a cost effective way to make your applications and services available to your users.

Google Cloud DNS is a high performance, resilient, and global DNS service that provides a cost effective way to make your applications and services available to your users.

This programmable, authoritative DNS service can be used to easily publish and manage DNS records using the same infrastructure relied upon by Google.

Official site

306 questions
0
votes
2 answers

Cloud DNS failed to load

I'm trying to access Cloud DNS on a live account through the web console. This has worked for years, but currently is inaccessible. No settings have changed since it last worked. The UI does not load, instead it shows this error: "There was an error…
mobinvent
  • 11
  • 2
0
votes
1 answer

Exporting public aws route53 records as private cloudDNS records

I want to export some public domain names present in aws route53 and use those in my private network in CloudDns in google. I see one option is to list the records in aws as yaml : aws route53 list-resource-record-sets --hosted-zone-id
Learner
  • 1,544
  • 8
  • 29
  • 55
0
votes
1 answer

Google Cloud DNS - All zones on the same shard

I'm looking to use Cloud DNS to manage a large set of customer custom domain zones. I've setup all the logic to create the zones with the required records. I'd also like to have our customers just see a small set of vanity nameservers e.g.…
Devan
  • 41
  • 5
0
votes
1 answer

Create a subdomain from GoDaddy and point to GCP instance

I have a domain registered under the Godaddy and now I want to create a subdomain which points to GCP instance (static address). So when did a R&D, few are saying that we need to create a zone and then points the provided Namespace address to the…
Jithin Kumar S
  • 701
  • 2
  • 9
  • 20
0
votes
1 answer

Kubernetes – Curl works on service IP but not service name

I am new to kubernetes so I apologize if I have skipped some obvious steps or am not clear with my question. I have defined a service game-app-service and a deployment game-app-deployment. Both of these are up and running fine. I am trying to route…
0
votes
2 answers

Migrate server to gcloud but retain vanity nameservers for existing domains

We are currently in the process of migrating from one host to the google cloud platform. But there is one thing that is causing us confusion. We have various clients who have setup custom domains with us. Many of them have done so by updating their…
0
votes
1 answer

Unable to create certificates using cert-manager for clouddns dns01 solver

I am trying to create certificates for my domain. I followed cert-manager docs and installed cert-manager. I am getting the following error: cert-manager/controller/challenges "msg"="re-queuing item due to error processing" "error"="error…
0
votes
1 answer

How do I add a Cname for 'www' to point to my actual domain in Google Cloud DNS?

My domain without "www" works fine. My A record points to the ip address and works with SSL just fine. I have tried to add CNAME www point to @ but that does not seem to work in Google Cloud DNS. If I point my www CNAME to the domain without…
John
  • 1
0
votes
0 answers

Used the Same DNS address in Google Domain and Google Cloud but cannot view website

I have my Domain name through Google Domain and I have set up my website on Google Cloud. But I cannot get to my website. I used the same DNS servers for in Google Domain/DNS/Google Named Servers and Google Cloud/Network Services/Cloud DNS Type…
KKaotix
  • 19
  • 2
0
votes
1 answer

Gsuite email not working with Google Cloud Platform when I change the domain (Google Domains) to point to GCP nameservers

The cloud DNS on GCP is ns-cloud-a1:googledomains.com while the default nameservers for Google Domains is NS-CLOUD-C1.googledomains.com - If I change the domain nameservers to point to ns-cloud-a1:googledomains.com, the domain will work on the GCP…
0
votes
1 answer

How to setup DNS for CloudFront distribution with ACM for test and production servers pointing to different directory roots?

I am facing difficulty in serving requests from test.domain.com with the configuration with a combination of AWS Certificate Manager (ACM), AWS EC2 (linux AMI), AWS CloudFront (CF), Google DNS and Apache server. I have following setup in public_html…
0
votes
1 answer

how to point multiple domains to the same website?

test.com DNS to cloudflare and I configured the www A record to point to google firebase. all good here. I want to point any domain to www.test.com and render exactly the same content. what should I do to achieve this? do I need to create my own…
handsome
  • 2,335
  • 7
  • 45
  • 73
0
votes
1 answer

How can I copy the TXT record into the DNS configuration in portal azure?

My case like this : My website is stored on the portal azure. So I need to copy the TXT record into the DNS configuration in the portal azure How can I do it? Update : If I check DNS Zones in portal azure, it's like this :
moses toh
  • 12,344
  • 71
  • 243
  • 443
0
votes
4 answers

How to compare the value resulting from two promises in Javascript?

async function getDNShomeIP(){ var response = await fetch('https://dns.google/resolve?name=example.com'); // this uses the google api var json = await response.json(); var homeIPadress = json.Answer[0].data; …
0
votes
1 answer

Redirect URLs using Google Cloud

I have a domain (example.com) already configured in Cloud DNS. With this domain I can access microservices that are in a GKE cluster. I use istio-ingressgateway IP in CloudDNS to make the association between the cluster Now I have another domain…