Skip to content

Commit

Permalink
chore(docs): graceful k3d shutdown and startup (#100)
Browse files Browse the repository at this point in the history
* add docs for graceful k3d shutdown and startup
  • Loading branch information
justinthelaw authored Aug 15, 2024
1 parent a730642 commit 876a19b
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,18 @@ This package is published via CI, but can be created locally with the following

`k3d cluster delete uds` (uds is the default cluster name).

## Start and Stop

To stop and start an existing UDS K3d cluster gracefully, without disrupting the `host.k3d.internal` CoreDNS rewrite for `*.uds.dev`, use the following prior to host hibernation, suspension, restart, or shutoff:

```bash
# to stop the default UDS cluster
k3d cluster stop uds

# to start the default UDS cluster
k3d cluster start uds
```

## Additional Info

You can set extra k3d args by setting the deploy-time ZARF_VAR_K3D_EXTRA_ARGS. See below `zarf-config.yaml` example k3d args:
Expand All @@ -50,10 +62,10 @@ package:
k3d_extra_args: "--k3s-arg --gpus=1 --k3s-arg --<arg2>=<value>"
```
Configure MinIO:
### Configure MinIO
- [Configuring Minio](docs/MINIO.md)
### DNS Assumptions:
### DNS Assumptions
- [DNS Assumptions](docs/DNS.md)

0 comments on commit 876a19b

Please sign in to comment.