From 3ee9dbec2fd5f62c389a04be35dc0a4fcceb0871 Mon Sep 17 00:00:00 2001 From: app/github-actions Date: Wed, 27 Aug 2025 20:43:10 -0400 Subject: [PATCH 1/2] pr commit From bf90c85a0b8085837a13403b20c1372949f8e7b8 Mon Sep 17 00:00:00 2001 From: aldmbmtl Date: Wed, 27 Aug 2025 21:04:25 -0400 Subject: [PATCH 2/2] Pushing before testing. --- deployments/coreweave-sig/README.md | 13 +++++++++++++ deployments/coreweave-sig/ingress/README.md | 15 +++++++++++++++ .../coreweave-sig/ingress/load-balancer.yaml | 14 ++++++++++++++ 3 files changed, 42 insertions(+) create mode 100644 deployments/coreweave-sig/README.md create mode 100644 deployments/coreweave-sig/ingress/README.md create mode 100644 deployments/coreweave-sig/ingress/load-balancer.yaml 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