Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Quorum node #32

Merged
merged 13 commits into from
Apr 14, 2022
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