diff --git a/docs/pages/kubernetes-access/getting-started/cluster.mdx b/docs/pages/kubernetes-access/getting-started/cluster.mdx index 94878c9a1ebe9..0d621646bbcbe 100644 --- a/docs/pages/kubernetes-access/getting-started/cluster.mdx +++ b/docs/pages/kubernetes-access/getting-started/cluster.mdx @@ -131,7 +131,7 @@ to create a public IP for Teleport. -You will also need to create a DNS A record for `tele.example.com` so clients can verify the TLS certificate of your Teleport hosts. +You will also need to create a DNS A record for `tele.example.com` so clients can verify the TLS certificate of your Teleport hosts. Adjust the following commands for your environment.
(!docs/pages/includes/dns-app-access.mdx!) @@ -145,6 +145,7 @@ You will also need to create a DNS A record for `tele.example.com` so clients ca $ gcloud dns record-sets transaction start --zone="${MYZONE?}" $ gcloud dns record-sets transaction add ${MYIP?} --name="${MYDNS?}" --ttl="30" --type="A" --zone="${MYZONE?}" + $ gcloud dns record-sets transaction add ${MYIP?} --name="*.${MYDNS?}" --ttl="30" --type="A" --zone="${MYZONE?}" $ gcloud dns record-sets transaction describe --zone="${MYZONE?}" $ gcloud dns record-sets transaction execute --zone="${MYZONE?}" ```