diff --git a/deployments/coreweave-sig/README.md b/deployments/coreweave-sig/README.md new file mode 100644 index 0000000..def43a8 --- /dev/null +++ b/deployments/coreweave-sig/README.md @@ -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. + diff --git a/deployments/coreweave-sig/ingress/README.md b/deployments/coreweave-sig/ingress/README.md new file mode 100644 index 0000000..a1d9e1a --- /dev/null +++ b/deployments/coreweave-sig/ingress/README.md @@ -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 +``` diff --git a/deployments/coreweave-sig/ingress/load-balancer.yaml b/deployments/coreweave-sig/ingress/load-balancer.yaml new file mode 100644 index 0000000..f1ef822 --- /dev/null +++ b/deployments/coreweave-sig/ingress/load-balancer.yaml @@ -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