Skip to content

Commit

Permalink
fix: command
Browse files Browse the repository at this point in the history
  • Loading branch information
ishaansehgal99 committed Oct 10, 2023
1 parent 914d11b commit 5b60d15
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/e2e-preset-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,13 +113,15 @@ jobs:
- name: Create Nodepool
run: |
az aks nodepool add \
--name e2etest-${{ matrix.image.name }} --cluster-name new_demo --resource-group llm-test \
--node-count ${{ matrix.image.node-count }} \
--node-vm-size ${{ matrix.image.node-vm-size }} \
--node-osdisk-size ${{ matrix.image.node-osdisk-size }} \
--node-taints sku=gpu:NoSchedule \
--aks-custom-headers UseGPUDedicatedVHD=true
--name e2etest-${{ matrix.image.name }} \
--cluster-name new_demo \
--resource-group llm-test \
--node-count ${{ matrix.image.node-count }} \
--node-vm-size ${{ matrix.image.node-vm-size }} \
--node-osdisk-size ${{ matrix.image.node-osdisk-size }} \
--node-taints sku=gpu:NoSchedule \
--aks-custom-headers UseGPUDedicatedVHD=true
- name: Deploy image to K8s
run: |
kubectl apply -f pkg/presets/k8s/${{ matrix.image.name}}.yaml
Expand Down

0 comments on commit 5b60d15

Please sign in to comment.