Skip to content

Commit

Permalink
[rpc-node] Allow configmap mount with exec permissions to support ent…
Browse files Browse the repository at this point in the history
…rypoint mounts
  • Loading branch information
nzenchik committed Aug 6, 2024
1 parent 03d5ef3 commit db0ff01
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
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.4.0
version: 0.4.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
1 change: 1 addition & 0 deletions charts/rpc-node/templates/consensus-stateful-set.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ spec:
{{- if .Values.consensus.configFiles.enabled }}
- name: configfiles
mountPath: {{ .Values.consensus.configFiles.mountPath }}
defaultMode: 0777
{{- end }}
{{- with .Values.consensus.volumeMounts }}
{{- toYaml . | nindent 12 }}
Expand Down
1 change: 1 addition & 0 deletions charts/rpc-node/templates/execution-stateful-set.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ spec:
- name: configfiles
configMap:
name: {{ include "rpc-node.fullname" . }}-execution-files
defaultMode: 0777
{{- end }}
{{- with .Values.execution.volumes }}
{{- toYaml . | nindent 8 }}
Expand Down

0 comments on commit db0ff01

Please sign in to comment.