File tree 2 files changed +14
-8
lines changed
src/codeflare_sdk/templates
2 files changed +14
-8
lines changed Original file line number Diff line number Diff line change @@ -117,6 +117,12 @@ jobs:
117
117
echo "Printing KubeRay operator logs"
118
118
kubectl logs -n ray-system --tail -1 -l app.kubernetes.io/name=kuberay | tee ${CODEFLARE_TEST_OUTPUT_DIR}/kuberay.log
119
119
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
+
120
126
- name : Upload logs
121
127
uses : actions/upload-artifact@v3
122
128
if : always() && steps.deploy.outcome == 'success'
Original file line number Diff line number Diff line change @@ -16,21 +16,21 @@ spec:
16
16
custompodresources :
17
17
- replicas : 1
18
18
requests :
19
- cpu : 1
20
- memory : 4G
19
+ cpu : 2
20
+ memory : 8G
21
21
nvidia.com/gpu : 0
22
22
limits :
23
- cpu : 1
24
- memory : 4G
23
+ cpu : 2
24
+ memory : 8G
25
25
nvidia.com/gpu : 0
26
26
- replicas : 3
27
27
requests :
28
- cpu : 1
29
- memory : 4G
28
+ cpu : 2
29
+ memory : 12G
30
30
nvidia.com/gpu : 1
31
31
limits :
32
- cpu : 1
33
- memory : 4G
32
+ cpu : 2
33
+ memory : 12G
34
34
nvidia.com/gpu : 1
35
35
generictemplate :
36
36
# This config demonstrates KubeRay's Ray autoscaler integration.
You can’t perform that action at this time.
0 commit comments