Skip to content

Commit

Permalink
Merge pull request #458 from Roming22/feat/dh/plugins-pvc
Browse files Browse the repository at this point in the history
feat: add a PVC for DH plugins
  • Loading branch information
openshift-merge-bot[bot] authored Feb 13, 2025
2 parents 44728b5 + 601663c commit 10d66f6
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
10 changes: 10 additions & 0 deletions installer/charts/rhtap-dh/templates/backstage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,13 @@ spec:
enabled: true
database:
enableLocalDb: true
deployment:
patch:
spec:
template:
spec:
volumes:
- $patch: replace
name: dynamic-plugins-root
persistentVolumeClaim:
claimName: {{ .Values.developerHub.instanceName }}-dynamic-plugins-root
11 changes: 11 additions & 0 deletions installer/charts/rhtap-dh/templates/plugins-cache.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: {{ .Values.developerHub.instanceName }}-dynamic-plugins-root
namespace: {{ .Release.Namespace }}
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 5Gi

0 comments on commit 10d66f6

Please sign in to comment.