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: website/content/v1.8/talos-guides/install/bare-metal-platforms/network-config.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -43,24 +43,24 @@ The platform network configuration is a YAML document which contains resource sp
43
43
For the `metal` platform, the [interactive dashboard]({{< relref "../../interactive-dashboard" >}}) can be used to edit the platform network configuration, also the configuration can be
44
44
created [manually]({{< relref "../../../advanced/metal-network-configuration" >}}).
45
45
46
-
The current value of the platform network configuration can be retrieved using the `MetaKeys` resource (key `0xa`):
46
+
The current value of the platform network configuration can be retrieved using the `MetaKeys` resource (key `0x0a`):
47
47
48
48
```bash
49
-
talosctl get meta 0xa
49
+
talosctl get meta 0x0a
50
50
```
51
51
52
52
The platform network configuration can be updated using the `talosctl meta` command for the running node:
53
53
54
54
```bash
55
-
talosctl meta write 0xa'{"externalIPs": ["1.2.3.4"]}'
56
-
talosctl meta delete 0xa
55
+
talosctl meta write 0x0a'{"externalIPs": ["1.2.3.4"]}'
56
+
talosctl meta delete 0x0a
57
57
```
58
58
59
59
The initial platform network configuration for the `metal` platform can be also included into the generated Talos image:
60
60
61
61
```bash
62
-
docker run --rm -i ghcr.io/siderolabs/imager:{{< release >}} iso --arch amd64 --tar-to-stdout --meta 0xa='{...}'| tar xz
63
-
docker run --rm -i --privileged ghcr.io/siderolabs/imager:{{< release >}} image --platform metal --arch amd64 --tar-to-stdout --meta 0xa='{...}'| tar xz
62
+
docker run --rm -i ghcr.io/siderolabs/imager:{{< release >}} iso --arch amd64 --tar-to-stdout --meta 0x0a='{...}'| tar xz
63
+
docker run --rm -i --privileged ghcr.io/siderolabs/imager:{{< release >}} image --platform metal --arch amd64 --tar-to-stdout --meta 0x0a='{...}'| tar xz
64
64
```
65
65
66
66
The platform network configuration gets merged with other sources of network configuration, the details can be found in the [network resources guide]({{< relref "../../../learn-more/networking-resources.md#configuration-merging" >}}).
0 commit comments