-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: update validator chart * chore: change WATCHDOG_ETH_FROM * chore: remove unused env var * chore: go back to 0x0 address * chore: WATCHDOG_ETH_FROM mainnet * chore: WATCHDOG_ETH_FROM mainnet * chore: WATCHDOG_ETH_FROM testnet * chore: comment CFG_ENVIRONMENT * chore: use our rpc url * chore: public rpc * add sleep test to allow some graceful start up before running helm test * increase sleep --------- Co-authored-by: Wesley Charles Blake <wesley@chroniclelabs.org>
- Loading branch information
1 parent
1c3f353
commit 78f374a
Showing
8 changed files
with
27 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
apiVersion: v1 | ||
kind: Pod | ||
metadata: | ||
name: "{{ include "validator.fullname" . }}-sleep" | ||
labels: | ||
{{- include "validator.labels" . | nindent 4 }} | ||
annotations: | ||
"helm.sh/hook-weight": "1" | ||
"helm.sh/hook": test | ||
spec: | ||
containers: | ||
- name: sleep | ||
image: busybox | ||
command: ['sleep'] | ||
args: | ||
- '30' | ||
restartPolicy: Never |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters