Skip to content

Commit

Permalink
fix(daml-on-sawtooth): fix command line
Browse files Browse the repository at this point in the history
Signed-off-by: Kevin O'Donnell <kevin@blockchaintp.com>
  • Loading branch information
scealiontach committed Dec 12, 2020
1 parent a5c5429 commit 5b0097a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/daml-on-sawtooth/Chart.yaml
Expand Up @@ -14,7 +14,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.
version: 0.1.36
version: 0.1.37

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application.
Expand Down
5 changes: 3 additions & 2 deletions charts/daml-on-sawtooth/templates/validator-set.yaml
Expand Up @@ -346,14 +346,15 @@ spec:
{{- if .Values.sawtooth.opentsdb.enabled }}
--opentsdb-db {{.Values.sawtooth.opentsdb.db}} \
--opentsdb-url {{ .Values.sawtooth.opentsdb.url}}
{{- end }};
{{- end }}

exit_code=$?
SIGNALS_DIR=/var/run/sawtooth
export EXIT_SIGNALS="{{.Values.sawtooth.livenessProbe.exitSignals}}"
for signal in ${EXIT_SIGNALS}; do
touch "${SIGNALS_DIR}/$signal"
done
exit $?
exit $exit_code
volumeMounts:
- mountPath: /var/run/sawtooth
name: sawtooth-signals
Expand Down

0 comments on commit 5b0097a

Please sign in to comment.