Skip to content
This repository has been archived by the owner on Jan 19, 2022. It is now read-only.

Commit

Permalink
feat: support to disable tessera
Browse files Browse the repository at this point in the history
  • Loading branch information
Niclas Mietz committed Sep 17, 2021
1 parent fff0cf1 commit a257bb3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion quorum-config
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def set_node_template_vars(values)
@Node_Key_Dir = values["Key_Dir"]
@Consensus = values["quorum"]["quorum"]["consensus"]
@Tm_Version = values["quorum"]["tm"]["Tm_Version"]
@Tm_Name = values["quorum"]["tm"]["Name"]
@Tm_Name = values["quorum"]["tm"].has_key('Name') ? "none" : values["quorum"]["tm"]["Name"]
@Quorum_Version = values["quorum"]["quorum"]["Quorum_Version"]

@Geth_Network_Id = @Chain_Id
Expand Down
2 changes: 1 addition & 1 deletion templates/k8s/quorum-deployment.yaml.erb
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ spec:
--verbosity=<%= @Geth_Verbosity%> \
--othernodes=https://$QUORUM_NODE1_SERVICE_HOST:<%= @Tm_Port %>/ \";
/usr/local/bin/constellation-node $args 2>&1 | tee -a $QUORUM_HOME/logs/tm.log; "
<%- else -%>
<%- elsif @Tm_Name != "constellation" && @Tm_Name != "none" -%>
- name: tessera
<%- if @TM_Docker_Repo_Full != "" -%>
image: <%= @TM_Docker_Repo_Full %>
Expand Down

0 comments on commit a257bb3

Please sign in to comment.