Skip to content

Commit

Permalink
using public ip for gitea
Browse files Browse the repository at this point in the history
  • Loading branch information
khaledyoussef24 committed Dec 18, 2024
1 parent 524a2d5 commit c256363
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/grid_client/scripts/applications/gitea.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ async function deploy(client, vms, subdomain, gatewayNode) {
log(resultVM);
log("================= Deploying VM =================");

const VMmyceliumIP = (await client.machines.getObj(vms.name))[0].myceliumIP;
const GatewayIP = (await client.machines.getObj(vms.name))[0].publicIP;

Check warning on line 11 in packages/grid_client/scripts/applications/gitea.ts

View workflow job for this annotation

GitHub Actions / lint (18.x)

'GatewayIP' is assigned a value but never used

// Name Gateway Model
const gw: GatewayNameModel = {
Expand Down Expand Up @@ -87,7 +87,7 @@ async function main() {
},
],
planetary: true,
public_ip: false,
public_ip: true,
public_ip6: false,
mycelium: true,
cpu: instanceCapacity.cru,
Expand Down

0 comments on commit c256363

Please sign in to comment.