Azure is currently in Private Preview and is not available for General Availability (GA). It should not be used in production environments, as features and functionality may change before the final GA release.

Login to PPC

Steps to access the PPC UI

To access the Web UI, map the gateway hostname to the Microsoft Azure Load Balancer IP address in the local hosts file.

  1. Get gateway details: Find the hostname and the Microsoft Azure Load Balancer address.

    kubectl get gateway -A
    

    The output will look similar to:

    NAMESPACE     NAME       CLASS   ADDRESS       PROGRAMMED   AGE
    api-gateway   pty-main   envoy   10.221.8.33   True         5h7m
    
  2. Update the hosts file: Sdd an entry mapping the ingress FQDN to the IP.

    • Linux: /etc/hosts
    • Windows: C:\Windows\System32\drivers\etc\hosts

    Example entry:

    10.221.8.33    <FQDN given during cluster installation>
    

    Use the same FQDN provided during bootstrap-azure.sh.

  3. Access the UI in the browser.

    • URL: https://<user-provided-fqdn>
    • Default credentials: user admin, password Admin123!

Last modified : May 07, 2026