Skip to content

Commit

Permalink
Quorum node (#32)
Browse files Browse the repository at this point in the history
* migrated quorum-node chart

* added quorum config paths

* migrated from files to value files

* fixed blank lines

* fixed comments

* fixed annotations in values.yaml

* fixed annotations in values.yaml

* update chart version

* fixed deployment reference in the post upgrade step
  • Loading branch information
bmastahac authored Apr 14, 2022
1 parent fe1b646 commit d17330e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/quorum-node/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,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.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.2.0
version: 0.2.1

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ spec:
args:
- "-cx"
- "
kubectl scale --replicas=0 deployment/{{ include "quorumNode.Identifier" . }}-deployment;
kubectl scale --replicas=0 deployment/{{ include "quorumNode.fullname" . }}-deployment;
sleep 120;
kubectl scale --replicas=1 deployment/{{ include "quorumNode.Identifier" . }}-deployment;
kubectl scale --replicas=1 deployment/{{ include "quorumNode.fullname" . }}-deployment;
sleep 120;
kubectl exec -it deploy/{{ include "quorumNode.Identifier" . }}-deployment -- /etc/quorum/qdata/node-management/ibft_propose_all.sh;
kubectl exec -it deploy/{{ include "quorumNode.fullname" . }}-deployment -- /etc/quorum/qdata/node-management/ibft_propose_all.sh;
"
restartPolicy: Never
---
Expand Down

0 comments on commit d17330e

Please sign in to comment.