Skip to content

Commit

Permalink
Address requested changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristianZaccaria authored and astefanutti committed Jan 10, 2024
1 parent 0ff7dbc commit 3ed1b42
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/e2e_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,12 @@ jobs:
echo "Printing KubeRay operator logs"
kubectl logs -n ray-system --tail -1 -l app.kubernetes.io/name=kuberay | tee ${CODEFLARE_TEST_OUTPUT_DIR}/kuberay.log
- name: Export all KinD pod logs
uses: ./common/github-actions/kind-export-logs
if: always() && steps.deploy.outcome == 'success'
with:
output-directory: ${CODEFLARE_TEST_OUTPUT_DIR}

- name: Upload logs
uses: actions/upload-artifact@v3
if: always() && steps.deploy.outcome == 'success'
Expand Down
16 changes: 8 additions & 8 deletions src/codeflare_sdk/templates/base-template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,21 @@ spec:
custompodresources:
- replicas: 1
requests:
cpu: 1
memory: 4G
cpu: 2
memory: 8G
nvidia.com/gpu: 0
limits:
cpu: 1
memory: 4G
cpu: 2
memory: 8G
nvidia.com/gpu: 0
- replicas: 3
requests:
cpu: 1
memory: 4G
cpu: 2
memory: 12G
nvidia.com/gpu: 1
limits:
cpu: 1
memory: 4G
cpu: 2
memory: 12G
nvidia.com/gpu: 1
generictemplate:
# This config demonstrates KubeRay's Ray autoscaler integration.
Expand Down

0 comments on commit 3ed1b42

Please sign in to comment.