Skip to content

Commit

Permalink
Use pvc variable to replace hardcode disk type (#152)
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilexWong authored Oct 29, 2024
1 parent f952583 commit a2b7a5d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/juno-node/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: juno-chart
version: 0.1.6
version: 0.1.7
appVersion: "1"
description: A Helm chart for deploying Juno service
maintainers:
Expand Down
4 changes: 2 additions & 2 deletions charts/juno-node/templates/juno-data-backup-cronjob.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ data:
kind: PersistentVolumeClaim
accessModes:
- ReadWriteOnce
storageClassName: premium-rwo
storageClassName: {{ $.Values.pvc.storageClassName }}
resources:
requests:
storage: {{ .Values.backupJunoDataJob.storageSize }}
Expand All @@ -80,7 +80,7 @@ data:
spec:
accessModes:
- ReadWriteOnce
storageClassName: premium-rwo
storageClassName: {{ $.Values.pvc.storageClassName }}
resources:
requests:
storage: {{ .Values.backupJunoDataJob.storageSize }}
Expand Down

0 comments on commit a2b7a5d

Please sign in to comment.