Skip to content

Commit

Permalink
new images
Browse files Browse the repository at this point in the history
  • Loading branch information
tkporter committed Oct 30, 2023
1 parent d33b1eb commit 30dd9eb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 11 deletions.
6 changes: 3 additions & 3 deletions typescript/infra/config/environments/mainnet3/agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ const hyperlane: RootAgentConfig = {
},
chainDockerOverrides: {
[chainMetadata.neutron.name]: {
tag: '31822d0-20231030-003417',
tag: 'dd370cb-20231030-120127',
},
[chainMetadata.mantapacific.name]: {
tag: '31822d0-20231030-003417',
tag: 'dd370cb-20231030-120127',
},
},
rpcConsensusType: RpcConsensusType.Quorum,
Expand Down Expand Up @@ -111,7 +111,7 @@ const neutron: RootAgentConfig = {
rpcConsensusType: RpcConsensusType.Fallback,
docker: {
repo,
tag: '31822d0-20231030-003417',
tag: 'dd370cb-20231030-120127',
},
gasPaymentEnforcement,
},
Expand Down
4 changes: 2 additions & 2 deletions typescript/infra/config/environments/testnet4/agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ const hyperlane: RootAgentConfig = {
},
chainDockerOverrides: {
neutrontestnet: {
tag: '31822d0-20231030-003417',
tag: 'dd370cb-20231030-120127',
},
},
chains: validatorChainConfig(Contexts.Hyperlane),
Expand Down Expand Up @@ -125,7 +125,7 @@ const neutron: RootAgentConfig = {
rpcConsensusType: RpcConsensusType.Fallback,
docker: {
repo,
tag: '31822d0-20231030-003417',
tag: 'dd370cb-20231030-120127',
},
gasPaymentEnforcement,
transactionGasLimit: 750000,
Expand Down
7 changes: 1 addition & 6 deletions typescript/infra/scripts/agents/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ export class AgentCli {
agentConfig!: RootAgentConfig;
initialized = false;
dryRun = false;
// Whether to run deployments in parallel
parallel = false;

public async runHelmCommand(command: HelmCommand) {
await this.init();
Expand Down Expand Up @@ -67,17 +65,14 @@ export class AgentCli {
if (this.initialized) return;
const argv = await withAgentRole(withContext(getArgs()))
.describe('dry-run', 'Run through the steps without making any changes')
.boolean('dry-run')
.describe('parallel', 'Whether to run deployments in parallel')
.boolean('parallel').argv;
.boolean('dry-run').argv;

const { envConfig, agentConfig } = await getConfigsBasedOnArgs(argv);
await assertCorrectKubeContext(envConfig);
this.roles = argv.role;
this.envConfig = envConfig;
this.agentConfig = agentConfig;
this.dryRun = argv.dryRun || false;
this.parallel = argv.parallel || false;
this.initialized = true;
}
}

0 comments on commit 30dd9eb

Please sign in to comment.