Skip to content

Commit

Permalink
interbtc: apply only available keys
Browse files Browse the repository at this point in the history
  • Loading branch information
ns212 committed Sep 22, 2021
1 parent 17654fb commit d9d80da
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/polkabtc-parachain/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: Helm chart for PolkaBTC

type: application
apiVersion: v2
version: 0.2.25
version: 0.2.26
appVersion: 2.0.0

home: https://interlay.io/
Expand Down
4 changes: 2 additions & 2 deletions charts/polkabtc-parachain/templates/insert-keys-job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ spec:
[ -f /etc/activation-keys/aura.json ] && curl --fail -s \
-H "Content-Type:application/json;charset=utf-8" \
-d @/etc/activation-keys/aura.json \
http://{{ include "polkabtc.fullname" . }}-rpc:9933;
http://{{ include "polkabtc.fullname" . }}-rpc:9933 || echo 'Skipping aura.json';
[ -f /etc/activation-keys/gran.json ] && curl --fail -s \
-H "Content-Type:application/json;charset=utf-8" \
-d @/etc/activation-keys/gran.json \
http://{{ include "polkabtc.fullname" . }}-rpc:9933
http://{{ include "polkabtc.fullname" . }}-rpc:9933 || echo 'Skipping gran.json'
volumeMounts:
- name: activation-keys
mountPath: "/etc/activation-keys"
Expand Down

0 comments on commit d9d80da

Please sign in to comment.