Monitor Cloud IAP Setup

    Cloud Identity-Aware Proxy (Cloud IAP) isthe recommended solution for accessing your Kubeflowdeployment from outside the cluster, when running Kubeflow on Google CloudPlatform (GCP).

    This document is a step-by-step guide to ensuring that your IAP-secured endpointis available, and to debugging problems that may cause the endpoint to beunavailable.

    When deploying Kubeflow using the or the command-line interface,you choose the authentication method you want to use. One of the options isCloud IAP. This document assumes that you have already deployed Kubeflow.

    Kubeflow uses the service to providean SSL certificate for the Kubeflow UI.

    Cloud IAP gives you the following benefits:

    • Users can log in in using their GCP accounts.
    • You benefit from Google’s security expertise to protect your sensitiveworkloads.

    Follow these instructions to monitor your Cloud IAP setup and troubleshoot anyproblems:

    • Examine theIngressand Google Cloud Build (GCB) load balancer to make sure it is available:

    Any problems with creating the load balancer are reported as Kubernetes events in the results of the above command.

    • If the address isn’t set then there was a problem creating the loadbalancer.

    • The most common error is running out of GCP quota. To fix this problem,you must either increase the quota for the relevant resource on your GCPproject or delete some existing resources.

    • Verify that a signed SSL certificate was generated from:
    1. kubectl -n istio-system get certificate envoy-ingress-tls -o yaml
    2. apiVersion: certmanager.k8s.io/v1alpha1
    3. kind: Certificate
    4. metadata:
    5. creationTimestamp: 2019-04-02T22:49:43Z
    6. generation: 1
    7. labels:
    8. kustomize.component: iap-ingress
    9. name: envoy-ingress-tls
    10. namespace: istio-system
    11. selfLink: /apis/certmanager.k8s.io/v1alpha1/namespaces/kubeflow/certificates/envoy-ingress-tls
    12. uid: 9b137b29-5599-11e9-a223-42010a8e020c
    13. spec:
    14. acme:
    15. config:
    16. - domains:
    17. - mykubeflow.endpoints.myproject.cloud.goog
    18. ingress: envoy-ingress
    19. commonName: kf-vmaster-n01.endpoints.kubeflow-ci-deployment.cloud.goog
    20. dnsNames:
    21. - mykubeflow.endpoints.myproject.cloud.goog
    22. issuerRef:
    23. kind: ClusterIssuer
    24. name: letsencrypt-prod
    25. secretName: envoy-ingress-tls
    26. status:
    27. acme:
    28. order:
    29. url: https://acme-v02.api.letsencrypt.org/acme/order/54483154/382580193
    30. conditions:
    31. message: Certificate issued successfully
    32. reason: CertIssued
    33. status: "True"
    34. type: Ready
    35. - lastTransitionTime: null
    36. message: Order validated
    37. status: "False"
    38. type: ValidateFailed

    It can take around 10 minutes to provision a certificate after thecreation of the load balancer.

    The most recent condition should be Certificate issued successfully.

    The most common error is running out of Let’s Encryptquota.Let’s Encrypt enforces a quota of 5 duplicate certificates per week.

    The easiest fix to quota issues is to pick a different hostname byrecreating and redeploying Kubeflow with a differentname.

    For example if you originally ran the following kfctl init command:

    Then rerun kfctl init with a different name that you haven’t usedbefore:

    1. kfctl init myapp-unique --project=myproject --config=myconfig -V
    • Wait for the load balancer to report the back ends as healthy:

    Both backends should be reported as healthy.It can take several minutes for the load balancer to consider the back endshealthy.

    If the backend is unhealthy, check the pods in istio-system:

    • kubectl get pods -n istio-system
    • The istio-ingressgateway-XX pods should be running
    • Check the logs of backend-updater-0, ingress-bootstrap-XX, iap-enabler-XX to see if there is any error
      • Now that the certificate exists, the Ingress resource should report that itis serving on HTTPS:
    1. kubectl -n istio-system get ingress
    2. NAME HOSTS ADDRESS PORTS AGE
    3. envoy-ingress mykubeflow.endpoints.myproject.cloud.goog 35.244.132.159 80, 443 1d

    If you don’t see port 443, look at the Ingress events usingkubectl describe to see if there are any errors.

    • Try accessing Cloud IAP at the fully qualified domain name in your webbrowser:

    If you get SSL errors when you log in, this typically means that your SSLcertificate is still propagating. Wait a few minutes and try again. SSLpropagation can take up to 10 minutes.

    If you do not see a login prompt and you get a 404 error, the configurationof Cloud IAP is not yet complete. Keep retrying for up to 10 minutes.

    • If you get an error Error: redirect_uri_mismatch after logging in, thismeans the list of OAuth authorized redirect URIs does not include your domain.

    The full error message looks like the following example and includes therelevant links:

    1. The redirect URI in the request, https://mykubeflow.endpoints.myproject.cloud.goog/_gcp_gatekeeper/authenticate, does not match the ones authorized for the OAuth client.

    Follow the link in the error message to find the OAuth credential being usedand add the redirect URI listed in the error message to the list ofauthorized URIs. For more information, read the guide to.

    Kubeflow runs an agent in your cluster to renew the Let’s Encrypt certificateautomatically. You don’t need to take any action.For more information, see the Let’s Encryptdocumentation.

    For questions and support about the certificate, visit.