Skip to content

Commit 321edf9

Browse files
committed
TEST
Signed-off-by: Lennart Jern <[email protected]>
1 parent 5e7af78 commit 321edf9

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
@@ -218,7 +218,7 @@ spec:
218218
Here is the same for the virtualized BareMetalHost:
219219
220220
```yaml
221-
{{#embed-github repo:"metal3-io/metal3-docs" branch:"main" path:"docs/user-guide/examples/bmh-01.yaml"}}
221+
{{#embed-github repo:"Nordix/metal3-docs" branch:"lentzi90/quick-revision" path:"docs/user-guide/examples/bmh-01.yaml"}}
222222
```
223223

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

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

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

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

330330
With the variables in place, we can render the manifests and apply:
@@ -390,5 +390,5 @@ If you did the virtualized setup you will also need to cleanup the sushy-tools
390390
container and the VM.
391391

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

0 commit comments

Comments
 (0)