Skip to content

Commit bbd8c9c

Browse files
committed
Replace tink-system namespace with tinkerbell
This commit changes all occurrences of the tink-system namespace to "tinkerbell", as that's now the namespace provided in the Install page examples. Signed-off-by: Michael Meier <[email protected]>
1 parent 0bb89ca commit bbd8c9c

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

content/docs/concepts/hardware.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ apiVersion: tinkerbell.org/v1alpha1
2828
kind: Hardware
2929
metadata:
3030
name: machine1
31-
namespace: tink-system
31+
namespace: tinkerbell
3232
spec:
3333
disks:
3434
- device: /dev/sda

content/docs/concepts/templates.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ apiVersion: tinkerbell.org/v1alpha1
1414
kind: Template
1515
metadata:
1616
name: ubuntu
17-
namespace: tink-system
17+
namespace: tinkerbell
1818
spec:
1919
data: ""
2020
```
@@ -163,7 +163,7 @@ apiVersion: tinkerbell.org/v1alpha1
163163
kind: Template
164164
metadata:
165165
name: ubuntu
166-
namespace: tink-system
166+
namespace: tinkerbell
167167
spec:
168168
data: |
169169
name: ubuntu
@@ -249,7 +249,7 @@ apiVersion: tinkerbell.org/v1alpha1
249249
kind: Template
250250
metadata:
251251
name: ubuntu
252-
namespace: tink-system
252+
namespace: tinkerbell
253253
spec:
254254
data: |
255255
name: ubuntu
@@ -275,7 +275,7 @@ apiVersion: tinkerbell.org/v1alpha1
275275
kind: Workflow
276276
metadata:
277277
name: ubuntu-install
278-
namespace: tink-system
278+
namespace: tinkerbell
279279
spec:
280280
templateRef: ubuntu
281281
hardwareRef: hardware-1

content/docs/integrations/cloudinit.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ apiVersion: tinkerbell.org/v1alpha1
6262
kind: Hardware
6363
metadata:
6464
name: example
65-
namespace: tink-system
65+
namespace: tinkerbell
6666
spec:
6767
userData: >-
6868
#cloud-config

content/docs/setup/getting_started.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -381,8 +381,8 @@ Follow these steps to create the stack on a Libvirt VM using Vagrant. Then deplo
381381
382382
```bash
383383
vagrant ssh stack
384-
kubectl get jobs -n tink-system --watch
385-
kubectl get pods -n tink-system --watch
384+
kubectl get jobs -n tinkerbell --watch
385+
kubectl get pods -n tinkerbell --watch
386386
exit
387387
# There is one Kubernetes job to download the Ubuntu image and an init
388388
# container in the hookos pod downloading the HookOS artifacts.
@@ -395,7 +395,7 @@ Follow these steps to create the stack on a Libvirt VM using Vagrant. Then deplo
395395
396396
Ubuntu image download:
397397
```bash
398-
kubectl get jobs -n tink-system --watch
398+
kubectl get jobs -n tinkerbell --watch
399399
NAME COMPLETIONS DURATION AGE
400400
download-ubuntu-jammy 0/1 49s 49s
401401
download-ubuntu-jammy 0/1 70s 70s
@@ -404,7 +404,7 @@ Follow these steps to create the stack on a Libvirt VM using Vagrant. Then deplo
404404
```
405405
HookOS pod:
406406
```bash
407-
kubectl get pods -n tink-system --watch
407+
kubectl get pods -n tinkerbell --watch
408408
NAME READY STATUS RESTARTS AGE
409409
download-ubuntu-jammy-2w4wn 0/1 Completed 0 38m
410410
hookos-58b848576b-hzsv4 2/2 Running 0 38m
@@ -468,7 +468,7 @@ Follow these steps to create the stack on a Libvirt VM using Vagrant. Then deplo
468468
469469
# watch for the workflow to complete
470470
# once the workflow is complete (see the expected output below for completion), move on to the next step
471-
kubectl get -n tink-system workflow playground-workflow --watch
471+
kubectl get -n tinkerbell workflow playground-workflow --watch
472472
```
473473
474474
<details>
@@ -864,8 +864,8 @@ Follow these steps to create the stack on a Virtualbox VM using Vagrant. Then de
864864
865865
```bash
866866
vagrant ssh stack
867-
kubectl get jobs -n tink-system --watch
868-
kubectl get pods -n tink-system --watch
867+
kubectl get jobs -n tinkerbell --watch
868+
kubectl get pods -n tinkerbell --watch
869869
exit
870870
# There is one Kubernetes job to download the Ubuntu image and an init
871871
# container in the hookos pod downloading the HookOS artifacts.
@@ -878,7 +878,7 @@ Follow these steps to create the stack on a Virtualbox VM using Vagrant. Then de
878878
879879
Ubuntu image download:
880880
```bash
881-
kubectl get jobs -n tink-system --watch
881+
kubectl get jobs -n tinkerbell --watch
882882
NAME COMPLETIONS DURATION AGE
883883
download-ubuntu-jammy 0/1 49s 49s
884884
download-ubuntu-jammy 0/1 70s 70s
@@ -887,7 +887,7 @@ Follow these steps to create the stack on a Virtualbox VM using Vagrant. Then de
887887
```
888888
HookOS pod:
889889
```bash
890-
kubectl get pods -n tink-system --watch
890+
kubectl get pods -n tinkerbell --watch
891891
NAME READY STATUS RESTARTS AGE
892892
download-ubuntu-jammy-2w4wn 0/1 Completed 0 38m
893893
hookos-58b848576b-hzsv4 2/2 Running 0 38m
@@ -959,7 +959,7 @@ Follow these steps to create the stack on a Virtualbox VM using Vagrant. Then de
959959
960960
# watch for the workflow to complete
961961
# once the workflow is complete (see the example output below for completion), move on to the next step
962-
kubectl get -n tink-system workflow sandbox-workflow --watch
962+
kubectl get -n tinkerbell workflow sandbox-workflow --watch
963963
```
964964
965965
<details>

0 commit comments

Comments
 (0)