Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions charts/nuts-node/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ of. However, we do need to expose the `http` and `gRPC` ports. This is extracted
| `http.external.address` (must align with `service.external.internalPort`) | :8080 |
| `http.internal.address` (must align with `service.internal.internalPort`) | :8081 |
| `network.grpcaddr` | :5555 |
| `extraEnv` | not set |

For the `nuts-node` port, the `service.internalPort` can simply be used. For gRPC, the Helm chart filters out all digits
after the last `:` character. If not set, defaults will be used.
Expand Down
3 changes: 3 additions & 0 deletions charts/nuts-node/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ spec:
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
env:
{{- with .Values.extraEnv }}
{{ toYaml . | nindent 12 }}
{{- end }}
- name: NUTS_CONFIGFILE
value: "/opt/nuts/nuts.yaml"
{{- if .Values.storage}}
Expand Down
Loading