-
Notifications
You must be signed in to change notification settings - Fork 118
Update AutoScaling Blog to 24.07 #108
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 7 commits
1145f10
7f7836b
6e5fad8
0665326
2ccfb19
53464ac
e602365
ac1df46
e9c13b8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
apiVersion: v1 | ||
kind: PersistentVolumeClaim | ||
metadata: | ||
name: efs-claim-autoscaling-2 | ||
spec: | ||
accessModes: | ||
- ReadWriteMany | ||
storageClassName: efs-autoscaling-sc | ||
resources: | ||
requests: | ||
storage: 200Gi |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
apiVersion: v1 | ||
kind: PersistentVolume | ||
metadata: | ||
name: efs-autoscaling-pv-2 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. we should pick a more meaningful, and less AWS specific name for this. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Moved all pvc charts for aws under pvc_aws folder |
||
spec: | ||
capacity: | ||
storage: 200Gi | ||
volumeMode: Filesystem | ||
accessModes: | ||
- ReadWriteMany | ||
persistentVolumeReclaimPolicy: Retain | ||
storageClassName: efs-autoscaling-sc | ||
csi: | ||
driver: efs.csi.aws.com | ||
volumeHandle: fs-0c6ba87870e4be751 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
kind: StorageClass | ||
apiVersion: storage.k8s.io/v1 | ||
metadata: | ||
name: efs-autoscaling-sc | ||
provisioner: efs.csi.aws.com | ||
whoisj marked this conversation as resolved.
Show resolved
Hide resolved
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
apiVersion: v1 | ||
kind: Pod | ||
metadata: | ||
name: setup-ssh-efs | ||
indrajit96 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
labels: | ||
app: setup-ssh-efs | ||
spec: | ||
containers: | ||
- name: triton | ||
image: nvcr.io/nvidia/tritonserver:24.08-trtllm-python-py3 | ||
command: ["sleep", "infinity"] | ||
resources: | ||
limits: | ||
nvidia.com/gpu: 4 | ||
requests: | ||
nvidia.com/gpu: 4 | ||
volumeMounts: | ||
- mountPath: /var/run/models | ||
name: model-repository | ||
- mountPath: /dev/shm | ||
name: dshm | ||
volumes: | ||
- name: model-repository | ||
persistentVolumeClaim: | ||
claimName: efs-claim-autoscaling-2 | ||
- name: dshm | ||
emptyDir: | ||
medium: Memory | ||
sizeLimit: 512Gi |
Uh oh!
There was an error while loading. Please reload this page.