Skip to content

Commit 3ed1b42

Browse files
ChristianZaccariaastefanutti
authored andcommitted
Address requested changes
1 parent 0ff7dbc commit 3ed1b42

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

.github/workflows/e2e_tests.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,12 @@ jobs:
117117
echo "Printing KubeRay operator logs"
118118
kubectl logs -n ray-system --tail -1 -l app.kubernetes.io/name=kuberay | tee ${CODEFLARE_TEST_OUTPUT_DIR}/kuberay.log
119119
120+
- name: Export all KinD pod logs
121+
uses: ./common/github-actions/kind-export-logs
122+
if: always() && steps.deploy.outcome == 'success'
123+
with:
124+
output-directory: ${CODEFLARE_TEST_OUTPUT_DIR}
125+
120126
- name: Upload logs
121127
uses: actions/upload-artifact@v3
122128
if: always() && steps.deploy.outcome == 'success'

src/codeflare_sdk/templates/base-template.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,21 +16,21 @@ spec:
1616
custompodresources:
1717
- replicas: 1
1818
requests:
19-
cpu: 1
20-
memory: 4G
19+
cpu: 2
20+
memory: 8G
2121
nvidia.com/gpu: 0
2222
limits:
23-
cpu: 1
24-
memory: 4G
23+
cpu: 2
24+
memory: 8G
2525
nvidia.com/gpu: 0
2626
- replicas: 3
2727
requests:
28-
cpu: 1
29-
memory: 4G
28+
cpu: 2
29+
memory: 12G
3030
nvidia.com/gpu: 1
3131
limits:
32-
cpu: 1
33-
memory: 4G
32+
cpu: 2
33+
memory: 12G
3434
nvidia.com/gpu: 1
3535
generictemplate:
3636
# This config demonstrates KubeRay's Ray autoscaler integration.

0 commit comments

Comments
 (0)