diff --git a/deploy/tx-tracker/env/production.env b/deploy/tx-tracker/env/production.env index 36860f8d..eb13b62c 100644 --- a/deploy/tx-tracker/env/production.env +++ b/deploy/tx-tracker/env/production.env @@ -1,4 +1,4 @@ -ENVIRONMENT=production +ENVIRONMENT=production-mainnet NAMESPACE=wormscan NAME=wormscan-tx-tracker REPLICAS=2 diff --git a/deploy/tx-tracker/env/staging.env b/deploy/tx-tracker/env/staging.env index a37ce6aa..6dc913bd 100644 --- a/deploy/tx-tracker/env/staging.env +++ b/deploy/tx-tracker/env/staging.env @@ -1,4 +1,4 @@ -ENVIRONMENT=staging +ENVIRONMENT=staging-mainnet NAMESPACE=wormscan NAME=wormscan-tx-tracker REPLICAS=2 diff --git a/deploy/tx-tracker/env/test.env b/deploy/tx-tracker/env/test.env index a2c7ad60..6fc97422 100644 --- a/deploy/tx-tracker/env/test.env +++ b/deploy/tx-tracker/env/test.env @@ -1,4 +1,4 @@ -ENVIRONMENT=test +ENVIRONMENT=staging-testnet NAMESPACE=wormscan-testnet NAME=wormscan-tx-tracker REPLICAS=1 diff --git a/deploy/tx-tracker/tx-tracker-service.yaml b/deploy/tx-tracker/tx-tracker-service.yaml index d982c9f2..e3cb8390 100644 --- a/deploy/tx-tracker/tx-tracker-service.yaml +++ b/deploy/tx-tracker/tx-tracker-service.yaml @@ -40,8 +40,8 @@ spec: path: /api/health port: 8000 env: - - name: ENV - value: "PRODUCTION" + - name: ENVIRONMENT + value: {{ .ENVIRONMENT }} - name: MONITORING_PORT value: "8000" - name: LOG_LEVEL @@ -82,6 +82,10 @@ spec: value: {{ .AVALANCHE_BASE_URL }} - name: AVALANCHE_REQUESTS_PER_MINUTE value: "{{ .AVALANCHE_REQUESTS_PER_MINUTE }}" + - name: BASE_BASE_URL + value: {{ .BASE_BASE_URL }} + - name: BASE_REQUESTS_PER_MINUTE + value: "{{ .BASE_REQUESTS_PER_MINUTE }}" - name: BSC_BASE_URL value: {{ .BSC_BASE_URL }} - name: BSC_REQUESTS_PER_MINUTE