Version v0.6 of the documentation is no longer actively maintained. The site that you are currently viewing is an archived snapshot. For up-to-date documentation, see the latest version.

Using Your Own Domain

Using a custom domain with Kubeflow on GKE

This guide describes how to use a custom domain with Kubeflow on Google Cloud Platform (GCP).

Before you start

This guide assumes you have already set up Kubeflow on GCP. If you haven’t done so, follow the guide to getting started with Kubeflow on GCP.

Using your own domain

If you want to use your own domain instead of ${name}.endpoints.${project}.cloud.goog, follow these instructions:

  1. Remove the cloud-endpoints component:

    cd ${KFAPP}/kustomize
    kubectl delete -f cloud-endpoints.yaml
    
  2. Set the domain for your ingress to be the fully qualified domain name:

    cd ${KFAPP}/kustomize
    gvim iap-ingress.yaml    # Or basic-auth-ingress.yaml
    
    • Find and replace the value for the hostname:
     data:
       hostname: <enter your endpoint here>
    
    • Apply the changes:
     kubectl apply -f iap-ingress.yaml
    
  3. Get the address of the static IP address created:

    IPNAME=${DEPLOYMENT_NAME}-ip
    gcloud --project=${PROJECT} compute addresses describe --global ${IPNAME}
    
  4. Use your DNS provider to map the fully qualified domain specified in the first step to the IP address reserved: in GCP.