Skip to content
This repository was archived by the owner on Feb 24, 2025. It is now read-only.

Commit 1863b52

Browse files
authored
Merge branch 'master' into carterqw2/call-tracer
2 parents ab68913 + b645295 commit 1863b52

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

.github/workflows/helm_deploy_call.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: 'ZZDeploy a helm chart. Generic workflow'
2+
name: 'Deploy a helm chart. Generic workflow'
33

44
on:
55
workflow_call:
@@ -41,7 +41,7 @@ env:
4141

4242
jobs:
4343
helmfile:
44-
name: Helm Deploy
44+
name: Auth, Setup + Run helmfile ${{ inputs.action }}
4545
runs-on: ubuntu-latest
4646
permissions:
4747
id-token: write

.github/workflows/helm_deploy_dispatch.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: 'Deploy Helm Chart'
3-
run-name: 'Helm ${{ github.event.inputs.action }} on ${{ github.event.inputs.deployment }} triggered by @${{ github.actor }}'
3+
run-name: 'helmfile ${{ github.event.inputs.action }} on ${{ github.event.inputs.deployment }} - @${{ github.actor }}'
44

55
on:
66
workflow_dispatch:
@@ -88,9 +88,10 @@ jobs:
8888
echo "image-commit=" >> "$GITHUB_OUTPUT"
8989
fi
9090
91-
helm-deploy:
91+
helmfile-run:
9292
uses: ./.github/workflows/helm_deploy_call.yml
9393
needs: set-config
94+
name: "helmfile ${{ github.event.inputs.action }}"
9495
with:
9596
helmfile: helm/helmfiles/${{ github.event.inputs.deployment }}.yaml
9697
action: ${{ github.event.inputs.action }}

apps/block_scout_web/lib/block_scout_web/templates/address/overview.html.eex

+1-1
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@
239239
</dd>
240240
</dl>
241241
<% end %>
242-
<%= if not is_nil(@celo_epoch.voting_sum) and not is_nil(@address.celo_account) and (@address.celo_account.account_type == "validator" or @address.celo_account.account_type == "group") do %>
242+
<%= if not is_nil(@celo_epoch.voting_sum) and not is_nil(@celo_epoch.validator_or_group_sum) and not is_nil(@address.celo_account) and (@address.celo_account.account_type == "validator" or @address.celo_account.account_type == "group") do %>
243243
<!-- Validator / Group Rewards -->
244244
<dl class="row">
245245
<dt class="col-sm-4 col-md-4 col-lg-3 text-muted">

helm/values/values-rc1staging-blockscout.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@
22
blockscout:
33
eventStream:
44
replicas: 1
5-
beanstalkdHost: "rc1staging-governance-notifications-beanstalkd.event-notifications.svc.cluster.local"
6-
5+
enabled: true
6+
beanstalkdPort: "11300"
7+
beanstalkdHost: "rc1staging-webhooks-beanstalkd.webhooks.svc.cluster.local"
8+
beanstalkdTube: "incoming"
79
indexer:
810
db:
911
connectionName: celo-testnet-production:us-west1:rc1staging
@@ -17,8 +19,6 @@ blockscout:
1719
requests:
1820
memory: 12Gi
1921
cpu: 5
20-
enableEventStream: true
21-
beanstalkdPort: "11300"
2222
api:
2323
autoscaling:
2424
maxReplicas: 2

0 commit comments

Comments
 (0)