An open API service indexing awesome lists of open source software.

https://github.com/runyontr/zarf-package-k3d


https://github.com/runyontr/zarf-package-k3d

Last synced: 3 months ago
JSON representation

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
```