-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into BCI-2702-Apply-LimitMultiplier-to-gas-lim…
…it-in-all-gas-estimators
- Loading branch information
Showing
45 changed files
with
1,494 additions
and
286 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"chainlink": patch | ||
--- | ||
|
||
Dispatcher service for external peering |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"chainlink": patch | ||
--- | ||
|
||
change auto 2.3 flat fees from link to USD |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,6 +55,49 @@ jobs: | |
dockerhub_username: ${{ secrets.DOCKERHUB_READONLY_USERNAME }} | ||
dockerhub_password: ${{ secrets.DOCKERHUB_READONLY_PASSWORD }} | ||
git-commit-sha: ${{ steps.git-ref.outputs.checked-out || github.sha }} | ||
|
||
- name: Setup GAP | ||
# Don't run for plugins. | ||
if: matrix.image.name == '' | ||
uses: smartcontractkit/.github/actions/setup-gap@1bc7ce34fa81fffcb4a6eb0e4e12e59d94d0fc8f # [email protected] | ||
with: | ||
aws-region: ${{ secrets.AWS_REGION }} | ||
aws-role-arn: ${{ secrets.AWS_OIDC_IAM_ROLE_ARN }} | ||
api-gateway-host: ${{ secrets.AWS_API_GW_HOST_K8S_SAND }} | ||
use-k8s: "true" | ||
k8s-cluster-name: ${{ secrets.AWS_EKS_CLUSTER_NAME_SAND }} | ||
use-private-ecr-registry: true | ||
ecr-private-registry: ${{ secrets.AWS_ACCOUNT_ID_PROD }} | ||
metrics-job-name: push-chainlink-develop ${{ matrix.image.name }} | ||
gc-host: ${{ secrets.GRAFANA_INTERNAL_HOST }} | ||
gc-basic-auth: ${{ secrets.GRAFANA_INTERNAL_BASIC_AUTH }} | ||
gc-org-id: ${{ secrets.GRAFANA_INTERNAL_TENANT_ID }} | ||
|
||
# A mutable image tag is used for these CRIBs and it was just built/published | ||
# from this workflow. The deployment has an `imagePullPolicy: Always` set, so | ||
# we need to restart the deployments to pick up the new image. | ||
- name: Restart K8s Deployments for CRIBs | ||
# Don't run for plugins. | ||
if: matrix.image.name == '' | ||
shell: bash | ||
run: | | ||
set -euo pipefail | ||
# Removes the "smartcontractkit/" (org name) prefix. | ||
REPO_NAME_ONLY="${GITHUB_REPOSITORY##*/}" | ||
K8S_NAMESPACE="crib-${REPO_NAME_ONLY}-develop" | ||
deployment_node_names=$(kubectl --namespace "${K8S_NAMESPACE}" \ | ||
get deployments \ | ||
-l "app=${K8S_NAMESPACE}" \ | ||
-o custom-columns=:metadata.name --no-headers) | ||
IFS=$'\n' read -r -d '' -a deployment_names_arr <<< "$deployment_node_names" || : | ||
for name in "${deployment_names_arr[@]}"; do | ||
echo "Restarting deployment: $name" | ||
kubectl --namespace "${K8S_NAMESPACE}" \ | ||
rollout restart "deployment/${name}" | ||
done | ||
- name: Collect Metrics | ||
if: always() | ||
id: collect-gha-metrics | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@chainlink/contracts": patch | ||
--- | ||
|
||
change auto 2.3 flat fees from link to USD |
4 changes: 2 additions & 2 deletions
4
contracts/src/v0.8/automation/dev/interfaces/v2_3/IAutomationRegistryMaster2_3.sol
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.