Skip to content
Snippets Groups Projects
Verified Commit 8038b4fd authored by Sheogorath's avatar Sheogorath :european_castle:
Browse files

fix(renovate): Switch to ephemeral volume

This patch adjusts the cache volume to an ephemeral volume, which should
make sure that the cache is always invalidated after a full run.
parent 706bc676
No related branches found
No related tags found
No related merge requests found
...@@ -51,8 +51,14 @@ data: ...@@ -51,8 +51,14 @@ data:
create: true create: true
extraVolumes: extraVolumes:
- name: cache - name: cache
persistentVolumeClaim: ephemeral:
claimName: renovate-cache volumeClaimTemplate:
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 5Gi
extraVolumeMounts: extraVolumeMounts:
- name: cache - name: cache
mountPath: /cache mountPath: /cache
...@@ -70,16 +76,3 @@ data: ...@@ -70,16 +76,3 @@ data:
limits: limits:
cpu: 1000m cpu: 1000m
memory: 2Gi memory: 2Gi
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: renovate-cache
namespace: renovate
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 5Gi
volumeMode: Filesystem
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment