Skip to content

Commit

Permalink
Deploy Kathy on v2 (#3039)
Browse files Browse the repository at this point in the history
### Description

Deploy kathy

### Drive-by changes

<!--
Are there any minor or drive-by changes also included?
-->

### Related issues

<!--
- Fixes #[issue number here]
-->

### Backward compatibility

<!--
Are these changes backward compatible? Are there any infrastructure
implications, e.g. changes that would prohibit deploying older commits
using this infra tooling?

Yes/No
-->

### Testing

<!--
What kind of testing have these changes undergone?

None/Manual/Unit Tests
-->
  • Loading branch information
tkporter authored Dec 7, 2023
1 parent 4591df7 commit 1aeecaf
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions typescript/infra/config/environments/mainnet2/helloworld.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const hyperlane: HelloWorldConfig = {
kathy: {
docker: {
repo: 'gcr.io/abacus-labs-dev/hyperlane-monorepo',
tag: '66066f9-20231128-113426',
tag: '4591df7-20231207-132521',
},
chainsToSkip: [],
runEnv: environment,
Expand All @@ -34,7 +34,7 @@ export const releaseCandidate: HelloWorldConfig = {
kathy: {
docker: {
repo: 'gcr.io/abacus-labs-dev/hyperlane-monorepo',
tag: '66066f9-20231128-113426',
tag: '4591df7-20231207-132521',
},
chainsToSkip: [],
runEnv: environment,
Expand Down
4 changes: 2 additions & 2 deletions typescript/infra/config/environments/testnet3/helloworld.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const hyperlaneHelloworld: HelloWorldConfig = {
kathy: {
docker: {
repo: 'gcr.io/abacus-labs-dev/hyperlane-monorepo',
tag: '66066f9-20231128-113426',
tag: '4591df7-20231207-132521',
},
chainsToSkip: [],
runEnv: environment,
Expand All @@ -33,7 +33,7 @@ export const releaseCandidateHelloworld: HelloWorldConfig = {
kathy: {
docker: {
repo: 'gcr.io/abacus-labs-dev/hyperlane-monorepo',
tag: '66066f9-20231128-113426',
tag: '4591df7-20231207-132521',
},
chainsToSkip: [],
runEnv: environment,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ spec:
* The templating of external-secrets will use the data section below to know how
* to replace the correct value in the created secret.
*/}}
{{- range .Values.hyperlane.chains.relayer }}
{{- range .Values.hyperlane.chains }}
{{- if or (eq $.Values.hyperlane.connectionType "httpQuorum") (eq $.Values.hyperlane.connectionType "httpFallback") }}
GCP_SECRET_OVERRIDE_{{ $.Values.hyperlane.runEnv | upper }}_RPC_ENDPOINTS_{{ . | upper }}: {{ printf "'{{ .%s_rpcs | toString }}'" . }}
{{- else }}
Expand All @@ -50,7 +50,7 @@ spec:
* For each network, load the secret in GCP secret manager with the form: environment-rpc-endpoint-network,
* and associate it with the secret key networkname_rpc.
*/}}
{{- range .Values.hyperlane.chains.relayer }}
{{- range .Values.hyperlane.chains }}
{{- if or (eq $.Values.hyperlane.connectionType "httpQuorum") (eq $.Values.hyperlane.connectionType "httpFallback") }}
- secretKey: {{ printf "%s_rpcs" . }}
remoteRef:
Expand Down
2 changes: 1 addition & 1 deletion typescript/infra/src/helloworld/kathy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ function getHelloworldKathyHelmValues(
// the list of chains that kathy will send to. Because Kathy
// will fetch secrets for all chains, regardless of skipping them or
// not, we pass in all chains
chains: agentConfig.contextChainNames,
chains: agentConfig.environmentChainNames,
aws: agentConfig.aws !== undefined,

chainsToSkip: kathyConfig.chainsToSkip,
Expand Down

0 comments on commit 1aeecaf

Please sign in to comment.