Skip to content
Open
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
13 changes: 13 additions & 0 deletions deployments/coreweave-sig/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# CoreWeave SIG

This directory contains the deployment configurations for the CoreWeave special interest group (SIG) of Juno.

Because CoreWeave is already built on kubernetes and presents a GPU-enabled environment, the configurations here are
tailored to leverage the existing infrastructure and services provided by CoreWeave.

## Services

The following services are included in the CoreWeave SIG:

- **[NGINX Ingress](ingress/README.md)**: Configuration for deploying NGINX as an ingress controller.

15 changes: 15 additions & 0 deletions deployments/coreweave-sig/ingress/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# NVIDIA GPU Operator

## Configurations

- **[load-balancer](load-balancer.yaml)**: Use this configuration if you have pre-installed NVIDIA drivers on your nodes. This removes the need to provision and install the drivers dynamically via the operator. This does mean you have to keep the drivers up to date manually.

## Examples

**Pre-installed Drivers**
```shell
helm install juno ./chart/ \
-f ./deployments/coreweave-sig/ingress/load-balancer.yaml \
...
-f ./.values.yaml
```
14 changes: 14 additions & 0 deletions deployments/coreweave-sig/ingress/load-balancer.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# GPU is already provisioned in the cluster, so we block it here.
gpu:
enabled: false

# set up nginx ingress controller with a LoadBalancer service
ingress:
enabled: true
config:
controller:
service:
type: LoadBalancer
annotations:
service.beta.kubernetes.io/external-hostname: *
service.beta.kubernetes.io/coreweave-load-balancer-type: public