Skip to content

Commit

Permalink
Add namespace flag to apply commands
Browse files Browse the repository at this point in the history
When trying the quick start I noticed these were missing.
  • Loading branch information
peterwillis authored Jan 25, 2024
1 parent a2b5255 commit d361c16
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/quickstarts/KUBERNETES.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,16 @@ You will need to bring your own hardware (machine) for this guide.
1. Download and convert a cloud image to a raw image

```bash
kubectl apply -f https://raw.githubusercontent.com/tinkerbell/sandbox/main/vagrant/ubuntu-download.yaml
kubectl apply -n tink-system -f https://raw.githubusercontent.com/tinkerbell/sandbox/main/vagrant/ubuntu-download.yaml
# This will download and convert the Ubuntu Jammy 22.04 cloud image.
```

1. Create and/or customize Hardware, Template, and Workflow objects and apply them to the cluster. You can use the Hardware, Template, and Workflow in this repo, in the `vagrant/` directory, as a base from which to start.

```bash
kubectl apply -f my-hardware.yaml
kubectl apply -f my-template.yaml
kubectl apply -f my-workflow.yaml
kubectl apply -n tink-system -f my-hardware.yaml
kubectl apply -n tink-system -f my-template.yaml
kubectl apply -n tink-system -f my-workflow.yaml
```

1. Start the machine provision process by rebooting, into a netbooting state, the machine you have specified in the Hardware object above.
Expand Down

0 comments on commit d361c16

Please sign in to comment.