Skip to content

Commit 33dbf2f

Browse files
Christopher Ryanmmlb
Christopher Ryan
authored andcommitted
Change netmask from 192.168.50.0/24 to 192.168.56.0/24
Signed-off-by: Christopher Ryan <[email protected]>
1 parent 96f9d64 commit 33dbf2f

File tree

11 files changed

+14
-15
lines changed

11 files changed

+14
-15
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ The following docs will help you get started.
3535
2. Upload any container images you want to use in the templates to the internal registry
3636

3737
```bash
38-
docker run -it --rm quay.io/containers/skopeo copy --all --dest-tls-verify=false --dest-creds="admin":"Admin1234" docker://hello-world docker://192.168.50.4/hello-world
38+
docker run -it --rm quay.io/containers/skopeo copy --all --dest-tls-verify=false --dest-creds="admin":"Admin1234" docker://hello-world docker://192.168.56.4/hello-world
3939
```
4040

4141
3. Create a workflow

deploy/compose/.env

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ BOOTS_SERVER_IMAGE="quay.io/mmlb/boots:no-dir-in-ipxe-bin-names"
77
HEGEL_SERVER_IMAGE="quay.io/tinkerbell/hegel:sha-89cb9dc8"
88
TINKERBELL_HARDWARE_MANIFEST="/manifests/hardware/hardware.json"
99
TINKERBELL_TEMPLATE_MANIFEST="/manifests/template/ubuntu.yaml"
10-
TINKERBELL_HOST_IP=192.168.50.4
11-
TINKERBELL_CLIENT_IP=192.168.50.43
10+
TINKERBELL_HOST_IP=192.168.56.4
11+
TINKERBELL_CLIENT_IP=192.168.56.43
1212
TINKERBELL_CLIENT_MAC=08:00:27:9e:f5:3a

deploy/compose/manifests/hardware/hardware-equinix-metal.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
"dhcp": {
1616
"arch": "x86_64",
1717
"ip": {
18-
"address": "192.168.50.43",
19-
"gateway": "192.168.50.4",
18+
"address": "192.168.56.43",
19+
"gateway": "192.168.56.4",
2020
"netmask": "255.255.255.0"
2121
},
2222
"mac": "08:00:27:9e:f5:3a",

deploy/compose/manifests/hardware/hardware-libvirt.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
"dhcp": {
1616
"arch": "x86_64",
1717
"ip": {
18-
"address": "192.168.50.43",
19-
"gateway": "192.168.50.1",
18+
"address": "192.168.56.43",
19+
"gateway": "192.168.56.1",
2020
"netmask": "255.255.255.0"
2121
},
2222
"mac": "08:00:27:9e:f5:3a",

deploy/compose/manifests/template/ubuntu-equinix-metal.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ tasks:
1414
timeout: 600
1515
environment:
1616
DEST_DISK: /dev/sda
17-
IMG_URL: "http://192.168.50.4:8080/focal-server-cloudimg-amd64.raw.gz"
17+
IMG_URL: "http://192.168.56.4:8080/focal-server-cloudimg-amd64.raw.gz"
1818
COMPRESSED: true
1919
- name: "grow-partition"
2020
image: cexec:v1.0.0

deploy/compose/manifests/template/ubuntu-libvirt.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ tasks:
1414
timeout: 600
1515
environment:
1616
DEST_DISK: /dev/vda
17-
IMG_URL: "http://192.168.50.4:8080/focal-server-cloudimg-amd64.raw.gz"
17+
IMG_URL: "http://192.168.56.4:8080/focal-server-cloudimg-amd64.raw.gz"
1818
COMPRESSED: true
1919
- name: "install-openssl"
2020
image: cexec:v1.0.0

deploy/compose/tls/csr.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
{
22
"CN": "Tinkerbell",
33
"hosts": [
4-
"192.168.56.4",
54
"tinkerbell.registry",
65
"tinkerbell.tinkerbell",
76
"tinkerbell",
87
"tink-server",
9-
"192.168.50.4",
8+
"192.168.56.4",
109
"127.0.0.1",
1110
"localhost"
1211
],

deploy/terraform/setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ setup_layer2_network() {
3939
#local ip_addr="$2"
4040
ifenslave -d bond0 "${layer2_interface}"
4141
#ip addr add ${ip_addr}/24 dev "${layer2_interface}"
42-
ip addr add 192.168.50.4/24 dev "${layer2_interface}"
42+
ip addr add 192.168.56.4/24 dev "${layer2_interface}"
4343
ip link set dev "${layer2_interface}" up
4444
}
4545

docs/quickstarts/TERRAFORMEM.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,5 +104,5 @@ This option will also show you how to create a machine to provision.
104104
105105
```bash
106106
# crtl-c to exit the watch
107-
ssh [email protected].50.43 # user/pass => tink/tink
107+
ssh [email protected].56.43 # user/pass => tink/tink
108108
```

docs/quickstarts/VAGRANTLVIRT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,5 +286,5 @@ This option will also show you how to create a machine to provision.
286286
287287
```bash
288288
vagrant ssh provisioner
289-
ssh [email protected].50.43 # user/pass => tink/tink
289+
ssh [email protected].56.43 # user/pass => tink/tink
290290
```

docs/quickstarts/VAGRANTVBOX.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,5 +274,5 @@ This option will also show you how to create a machine to provision.
274274
275275
```bash
276276
vagrant ssh provisioner
277-
ssh [email protected].50.43 # user/pass => tink/tink
277+
ssh [email protected].56.43 # user/pass => tink/tink
278278
```

0 commit comments

Comments
 (0)