https://github.com/runyontr/zarf-package-k3d
https://github.com/runyontr/zarf-package-k3d
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/runyontr/zarf-package-k3d
- Owner: runyontr
- Created: 2023-05-03T00:40:22.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-23T10:31:15.000Z (almost 2 years ago)
- Last Synced: 2025-01-30T11:29:25.096Z (5 months ago)
- Language: Dockerfile
- Size: 26.4 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Zarf Package K3d
Zarf package that deploys a k3d cluster that has GPU support
## Deployment
```bash
zarf package create .
zarf package deploy zarf-package-k3d-local-amd64-v1.27.2.tar.zst
```### BigBang deployed
```bash
kubectl get hr -n bigbang
```### Working GPU
```bash
kubectl apply -f image/cuda-vector-add.yaml
kubectl logs -n gpu-test cuda-vector-add
```Should return:
```
[Vector addition of 50000 elements]
Copy input data from the host memory to the CUDA device
CUDA kernel launch with 196 blocks of 256 threads
Copy output data from the CUDA device to the host memory
Test PASSED
Done
```