Skip to content

Commit

Permalink
New example: Autoscaling multi-tenant Kubernetes Deep dive (#154)
Browse files Browse the repository at this point in the history
* Add multi-tenant example

* Finish up example

* Fix typos

* Apply suggestions from code review

Co-authored-by: Mike McCarty <mmccarty@nvidia.com>

---------

Co-authored-by: Mike McCarty <mmccarty@nvidia.com>
  • Loading branch information
jacobtomlinson and mmccarty authored Feb 24, 2023
1 parent 6e3f6d1 commit 5704978
Show file tree
Hide file tree
Showing 6 changed files with 2,386 additions and 0 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions source/examples/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ xgboost-gpu-hpo-job-parallel-k8s/notebook
rapids-sagemaker-higgs/notebook
rapids-sagemaker-hpo/notebook
rapids-ec2-mnmg/notebook
rapids-autoscaling-multi-tenant-kubernetes/notebook
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# image-prepuller.yaml
apiVersion: apps/v1
kind: DaemonSet
metadata:
name: prepull-rapids
spec:
selector:
matchLabels:
name: prepull-rapids
template:
metadata:
labels:
name: prepull-rapids
spec:
initContainers:
- name: prepull-rapids
image: us-central1-docker.pkg.dev/nv-ai-infra/rapidsai/rapidsai-core:22.12-cuda11.5-runtime-ubuntu20.04-py3.9
command: ["sh", "-c", "'true'"]
containers:
- name: pause
image: gcr.io/google_containers/pause
Loading

0 comments on commit 5704978

Please sign in to comment.