You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/release_notes.md
+29Lines changed: 29 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -131,6 +131,35 @@ This page documents the key features, enhancements, and capabilities available i
131
131
132
132
Clear all contents, save and close, then run `Update-HoloDeckInstance` again.
133
133
134
+
??? question "DNS resolution fails during VCF deployment — hosts unreachable by hostname"
135
+
136
+
During VCF deployment, the VCF Installer may fail to resolve nested ESX host FQDNs (e.g., `esx-01a.site-a.vcf.lab`), causing deployment failures. Hosts are reachable by IP address but `nslookup` returns **"connection refused"**.
137
+
138
+
One of the reasons this could occur is when an **FQDN** (e.g., `cloudflare-dns.com`) is provided as the upstream DNS server instead of an **IP address** during HoloRouter setup. Linux resolves the FQDN and stores it in the format `resolved_ip#dns_name` (e.g., `1.1.1.1#cloudflare-dns.com`). DNSMASQ interprets the `#` as a port separator, which results in an invalid configuration and causes the DNS service to fail.
139
+
140
+
**Workaround**
141
+
142
+
1. SSH into the HoloRouter and edit the DNSMASQ ConfigMap:
143
+
144
+
```
145
+
vi /holodeck-runtime/dnsmasq/dnsmasq_configmap.yaml
146
+
```
147
+
148
+
2. Find the `server=` line that contains a `#` with a DNS name (e.g., `server=1.1.1.1#cloudflare-dns.com`) and change it to use the IP address only (e.g., `server=1.1.1.1`).
To avoid this issue, provide an **IP address** (not an FQDN) as the upstream DNS server when setting up the HoloRouter.
160
+
161
+
Track this issue here: [Community Discussion](https://community.broadcom.com/vmware-cloud-foundation/discussion/fail-to-deploy-vcf-9020)
162
+
134
163
??? question "VCF 5.2.x deployments fail at `Sync-HolodeckComponents` with 'No route to host' error"
135
164
136
165
All VCF 5.2.x deployments (single site and dual site, management-only and full stack) complete the VCF deployment successfully, but the Holodeck script fails at the final **`Sync-HolodeckComponents`** step with an error such as:
0 commit comments