Skip to content

Commit

Permalink
Remove GKE node selector from default L4 profile (#147)
Browse files Browse the repository at this point in the history
Fixes #146
  • Loading branch information
nstogner authored Aug 30, 2024
1 parent 6c44e80 commit 7e3579f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion charts/kubeai/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.3
version: 0.2.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 0 additions & 2 deletions charts/kubeai/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@ resourceProfiles:
nvidia.com/gpu: "1"
cpu: "6"
memory: "24Gi"
nodeSelector:
cloud.google.com/gke-accelerator: "nvidia-tesla-t4"

messaging:
errorMaxBackoff: 30s
Expand Down
8 changes: 5 additions & 3 deletions docs/cloud-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,11 @@ Make sure you have a HuggingFace Hub token set in your environment (`HUGGING_FAC
Install KubeAI with [Helm](https://helm.sh/docs/intro/install/).

```bash
helm upgrade --install kubeai ./charts/kubeai \
helm repo add kubeai https://substratusai.github.io/kubeai/
helm repo update

helm upgrade --install kubeai kubeai/kubeai \
-f ./helm-values.yaml \
--set secrets.huggingface.token=$HUGGING_FACE_HUB_TOKEN \
--wait \
--set image.tag=latest
--wait
```

0 comments on commit 7e3579f

Please sign in to comment.