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
@@ -110,6 +110,71 @@ After the deployment is complete, the script will output the internal and extern
110
110
111
111
With this information, operators can login to the Genestack instance and begin to explore the platform.
112
112
113
+
!!! Genestack
114
+
Genestack uses DNS to route services in Kubernetes, which may be a bit different from what you might be used to in other lab environments, where
115
+
IP addresses are used heavily. To be able to access OpenStack externally from the jumpbox, set `GATEWAY_DOMAIN` to a DNS domain that you control.
116
+
117
+
### Setting up DNS for a Hyper-Converged Lab
118
+
119
+
At the end of the hyper-converged lab script run, you will see output that looks like this:
120
+
121
+
```
122
+
The lab is now ready for use and took 1298 seconds to complete.
123
+
This is the jump host address WW.XX.YY.ZZ, write this down.
124
+
This is the VIP address internally 192.168.100.NN with public address AA.BB.CC.DD within MetalLB, write this down.
125
+
```
126
+
127
+
To make DNS correctly resolve the OpenStack services in the lab, you will need to set some DNS entries for the `GATEWAY_DOMAIN` you specified when building the lab. Using the "cluster.local" default example domain, you should configure something like this:
128
+
129
+
```
130
+
jumpbox.cluster.local A WW.XX.YY.ZZ
131
+
cluster.local A AA.BB.CC.DD
132
+
*.cluster.local CNAME cluster.local
133
+
```
134
+
135
+
!!! Warning
136
+
Do **NOT** use `cluster.local` as your domain. You will need to use a domain that you control and you will need to set the `GATEWAY_DOMAIN` variable to this prior to building your hyper-converged lab.
137
+
138
+
### Accessing your Hyper-Converged Lab
139
+
140
+
When generating your hyper-converged lab, the script creates an SSH key pair and puts it into your `$HOME/.ssh` directory. The name of the key is derived from the `LAB_NAME_PREFIX` variable, and the default is `hyperconverged`.
141
+
142
+
To access the lab, you can SSH into the jumpbox using this key as the default user of the OpenStack Glance image you specified. The default image is Ubuntu 24.04 LTS which has a default user of `ubuntu`. In this case, the SSH command would be as follows:
This can be used to login to the Skyline web console. To access the Skyline web console, you can just enter `https://skyline.cluster.local` (again, using `cluster.local` as an example) and access it from your web browser.
174
+
175
+
!!! Note
176
+
If you get SSL errors, wait a bit. Cert Manager takes time to generate all the SSL certs it using with Let's Encrypt.
0 commit comments