IP Leases Verification

Assigned IP Leases info can be displayed from the Nexqloud CLI via the lease-status command.

NOTE - ensure the NEXQLOUD_DSEQ and NEXQLOUD_PROVIDER environment variables are defined prior to issuing this command. Additional info on environment variables set up for the Nexqloud CLI is available here.

provider-services lease-status --from $NEXQLOUD_ACCOUNT_ADDRESS

Example/Expected Output

NOTE - the IP Leases info displayed in the ips section.

{
  "services": {
    "web": {
      "name": "web",
      "available": 1,
      "total": 1,
      "uris": [
        "bnd9dtb1rddsl6gfcn3q0j771g.www.nocixp1.iptestnet.nexqloudian.io"
      ],
      "observed_generation": 1,
      "replicas": 1,
      "updated_replicas": 1,
      "ready_replicas": 1,
      "available_replicas": 1
    }
  },
  "forwarded_ports": null,
  "ips": {
    "web": [
      {
        "Port": 3000,
        "ExternalPort": 80,
        "Protocol": "TCP",
        "IP": "198.204.231.229"
      }
    ]
  }
}

Last updated