Skip to content

Commit

Permalink
Merge pull request obsidiandynamics#149 from mothership/fix-lint
Browse files Browse the repository at this point in the history
add missing default key in values
  • Loading branch information
ekoutanov authored Jun 13, 2020
2 parents 652f5b2 + 4bf2e2a commit 3c3521b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion chart/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ spec:
- name: SERVER_PORT
value: "{{ .Values.server.port }}"
- name: CMD_ARGS
{{- if .Values.mountProtoDesc }}
{{- if .Values.mountProtoDesc.enabled }}
value: "--message.format=PROTOBUF --protobufdesc.directory=/protodesc/ {{ .Values.cmdArgs }}"
{{- else }}
value: "{{ .Values.cmdArgs }}"
Expand Down
4 changes: 4 additions & 0 deletions chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,7 @@ tolerations: []
affinity: {}

podAnnotations: {}

mountProtoDesc:
enabled: false
hostPath:

0 comments on commit 3c3521b

Please sign in to comment.