Support diffing against cluster state (#120)
* Support diffing against cluster state * Upgrade dev agent docker image * Add metrics ENV var * lintpull/125/head
parent
0cd3c5e4e8
commit
42a0d8fb11
@ -0,0 +1,16 @@ |
||||
import { HelmCommand, runAgentHelmCommand } from '../../src/agents'; |
||||
import { chains } from '../../config/environments/dev/chains'; |
||||
import { agentConfig } from '../../config/environments/dev/agent'; |
||||
|
||||
async function deploy() { |
||||
for (const chain of chains) { |
||||
await runAgentHelmCommand( |
||||
HelmCommand.UpgradeDiff, |
||||
agentConfig, |
||||
chain, |
||||
chains, |
||||
); |
||||
} |
||||
} |
||||
|
||||
deploy().then(console.log).catch(console.error); |
@ -0,0 +1,16 @@ |
||||
import { HelmCommand, runAgentHelmCommand } from '../../src/agents'; |
||||
import { chains } from '../../config/environments/testnet/chains'; |
||||
import { agentConfig } from '../../config/environments/testnet/agent'; |
||||
|
||||
async function deploy() { |
||||
for (const chain of chains) { |
||||
await runAgentHelmCommand( |
||||
HelmCommand.UpgradeDiff, |
||||
agentConfig, |
||||
chain, |
||||
chains, |
||||
); |
||||
} |
||||
} |
||||
|
||||
deploy().then(console.log).catch(console.error); |
Loading…
Reference in new issue