From c178fc0ce9a085cd2b8e06933f4f860a9b0c22e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=BDiga=20Kokelj?= Date: Mon, 29 Apr 2024 17:10:28 +0200 Subject: [PATCH] use same script for creating the node as newer versions (#1888) --- .github/workflows/manual-deploy-obscuro-gateway.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/manual-deploy-obscuro-gateway.yml b/.github/workflows/manual-deploy-obscuro-gateway.yml index 23ae713c23..6b16159d09 100644 --- a/.github/workflows/manual-deploy-obscuro-gateway.yml +++ b/.github/workflows/manual-deploy-obscuro-gateway.yml @@ -76,11 +76,11 @@ jobs: inlineScript: | az vm create -g Testnet -n "${{ github.event.inputs.testnet_type }}-OG-${{ GITHUB.RUN_NUMBER }}" \ --admin-username obscurouser --admin-password "${{ secrets.OBSCURO_NODE_VM_PWD }}" \ - --public-ip-address-dns-name "obscurogateway-${{ github.event.inputs.testnet_type }}" \ + --public-ip-address "${{ github.event.inputs.testnet_type }}-OG-static" \ --tags deploygroup=ObscuroGateway-${{ github.event.inputs.testnet_type }}-${{ GITHUB.RUN_NUMBER }} ${{ vars.AZURE_DEPLOY_GROUP_GATEWAY }}=true \ --vnet-name ObscuroGateway-${{ github.event.inputs.testnet_type }}-01VNET --subnet ObscuroGateway-${{ github.event.inputs.testnet_type }}-01Subnet \ --size Standard_D4_v5 --image Canonical:0001-com-ubuntu-server-focal:20_04-lts-gen2:latest \ - --public-ip-sku Basic --authentication-type password + --authentication-type password - name: 'Open Obscuro node-${{ matrix.host_id }} ports on Azure' uses: azure/CLI@v1