Skip to content

Commit

Permalink
[rpc-node] Adding custom volume mount path
Browse files Browse the repository at this point in the history
  • Loading branch information
nzenchik committed Jun 11, 2024
1 parent 493d458 commit 181025a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/rpc-node/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.3.0
version: 0.3.1

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion charts/rpc-node/templates/consensus-stateful-set.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ spec:
volumeMounts:
{{- if .Values.consensus.persistence.enabled }}
- name: consensus-data
mountPath: /data
mountPath: {{ .Values.consensus.persistence.mountPath }}
{{- end }}
{{- with .Values.consensus.volumeMounts }}
{{- toYaml . | nindent 12 }}
Expand Down
2 changes: 1 addition & 1 deletion charts/rpc-node/templates/execution-stateful-set.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ spec:
volumeMounts:
{{- if .Values.execution.persistence.enabled }}
- name: execution-data
mountPath: /data
mountPath: {{ .Values.execution.persistence.mountPath }}
{{- end }}
{{- with .Values.execution.volumeMounts }}
{{- toYaml . | nindent 12 }}
Expand Down
2 changes: 2 additions & 0 deletions charts/rpc-node/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ execution:
- ReadWriteOnce
size: 10Gi
annotations: {}
mountPath: /data

securityContext: {}
# capabilities:
Expand Down Expand Up @@ -174,6 +175,7 @@ consensus:
- ReadWriteOnce
size: 10Gi
annotations: {}
mountPath: /data

securityContext: {}
# capabilities:
Expand Down

0 comments on commit 181025a

Please sign in to comment.