Skip to content

Commit

Permalink
mount path should be the directory, not the filename (#27)
Browse files Browse the repository at this point in the history
Signed-off-by: Sarah Funkhouser <11655165+sfunkhouser@users.noreply.github.com>
  • Loading branch information
sfunkhouser authored Sep 29, 2023
1 parent 4640ba7 commit 3fbf235
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions chart/node-resolver/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ spec:
- serve
{{- if .Values.schemaFile.override }}
- --schema
- /schema.graphql
- /app/schema.graphql
{{- end}}
ports:
- name: http
Expand All @@ -76,7 +76,8 @@ spec:
volumeMounts:
{{- if .Values.schemaFile.override }}
- name: schema-config-volume
mountPath: /schema.graphql
mountPath: /app/
readOnly: true
{{- end }}
resources:
{{- toYaml .Values.api.resources | nindent 12 }}
Expand Down

0 comments on commit 3fbf235

Please sign in to comment.