diff --git a/.github/workflows/build-and-deploy.yaml b/.github/workflows/build-and-deploy.yaml index 1e650e7..fc97630 100644 --- a/.github/workflows/build-and-deploy.yaml +++ b/.github/workflows/build-and-deploy.yaml @@ -2,6 +2,7 @@ on: push: branches: - master + - remove-gasstation-api-key name: Build Docker image and deploy it to Kubernetes cluster diff --git a/deploy/production/cage-keeper.yaml b/deploy/production/cage-keeper.yaml index a986a05..7ea3311 100644 --- a/deploy/production/cage-keeper.yaml +++ b/deploy/production/cage-keeper.yaml @@ -28,10 +28,6 @@ env: type: parameterStore name: eth-from-addr-mainnet parameter_name: /eks/maker-prod/cage-keeper/eth-from-addr-mainnet - ETH_GASSTATION_API_KEY: - type: parameterStore - name: eth-gasstation-api-key - parameter_name: /eks/maker-prod/cage-keeper/eth-gasstation-api-key SECRET_KEY: type: parameterStore name: secret-key-mainnet diff --git a/run-cage-keeper.sh b/run-cage-keeper.sh index 68cfc4e..a06cc46 100755 --- a/run-cage-keeper.sh +++ b/run-cage-keeper.sh @@ -41,4 +41,5 @@ exec $dir/bin/cage-keeper \ --eth-from "${ETH_FROM_ADDRESS}" \ --eth-key "${ETH_ACCOUNT_KEY}" \ --vulcanize-endpoint "${VULCANIZE_URL}" \ - --vulcanize-key "${VULCANIZE_KEY}" + --vulcanize-key "${VULCANIZE_KEY}" \ + --ethgasstation-api-key "${ETH_GASSTATION_API_KEY}"