Deploying the Protegrity Anonymization API to the AKS Cluster

Steps to deploy the AKS cluster.

Deploy the pods using the steps in the following section.

  1. Run the following command to deploy the pods.

    helm install <helm-name> /<path_to_helm> -n <namespace>
    
  2. Verify that the necessary pods and services are configured and running.

    1. Run the following command to verify the information for accessing the Protegrity Anonymization API externally on the cluster. The port mapping for accessing the UI is displayed after running the command.

      kubectl get service -n <namespace>
      
    2. Run the following command to verify the deployment.

      kubectl get deployment -n  <namespace>
      
    3. Run the following command to verify the pods created.

      kubectl get pods -n <namespace>
      
    4. Run the following command to verify the pods.

      kubectl get pods -o wide -n <namespace>
      
  3. Execute the following command to obtain the IP address of the service.

    kubectl get ingress -n <namespace>
    

The container is now ready to process Protegrity Anonymization API requests.


Last modified : November 12, 2025