Skip to content

Commit

Permalink
docs fix, env uppercase
Browse files Browse the repository at this point in the history
  • Loading branch information
justinthelaw authored and vanakema committed Jul 15, 2024
1 parent 6d23f2a commit 195e042
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
10 changes: 9 additions & 1 deletion docs/DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ For fulfilling `xargs` and `kubectl` binary requirements necessary for running s

```bash
touch /usr/local/bin/kubectl
echo '#!/bin/bash\nuds zarf tools kubectl "$@"' > /usr/local/bin/kubectl
echo -e '#!/bin/bash\nuds zarf tools kubectl "$@"' > /usr/local/bin/kubectl
chmod +x /usr/local/bin/kubectl
```

Expand Down Expand Up @@ -138,3 +138,11 @@ For example, this is how you pull and deploy a LATEST version of a package:
uds zarf package pull oci://ghcr.io/justinthelaw/packages/uds/uds-rke2/nvidia-gpu-operator:latest -a amd64
uds run deploy:nvidia-gpu-operator
```

## Troubleshooting

If your RKE2 cluster is failing to spin up in the first place, you can use `journalctl` to monitor the progress. Please note that it may take up to 10 minutes for the cluster spin-up and move on to the next step of the UDS RKE2 bundle deployment.

```bash
journalctl -xef -u rke2-server
```
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ validator:
driver:
# RKE2-specific configurations
env:
- name: disable_dev_char_symlink_creation
- name: DISABLE_DEV_CHAR_SYMLINK_CREATION
value: "true"
- name: NVIDIA_VISIBLE_DEVICES
value: all
Expand Down

0 comments on commit 195e042

Please sign in to comment.