Skip to content

Commit 6ca6baf

Browse files
committed
TEST
Signed-off-by: Lennart Jern <[email protected]>
1 parent 2eb8844 commit 6ca6baf

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

docs/user-guide/src/quick-start.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ and the MAC address:
7777
Start by defining a libvirt network:
7878

7979
```xml
80-
{{#embed-github repo:"metal3-io/metal3-docs" branch:"main" path:"docs/user-guide/examples/net.xml"}}
80+
{{#embed-github repo:"Nordix/metal3-docs" branch:"lentzi90/quick-revision" path:"docs/user-guide/examples/net.xml"}}
8181
```
8282

8383
Save this as `net.xml`.
@@ -89,7 +89,7 @@ the form of [sushy-tools](https://docs.openstack.org/sushy/latest/).
8989
We need to create a configuration file for sushy-tools:
9090

9191
```conf
92-
{{#embed-github repo:"metal3-io/metal3-docs" branch:"main" path:"docs/user-guide/examples/sushy-emulator.conf"}}
92+
{{#embed-github repo:"Nordix/metal3-docs" branch:"lentzi90/quick-revision" path:"docs/user-guide/examples/sushy-emulator.conf"}}
9393
```
9494

9595
Finally, we start up the virtual baremetal lab and create VMs to simulate the
@@ -116,7 +116,7 @@ that can be used to provision the servers. In this guide, we will use an nginx
116116
container for this. We also download some images that will be used later.
117117

118118
```bash
119-
{{#embed-github repo:"metal3-io/metal3-docs" branch:"main" path:"docs/user-guide/examples/image-server.sh"}}
119+
{{#embed-github repo:"Nordix/metal3-docs" branch:"lentzi90/quick-revision" path:"docs/user-guide/examples/image-server.sh"}}
120120
```
121121

122122
### DHCP server
@@ -139,7 +139,7 @@ that this is absolutely not intended for production environments.
139139
We will use the following configuration file for kind, save it as `kind.yaml`:
140140

141141
```yaml
142-
{{#embed-github repo:"metal3-io/metal3-docs" branch:"main" path:"docs/user-guide/examples/kind.yaml"}}
142+
{{#embed-github repo:"Nordix/metal3-docs" branch:"lentzi90/quick-revision" path:"docs/user-guide/examples/kind.yaml"}}
143143
```
144144

145145
As you can see, it has a few ports forwarded from the host. This is to make
@@ -149,31 +149,31 @@ We will also need to install cert-manager and Ironic Standalone Operator.
149149
Finally, we deploy Ironic and Bare Metal Operator.
150150

151151
```bash
152-
{{#embed-github repo:"metal3-io/metal3-docs" branch:"main" path:"docs/user-guide/examples/setup-bootstrap.sh"}}
152+
{{#embed-github repo:"Nordix/metal3-docs" branch:"lentzi90/quick-revision" path:"docs/user-guide/examples/setup-bootstrap.sh"}}
153153
```
154154

155155
We use the following manifest to deploy Ironic. Feel free to adjust as needed
156156
for your environment.
157157

158158
```yaml
159159
# kustomization.yaml
160-
{{#embed-github repo:"metal3-io/metal3-docs" branch:"main" path:"docs/user-guide/examples/ironic/kustomization.yaml"}}
160+
{{#embed-github repo:"Nordix/metal3-docs" branch:"lentzi90/quick-revision" path:"docs/user-guide/examples/ironic/kustomization.yaml"}}
161161
```
162162

163163
```yaml
164164
# ironic.yaml
165-
{{#embed-github repo:"metal3-io/metal3-docs" branch:"main" path:"docs/user-guide/examples/ironic/ironic.yaml"}}
165+
{{#embed-github repo:"Nordix/metal3-docs" branch:"lentzi90/quick-revision" path:"docs/user-guide/examples/ironic/ironic.yaml"}}
166166
```
167167

168168
```yaml
169169
# certificate.yaml
170-
{{#embed-github repo:"metal3-io/metal3-docs" branch:"main" path:"docs/user-guide/examples/ironic/certificate.yaml"}}
170+
{{#embed-github repo:"Nordix/metal3-docs" branch:"lentzi90/quick-revision" path:"docs/user-guide/examples/ironic/certificate.yaml"}}
171171
```
172172

173173
For the Bare Metal Operator, we use a kustomization that looks like this:
174174

175175
```yaml
176-
{{#embed-github repo:"metal3-io/metal3-docs" branch:"main" path:"docs/user-guide/examples/bmo/kustomization.yaml"}}
176+
{{#embed-github repo:"Nordix/metal3-docs" branch:"lentzi90/quick-revision" path:"docs/user-guide/examples/bmo/kustomization.yaml"}}
177177
```
178178

179179
## Create BareMetalHosts
@@ -188,7 +188,7 @@ accessing its BMC. No credentials are needed in the virtualized setup but you
188188
still need to create the secret with some values. Here is an example:
189189

190190
```yaml
191-
{{#embed-github repo:"metal3-io/metal3-docs" branch:"main" path:"docs/user-guide/examples/bmc-secret.yaml"}}
191+
{{#embed-github repo:"Nordix/metal3-docs" branch:"lentzi90/quick-revision" path:"docs/user-guide/examples/bmc-secret.yaml"}}
192192
```
193193

194194
Then continue by creating the BareMetalHost manifest. You can put it in the same
@@ -217,7 +217,7 @@ spec:
217217
Here is the same for the virtualized BareMetalHost:
218218
219219
```yaml
220-
{{#embed-github repo:"metal3-io/metal3-docs" branch:"main" path:"docs/user-guide/examples/bmh-01.yaml"}}
220+
{{#embed-github repo:"Nordix/metal3-docs" branch:"lentzi90/quick-revision" path:"docs/user-guide/examples/bmh-01.yaml"}}
221221
```
222222

223223
Apply these in the cluster with `kubectl apply -f path/to/file`.
@@ -241,7 +241,7 @@ Edit the BareMetalHost to add details of what image you want to provision it
241241
with. For example:
242242

243243
```yaml
244-
{{#embed-github repo:"metal3-io/metal3-docs" branch:"main" path:"docs/user-guide/examples/bmh-01-provision.yaml"}}
244+
{{#embed-github repo:"Nordix/metal3-docs" branch:"lentzi90/quick-revision" path:"docs/user-guide/examples/bmh-01-provision.yaml"}}
245245
```
246246

247247
Note that the URL for the disk image is _not_ using the out of band network.
@@ -323,7 +323,7 @@ options:
323323
control-plane nodes.
324324

325325
```bash
326-
{{#embed-github repo:"metal3-io/metal3-docs" branch:"main" path:"docs/user-guide/examples/capm3-vars.sh"}}
326+
{{#embed-github repo:"Nordix/metal3-docs" branch:"lentzi90/quick-revision" path:"docs/user-guide/examples/capm3-vars.sh"}}
327327
```
328328

329329
With the variables in place, we can render the manifests and apply:
@@ -394,5 +394,5 @@ If you did the virtualized setup you will also need to cleanup the sushy-tools
394394
container and the VM(s).
395395

396396
```bash
397-
{{#embed-github repo:"metal3-io/metal3-docs" branch:"main" path:"docs/user-guide/examples/cleanup-virtual-lab.sh"}}
397+
{{#embed-github repo:"Nordix/metal3-docs" branch:"lentzi90/quick-revision" path:"docs/user-guide/examples/cleanup-virtual-lab.sh"}}
398398
```

0 commit comments

Comments
 (0)