Skip to content

Replace tink-system namespace with tinkerbell #257

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 30, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/docs/concepts/hardware.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ apiVersion: tinkerbell.org/v1alpha1
kind: Hardware
metadata:
name: machine1
namespace: tink-system
namespace: tinkerbell
spec:
disks:
- device: /dev/sda
Expand Down
8 changes: 4 additions & 4 deletions content/docs/concepts/templates.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ apiVersion: tinkerbell.org/v1alpha1
kind: Template
metadata:
name: ubuntu
namespace: tink-system
namespace: tinkerbell
spec:
data: ""
```
Expand Down Expand Up @@ -163,7 +163,7 @@ apiVersion: tinkerbell.org/v1alpha1
kind: Template
metadata:
name: ubuntu
namespace: tink-system
namespace: tinkerbell
spec:
data: |
name: ubuntu
Expand Down Expand Up @@ -249,7 +249,7 @@ apiVersion: tinkerbell.org/v1alpha1
kind: Template
metadata:
name: ubuntu
namespace: tink-system
namespace: tinkerbell
spec:
data: |
name: ubuntu
Expand All @@ -275,7 +275,7 @@ apiVersion: tinkerbell.org/v1alpha1
kind: Workflow
metadata:
name: ubuntu-install
namespace: tink-system
namespace: tinkerbell
spec:
templateRef: ubuntu
hardwareRef: hardware-1
Expand Down
2 changes: 1 addition & 1 deletion content/docs/integrations/cloudinit.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ apiVersion: tinkerbell.org/v1alpha1
kind: Hardware
metadata:
name: example
namespace: tink-system
namespace: tinkerbell
spec:
userData: >-
#cloud-config
Expand Down
20 changes: 10 additions & 10 deletions content/docs/setup/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -381,8 +381,8 @@ Follow these steps to create the stack on a Libvirt VM using Vagrant. Then deplo

```bash
vagrant ssh stack
kubectl get jobs -n tink-system --watch
kubectl get pods -n tink-system --watch
kubectl get jobs -n tinkerbell --watch
kubectl get pods -n tinkerbell --watch
exit
# There is one Kubernetes job to download the Ubuntu image and an init
# container in the hookos pod downloading the HookOS artifacts.
Expand All @@ -395,7 +395,7 @@ Follow these steps to create the stack on a Libvirt VM using Vagrant. Then deplo

Ubuntu image download:
```bash
kubectl get jobs -n tink-system --watch
kubectl get jobs -n tinkerbell --watch
NAME COMPLETIONS DURATION AGE
download-ubuntu-jammy 0/1 49s 49s
download-ubuntu-jammy 0/1 70s 70s
Expand All @@ -404,7 +404,7 @@ Follow these steps to create the stack on a Libvirt VM using Vagrant. Then deplo
```
HookOS pod:
```bash
kubectl get pods -n tink-system --watch
kubectl get pods -n tinkerbell --watch
NAME READY STATUS RESTARTS AGE
download-ubuntu-jammy-2w4wn 0/1 Completed 0 38m
hookos-58b848576b-hzsv4 2/2 Running 0 38m
Expand Down Expand Up @@ -468,7 +468,7 @@ Follow these steps to create the stack on a Libvirt VM using Vagrant. Then deplo

# watch for the workflow to complete
# once the workflow is complete (see the expected output below for completion), move on to the next step
kubectl get -n tink-system workflow playground-workflow --watch
kubectl get -n tinkerbell workflow playground-workflow --watch
```

<details>
Expand Down Expand Up @@ -864,8 +864,8 @@ Follow these steps to create the stack on a Virtualbox VM using Vagrant. Then de

```bash
vagrant ssh stack
kubectl get jobs -n tink-system --watch
kubectl get pods -n tink-system --watch
kubectl get jobs -n tinkerbell --watch
kubectl get pods -n tinkerbell --watch
exit
# There is one Kubernetes job to download the Ubuntu image and an init
# container in the hookos pod downloading the HookOS artifacts.
Expand All @@ -878,7 +878,7 @@ Follow these steps to create the stack on a Virtualbox VM using Vagrant. Then de

Ubuntu image download:
```bash
kubectl get jobs -n tink-system --watch
kubectl get jobs -n tinkerbell --watch
NAME COMPLETIONS DURATION AGE
download-ubuntu-jammy 0/1 49s 49s
download-ubuntu-jammy 0/1 70s 70s
Expand All @@ -887,7 +887,7 @@ Follow these steps to create the stack on a Virtualbox VM using Vagrant. Then de
```
HookOS pod:
```bash
kubectl get pods -n tink-system --watch
kubectl get pods -n tinkerbell --watch
NAME READY STATUS RESTARTS AGE
download-ubuntu-jammy-2w4wn 0/1 Completed 0 38m
hookos-58b848576b-hzsv4 2/2 Running 0 38m
Expand Down Expand Up @@ -959,7 +959,7 @@ Follow these steps to create the stack on a Virtualbox VM using Vagrant. Then de

# watch for the workflow to complete
# once the workflow is complete (see the example output below for completion), move on to the next step
kubectl get -n tink-system workflow sandbox-workflow --watch
kubectl get -n tinkerbell workflow sandbox-workflow --watch
```

<details>
Expand Down