mirror of
https://github.com/datahaven-xyz/datahaven
synced 2026-05-24 09:50:01 +00:00
Stagenet deployment fixes (#151)
Small fixes following the recent Stagenet deployment.
This commit is contained in:
parent
4bdb1d1821
commit
b2c1f3f250
2 changed files with 6 additions and 1 deletions
|
|
@ -15,6 +15,9 @@ config:
|
|||
|
||||
existingSecretName: "dh-beefy-relay-ethereum-key"
|
||||
|
||||
relayData:
|
||||
storagePath: null
|
||||
|
||||
extraArgs:
|
||||
[
|
||||
"run",
|
||||
|
|
|
|||
|
|
@ -43,7 +43,9 @@ export const deployDataHavenSolochain = async (
|
|||
|
||||
invariant(options.datahavenImageTag, "❌ DataHaven image tag not defined");
|
||||
|
||||
await checkTagExists(options.datahavenImageTag);
|
||||
if (!options.dockerUsername) {
|
||||
await checkTagExists(options.datahavenImageTag);
|
||||
}
|
||||
|
||||
// Validate custom chainspec file if provided
|
||||
if (options.chainspec) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue