Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Bumps all the uds core versions to 0.25.0 and updates deployment docs #874

Merged
merged 6 commits into from
Aug 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/uds-cluster/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ runs:
- name: Create UDS Cluster
shell: bash
run: |
uds deploy k3d-core-slim-dev:0.22.2 --confirm
make create-uds-cpu-cluster
1 change: 1 addition & 0 deletions .github/workflows/e2e-llama-cpp-python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ on:
# Ignore updates to the .github directory, unless it's this current file
- "!.github/**"
- ".github/workflows/e2e-llama-cpp-python.yaml"
- ".github/actions/uds-cluster/action.yaml"

# Ignore docs and website things
- "!**.md"
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/e2e-playwright.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ on:
# Ignore updates to the .github directory, unless it's this current file
- "!.github/**"
- ".github/workflows/e2e-playwright.yaml"
- ".github/actions/uds-cluster/action.yaml"

# Ignore docs and website things
- "!**.md"
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/e2e-text-embeddings.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ on:
# Ignore updates to the .github directory, unless it's this current file
- "!.github/**"
- ".github/workflows/e2e-text-embeddings.yaml"
- ".github/actions/uds-cluster/action.yaml"

# Ignore docs and website things
- "!**.md"
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/e2e-vllm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ on:
# Ignore updates to the .github directory, unless it's this current file
- "!.github/**"
- ".github/workflows/e2e-vllm.yaml"
- ".github/actions/uds-cluster/action.yaml"

# Ignore docs and website things
- "!**.md"
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/e2e-whisper.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ on:
# Ignore updates to the .github directory, unless it's this current file
- "!.github/**"
- ".github/workflows/e2e-whisper.yaml"
- ".github/actions/uds-cluster/action.yaml"

# Ignore docs and website things
- "!**.md"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ LeapfrogAI can be deployed and run locally via UDS and Kubernetes, built out usi
Prior to deploying any LeapfrogAI packages, a UDS Kubernetes cluster must be deployed using the most recent k3d bundle:

```sh
uds deploy k3d-core-slim-dev:0.23.0
make create-uds-cpu-cluster
```

#### UDS Latest
Expand Down
2 changes: 1 addition & 1 deletion packages/k3d-gpu/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MAKEFILE_DIR := $(dir $(abspath $(lastword $(MAKEFILE_LIST))))

UDS_VERSION := 0.24.1
UDS_VERSION := 0.25.0
LOCAL_VERSION ?= $(shell git rev-parse --short HEAD)
DOCKER_FLAGS :=
ZARF_FLAGS :=
Expand Down
8 changes: 6 additions & 2 deletions website/content/en/docs/local deploy guide/quick_start.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,10 @@ git clone https://github.com/defenseunicorns/leapfrogai.git
From within the cloned repository, deploy K3D and the LeapfrogAI bundle:

``` bash
make create-uds-cpu-cluster

cd uds-bundles/latest/cpu/
uds create .
uds deploy k3d-core-slim-dev:0.23.0 # be sure to check if a newer version exists
uds deploy uds-bundle-leapfrogai-*.tar.zst --confirm
```

Expand All @@ -86,9 +87,12 @@ uds deploy uds-bundle-leapfrogai-*.tar.zst --confirm
In order to test the GPU deployment locally on K3d, use the following command when deploying UDS-Core:

```bash
make build-k3d-gpu # build the image
make create-uds-gpu-cluster # create a uds cluster equipped with the k3d-gpu image
make test-uds-gpu-cluster # deploy a test gpu pod to see if everything is working

cd uds-bundles/latest/gpu/
uds create .
uds deploy k3d-core-slim-dev:0.23.0 --set K3D_EXTRA_ARGS="--gpus=all --image=ghcr.io/justinthelaw/k3d-gpu-support:v1.27.4-k3s1-cuda" # be sure to check if a newer version exists
uds deploy uds-bundle-leapfrogai-*.tar.zst --confirm
```

Expand Down
Loading