Skip to content

Commit

Permalink
add additional pvs for local package caching
Browse files Browse the repository at this point in the history
  • Loading branch information
jeefy committed Mar 5, 2025
1 parent d75ed58 commit 42f3f10
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion ci/cluster/oci/runners/16cpu-64gb/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,10 @@ template:
securityContext:
privileged: true
volumeMounts:
- name: cache
mountPath: /home/runner/.cache
- name: go
mountPath: /home/runner/go
- name: work
mountPath: /home/runner/_work
- name: dind-sock
Expand All @@ -207,4 +211,22 @@ template:
storageClassName: oci-bv
resources:
requests:
storage: 50Gi
storage: 50Gi
- name: cache
ephemeral:
volumeClaimTemplate:
spec:
accessModes: [ "ReadWriteOnce" ]
storageClassName: oci-bv
resources:
requests:
storage: 10Gi
- name: go
ephemeral:
volumeClaimTemplate:
spec:
accessModes: [ "ReadWriteOnce" ]
storageClassName: oci-bv
resources:
requests:
storage: 10Gi

0 comments on commit 42f3f10

Please sign in to comment.