Merge pull request #1327 from edenia/dev #76
Workflow file for this run
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
name: Build images for WAX testnet environment | |
on: | |
push: | |
tags: | |
- wax-testnet-v* | |
jobs: | |
create-wax-image: | |
runs-on: ubuntu-latest | |
environment: wax-testnet | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
- name: Log in to the Container registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: 'step-log' | |
run: | | |
echo "github.ref: ${{github.ref}}" | |
- name: Build new images and push | |
run: | | |
make \ | |
build-docker-images \ | |
push-docker-images | |
env: | |
DOCKER_USERNAME: ${{ secrets.DOCKER_HUB_USER }} | |
DOCKER_PASSWORD: ${{ secrets.DOCKER_HUB_PASSWORD }} | |
# webapp | |
PORT: '80' | |
REACT_APP_TITLE: 'WAX Testnet Network Dashboard' | |
REACT_APP_VERSION: ${{github.ref}} | |
REACT_APP_DEFAULT_PRODUCER_LOGO: 'https://antelope.tools/images/wax.jpg' | |
REACT_APP_FOOTER_LINKS: '[{ "text": "WAX Website", "src": "https://www.wax.io/" },{ "text": "WAX Block Explorer", "src": "https://wax-test.bloks.io/" },{"text": "Developer Guidelines","src": "https://developer.wax.io/"},{"text": "WAX Network Monitor","src": "https://antelope.tools"}]' | |
REACT_APP_EOS_RATE_LINK: '' | |
REACT_APP_USE_REWARDS: 'true' | |
REACT_APP_USE_VOTES: 'true' | |
REACT_APP_HASURA_URL: 'https://graphql-wax-testnet.antelope.tools/v1/graphql' | |
REACT_APP_EOS_API_NETWORK_NAME: 'wax-testnet' | |
REACT_APP_EOS_API_NETWORK_LABEL: 'WAX Testnet' | |
REACT_APP_EOS_API_NETWORK_LOGO: 'https://antelope.tools/images/wax.jpg' | |
REACT_APP_EOS_API_HOSTS: '[\"api.waxtest.alohaeos.com\",\"waxtest.api.eosnation.io\",\"waxtest.eoseoul.io\"]' | |
REACT_APP_EOS_API_PORT: '443' | |
REACT_APP_EOS_API_PROTOCOL: 'https' | |
REACT_APP_EOS_CHAIN_ID: 'f16b1833c747c43682f4386fca9cbb327929334a762755ebec17f6f23c9b8a12' | |
REACT_APP_EOS_USE_BP_JSON_ON_CHAIN: 'false' | |
REACT_APP_EOS_BP_JSON_ON_CHAIN_CONTRACT: 'producerjson' | |
REACT_APP_EOS_BP_JSON_ON_CHAIN_TABLE: 'producerjson' | |
REACT_APP_EOS_BP_JSON_ON_CHAIN_SCOPE: 'producerjson' | |
REACT_APP_SYNC_TOLERANCE_INTERVAL: 180000 | |
REACT_APP_TOKEN_SYMBOL: 'WAX' | |
REACT_APP_NETWORK_URL: '[{"label":"EOS","value":"https://eos.antelope.tools","mainnet":true,"icon":"eos","order":5},{"label":"XPR Network","value":"https://xpr.antelope.tools","mainnet":true,"icon":"xpr","order":3},{"label":"WAX","value":"https://wax.antelope.tools","mainnet":true,"icon":"wax","order":4},{"label":"Telos","value":"https://telos.antelope.tools","mainnet":true,"icon":"telos","order":1},{"label":"Libre","value":"https://libre.antelope.tools","mainnet":true,"icon":"libre","order":2},{"label":"LACChain EOSIO","value":"https://lacchain.antelope.tools","mainnet":true,"icon":"lacchain","order":6},{"label":"Jungle4 Testnet","value":"https://jungle.antelope.tools","mainnet":false,"icon":"jungle","order":5},{"label":"XPR Testnet","value":"https://xpr-testnet.antelope.tools","mainnet":false,"icon":"xpr","order":3},{"label":"WAX Testnet","value":"https://wax-testnet.antelope.tools","mainnet":false,"icon":"wax","order":4},{"label":"Telos Testnet","value":"https://telos-testnet.antelope.tools","mainnet":false,"icon":"telos","order":1},{"label":"Libre Testnet","value":"https://libre-testnet.antelope.tools","mainnet":false,"icon":"libre","order":2},{"label":"Ultra Testnet","value":"https://ultra-testnet.antelope.tools","mainnet":false,"icon":"ultra","order":6}]' | |
REACT_APP_DISABLED_MENU_ITEMS: '["/missed-blocks", "/cpu-benchmark","/block-distribution","/stress-test","/evm","/evm-rpc-endpoints"]' | |
REACT_APP_BLOCK_EXPLORER_URL: 'https://wax-test.bloks.io/transaction/(transaction)' | |
REACT_APP_STATE_HISTORY_ENABLED=: 'false' | |
REACT_APP_GOOGLE_ANALITIC_PAGE_ID: 'G-E6Y0EC9FT8' | |
REACT_APP_PUBLIC_RE_CAPTCHA_KEY: ${{ secrets.REACT_APP_PUBLIC_RE_CAPTCHA_KEY }} | |
- name: Build and deploy kubernetes files | |
id: build_kubernetes_files | |
run: | | |
make \ | |
build-kubernetes | |
env: | |
# general | |
NAMESPACE: wax-testnet-dashboard | |
INGRESS_HOST: wax-testnet.antelope.tools | |
INGRESS_GRAPHQL_HOST: graphql-wax-testnet.antelope.tools | |
# webapp | |
REACT_APP_EOS_API_NETWORK_NAME: wax-testnet | |
# postgres | |
POSTGRES_USER: ${{ secrets.POSTGRES_USER }} | |
POSTGRES_PASSWORD: ${{ secrets.POSTGRES_PASSWORD }} | |
POSTGRES_DB: ${{ secrets.POSTGRES_DB }} | |
POSTGRES_DATA: ${{ secrets.POSTGRES_DATA }} | |
# hapi | |
HAPI_EOS_API_NETWORK_NAME: wax | |
HAPI_EOS_API_ENDPOINTS: '["https://api.waxtest.alohaeos.com","https://waxtest.api.eosnation.io","https://waxtest.eoseoul.io"]' | |
HAPI_EOS_API_CHAIN_ID: f16b1833c747c43682f4386fca9cbb327929334a762755ebec17f6f23c9b8a12 | |
HAPI_EOS_BASE_ACCOUNT: ${{ secrets.HAPI_EOS_BASE_ACCOUNT }} | |
HAPI_EOS_BASE_ACCOUNT_PASSWORD: ${{ secrets.HAPI_EOS_BASE_ACCOUNT_PASSWORD }} | |
HAPI_EOS_MECHANICS_ACCOUNT: ${{ secrets.HAPI_EOS_MECHANICS_ACCOUNT }} | |
HAPI_EOS_MECHANICS_PASSWORD: ${{ secrets.HAPI_EOS_MECHANICS_PASSWORD }} | |
HAPI_EOS_WALLET_URL: http://dashboard-wallet:8888 | |
HAPI_EOS_BP_JSON_ON_CHAIN: 'false' | |
HAPI_EOS_BP_JSON_ON_CHAIN_CONTRACT: producerjson | |
HAPI_EOS_BP_JSON_ON_CHAIN_TABLE: producerjson | |
HAPI_EOS_BP_JSON_ON_CHAIN_SCOPE: producerjson | |
HAPI_HASURA_URL: 'http://dashboard-hasura:8080/v1/graphql' | |
HAPI_HASURA_ADMIN_SECRET: ${{ secrets.HAPI_HASURA_ADMIN_SECRET }} | |
HAPI_SERVER_PORT: '9090' | |
HAPI_SERVER_ADDRESS: '0.0.0.0' | |
HAPI_DATABASE_URL: ${{ secrets.HAPI_DATABASE_URL }} | |
HAPI_SYNC_PRODUCERS_INTERVAL: '14400' | |
HAPI_SYNC_PRODUCER_CPU_INTERVAL: '6' | |
HAPI_SYNC_PRODUCER_INFO_INTERVAL: '1' | |
HAPI_SYNC_SCHEDULE_HISTORY_INTERVAL: 86400 | |
HAPI_EOS_EXCHANGE_RATE_API: 'https://api.coingecko.com/api/v3/simple/price?ids=wax&vs_currencies=usd' | |
HAPI_COINGECKO_API_TOKEN_ID: wax | |
HAPI_REWARDS_TOKEN: WAX | |
# hasura | |
HASURA_GRAPHQL_ENABLE_CONSOLE: 'true' | |
HASURA_GRAPHQL_DATABASE_URL: ${{ secrets.HASURA_GRAPHQL_DATABASE_URL }} | |
HASURA_GRAPHQL_ADMIN_SECRET: ${{ secrets.HASURA_GRAPHQL_ADMIN_SECRET }} | |
HASURA_GRAPHQL_UNAUTHORIZED_ROLE: guest | |
HASURA_GRAPHQL_ACTION_BASE_URL: http://dashboard-hapi:9090 | |
- name: Setup and deploy kubernetes environment | |
uses: steebchen/[email protected] | |
env: | |
KUBE_CONFIG_DATA: ${{ secrets.KUBE_CONFIG_DATA }} | |
NAMESPACE: wax-testnet-dashboard | |
K8S_BUILD_DIR: build_k8s | |
with: | |
args: version && make deploy-kubernetes |