Install Kubeflow on IKS

Instructions for deploying Kubeflow on IBM Cloud Kubernetes Service

This guide describes how to use the kfctl binary to deploy Kubeflow on IBM Cloud Kubernetes Service (IKS).

Prerequisites

  • Authenticate with IBM Cloud

    Log into IBM Cloud using the IBM Cloud Command Line Interface (CLI) as follows:

    1. ibmcloud login

    Or, if you have federated credentials, run the following command:

    1. ibmcloud login --sso
  • Create and access a Kubernetes cluster on IKS

    To deploy Kubeflow on IBM Cloud, you need a cluster running on IKS. If you don’t have a cluster running, follow the Create an IBM Cloud cluster guide.

    Run the following command to switch the Kubernetes context and access the cluster:

    1. ibmcloud ks cluster config --cluster <cluster_name>

    Replace <cluster_name> with your cluster name.

Storage setup for a Classic IBM Cloud Kubernetes cluster

Note: This section is only required when the worker nodes provider WORKER_NODE_PROVIDER is set to classic. For other infrastructures, IBM Cloud Storage with Group ID support is already set up as the cluster’s default storage class.

When you use the classic worker node provider of an IBM Cloud Kubernetes cluster, it uses the regular IBM Cloud File Storage based on NFS as the default storage class. File Storage is designed to run RWX (read-write multiple nodes) workloads with proper security built around it. Therefore, File Storage does not allow fsGroup securityContext unless it’s configured with Group ID, which is needed for the OIDC authentication service and Kubeflow Jupyter server.

Therefore, you’re recommended to set up the default storage class with Group ID support so that you can get the best experience from Kubeflow.

  1. Set the File Storage with Group ID support as the default storage class.

    1. NEW_STORAGE_CLASS=ibmc-file-gold-gid
    2. OLD_STORAGE_CLASS=$(kubectl get sc -o jsonpath='{.items[?(@.metadata.annotations.storageclass\.kubernetes\.io\/is-default-class=="true")].metadata.name}')
    3. kubectl patch storageclass ${NEW_STORAGE_CLASS} -p '{"metadata": {"annotations":{"storageclass.kubernetes.io/is-default-class":"true"}}}'
    4. # List all the (default) storage classes
    5. kubectl get storageclass | grep "(default)"

    Example output:

    1. ibmc-file-gold-gid (default) ibm.io/ibmc-file Delete Immediate false 14h
  2. Make sure ibmc-file-gold-gid is the only (default) storage class. If there are two or more rows in the above output, unset the previous (default) storage classes with the command below:

    1. kubectl patch storageclass ${OLD_STORAGE_CLASS} -p '{"metadata": {"annotations":{"storageclass.kubernetes.io/is-default-class":"false"}}}'

Storage setup for vpc-gen2 IBM Cloud Kubernetes cluster

Note: To deploy Kubeflow, you don’t need to change the storage setup for vpc-gen2 Kubernetes cluster.

Currently, there is no option available for setting up RWX (read-write multiple nodes) type of storages. RWX is not a mandatory requirement to run Kubeflow and most pipelines. It is required by certain sample jobs/pipelines where multiple pods write results to a common storage. A job or a pipeline can also write to a common object storage like minio, so the absence of this feature is not a blocker for working with Kubeflow. Examples of jobs/pipelines that will not work, are: Distributed training with tf-operator

If you are on vpc-gen2 and still need RWX, you may try portworx enterprise product. To set it up on IBM Cloud use the portworx install with IBM Cloud guide.

Installation

Choose either single user or multi-tenant section based on your usage.

If you’re experiencing issues during the installation because of conflicts on your Kubeflow deployment, you can uninstall Kubeflow and install it again.

Single user

For single user installation we can either use kfctl or kustomize + kubectl

Using kfctl

Run the following commands to set up and deploy Kubeflow for a single user without any authentication.

Note: By default, Kubeflow deployment on IBM Cloud uses the Kubeflow pipeline with the Tekton backend. If you want to use the Kubeflow pipeline with the Argo backend, modify and uncomment the kfp-argo applications inside the kfctl_ibm.yaml below and remove the kfp-tekton applications.

  1. # Set KF_NAME to the name of your Kubeflow deployment. This also becomes the
  2. # name of the directory containing your configuration.
  3. # For example, your deployment name can be 'my-kubeflow' or 'kf-test'.
  4. export KF_NAME=<your choice of name for the Kubeflow deployment>
  5. # Set the path to the base directory where you want to store one or more
  6. # Kubeflow deployments. For example, /opt/.
  7. # Then set the Kubeflow application directory for this deployment.
  8. export BASE_DIR=<path to a base directory>
  9. export KF_DIR=${BASE_DIR}/${KF_NAME}
  10. # Set the configuration file to use, such as:
  11. export CONFIG_FILE=kfctl_ibm.yaml
  12. export CONFIG_URI="https://raw.githubusercontent.com/IBM/manifests/v1.3/distributions/kfdef/kfctl_ibm.v1.3.0.yaml"
  13. # Generate Kubeflow:
  14. mkdir -p ${KF_DIR}
  15. cd ${KF_DIR}
  16. curl -L ${CONFIG_URI} > ${CONFIG_FILE}
  17. # Deploy Kubeflow. You can customize the CONFIG_FILE if needed.
  18. kfctl apply -V -f ${CONFIG_FILE}
  • ${KF_NAME} - The name of your Kubeflow deployment. If you want a custom deployment name, specify that name here. For example, my-kubeflow or kf-test. The value of KF_NAME must consist of lower case alphanumeric characters or ‘-’, and must start and end with an alphanumeric character. The value of this variable cannot be greater than 25 characters. It must contain just a name, not a directory path. This value also becomes the name of the directory where your Kubeflow configurations are stored, that is, the Kubeflow application directory.

  • ${KF_DIR} - The full path to your Kubeflow application directory.


Using kustomize together with kubectl

  1. Clone the manifest repo as follows:
  1. git clone git@github.com:kubeflow/manifests.git
  1. Checkout v1.3-branch:
  1. git checkout v1.3-branch
  1. Create a folder in the root folder
  1. mkdir ibm
  2. cd ibm
  1. Download an example kustomization.yaml for single user kubeflow 1.3 on IKS.
  1. wget https://raw.githubusercontent.com/ibm/manifests/v1.3/iks-single/kustomization.yaml
  2. cd ..

Not all the components are required to run Kubeflow.

  1. You can apply the kustomize file from the root of the repository:
  1. kustomize build -f ibm/kustomization.yaml | kubectl apply -f -

You may see errors after the first time you run the command. You can run the following while loop until you are successful.

  1. while ! kustomize build ibm | kubectl apply -f -; do echo "Retrying to apply resources"; sleep 10; done

Accessing your cluster

The Kubeflow endpoint is exposed with NodePort 30380. To get a static ip, you can expose the Kubeflow endpoint as a LoadBalancer and access the EXTERNAL_IP.

For single-user Kubeflow, IBM Cloud uses Dex authentication by default. You can access the cluster as follows:

  1. username=user@example.com
  2. password=12341234

Multi-user, auth-enabled

Run the following steps to deploy Kubeflow with IBM Cloud AppID as an authentication provider.

The scenario is a Kubeflow cluster admin configures Kubeflow as a web application in AppID and manages user authentication with builtin identity providers (Cloud Directory, SAML, social log-in with Google or Facebook etc.) or custom providers.

Prerequisites

For authentication, IBM Cloud uses AppID

  1. Follow the Creating an App ID service instance on IBM Cloud guide to learn about Kubeflow authentication. You can also learn how to use App ID with different authentication methods.

  2. Follow the Registering your app section of the App ID guide to create an application with type regularwebapp under the provisioned AppID instance. Make sure the scope contains email. Then retrieve the following configuration parameters from your AppID:

    • clientId
    • secret
    • oAuthServerUrl

    You will be using these information in the subsequent sections.

  3. Register the Kubeflow OIDC redirect page. The Kubeflow REDIRECT_URL URL is http://<kubeflow-FQDN>/login/oidc. <kubeflow-FQDN> is the endpoint for accessing Kubeflow. By default, the <kubeflow-FQDN> on IBM Cloud is <worker_node_external_ip>:30380. To get a static ip, you can expose the Kubeflow endpoint as a LoadBalancer and use the EXTERNAL_IP for your <kubeflow-FQDN>.

  4. Then, you need to place the Kubeflow OIDC REDIRECT_URL under Manage Authentication > Authentication settings > Add web redirect URLs.

APP ID Redirect Settings

Using kfctl

  1. Set up environment variables:

    1. export KF_NAME=<your choice of name for the Kubeflow deployment>
    2. # Set the path to the base directory where you want to store one or more
    3. # Kubeflow deployments. For example, use `/opt/`.
    4. export BASE_DIR=<path to a base directory>
    5. # Then set the Kubeflow application directory for this deployment.
    6. export KF_DIR=${BASE_DIR}/${KF_NAME}
  2. Set up configuration files:

    1. export CONFIG_FILE=kfctl_ibm_multi_user.yaml
    2. export CONFIG_URI="https://raw.githubusercontent.com/IBM/manifests/v1.3/distributions/kfdef/kfctl_ibm_multi_user.v1.3.0.yaml"
    3. # Generate and deploy Kubeflow:
    4. mkdir -p ${KF_DIR}
    5. cd ${KF_DIR}
    6. curl -L ${CONFIG_URI} > ${CONFIG_FILE}

Note: By default, the IBM configuration is using the Kubeflow pipeline with the Tekton backend. If you want to use the Kubeflow pipeline with the Argo backend, modify and uncomment the kfp-argo applications inside the kfctl_ibm_multi_user.yaml and remove the kfp-tekton applications.

  1. Deploy Kubeflow:

    1. kfctl apply -V -f ${CONFIG_FILE}
  2. Wait until the deployment finishes successfully — for example, all pods should be in the Running state when you run the command:

    1. kubectl get pod -n kubeflow
  3. Create a configmap oidc-authservice-parameters and a secret oidc-authservice-client in the istio-system namespace that holds the information needed by the authservice.

We will be updating these to match our appid service created in the Prereq step.

You will need the following values:

  • <oAuthServerUrl> - fill in the value of oAuthServerUrl
  • <clientId> - fill in the value of clientId
  • <secret> - fill in the value of secret
  • <kubeflow-FQDN> - fill in the FQDN of Kubeflow, if you don’t know yet, just give a dummy one like localhost. Then change it after you got one.
Patch ConfigMap
  1. export OIDC_PROVIDER=<oAuthServerUrl>
  2. export OIDC_AUTH_URL=<oAuthServerUrl>/authorization
  3. export REDIRECT_URL=http://<kubeflow-fqdn>/login/oidc
  4. export PATCH=$(printf '{"data": {"OIDC_AUTH_URL": "%s", "OIDC_PROVIDER": "%s", "REDIRECT_URL": "%s"}}' $OIDC_AUTH_URL $OIDC_PROVIDER $REDIRECT_URL)
  5. kubectl patch cm -n istio-system oidc-authservice-parameters -p=$PATCH
Patch Secret
  1. export CLIENT_ID=<clientId>
  2. export CLIENT_SECRET=<secret>
  3. export PATCH=$(printf '{"stringData": {"CLIENT_ID": "%s", "CLIENT_SECRET": "%s"}}' $CLIENT_ID $CLIENT_SECRET)
  4. kubectl patch secret -n istio-system oidc-authservice-client -p=$PATCH

Note: If any of the parameters are changed after the initial Kubeflow deployment, you will need to manually update these parameters in the configmap oidc-authservice-parameters and/or secret oidc-authservice-client. Then, restart authservice with kubectl rollout restart statefulset authservice -n istio-system.


Using kustomize together with kubectl

  1. Follow steps 1-3 from Single User using kustomize + kubectl

  2. Download the kustomization.yaml example

  1. wget https://raw.githubusercontent.com/ibm/manifests/v1.3/iks-multi/kustomization.yaml
  2. cd ..

If you already have a file downloaded for single user kustomization.yaml either delete it or put this file in a new folder with different name.

  1. Update the distribution/stacks/ibm/application/oidc-authservice-appid/parms.env and distribution/stacks/ibm/application/oidc-authservice-appid/secret_params.env with values collected in Prereq section.

  2. You can apply the kustomize file from the root of the repository:

  1. kustomize build ibm | kubectl apply -f -

You may see errors after the first time you run the command. You can run the following while loop until you are successful.

  1. while ! kustomize build ibm | kubectl apply -f -; do echo "Retrying to apply resources"; sleep 10; done
  1. If at any point the values change and you have to change them, you can either patch the configmap and secret or change the content in the files and apply the kustomize again. You will need to restart authservice with kubectl rollout restart statefulset authservice -n istio-system .

    To apply just the oidc-authservice-appid you can use this command:

  1. kustomize build distribution/stacks/ibm/application/oidc-authservice-appid | kubectl apply -f -

Verify mutli-user installation

Check the pod authservice-0 is in running state in namespace istio-system:

  1. kubectl get pod authservice-0 -n istio-system

Extra network setup requirement for vpc-gen2 clusters only

Note: These steps are not required for classic clusters, i.e. where WORKER_NODE_PROVIDER is set to classic.

A vpc-gen2 cluster does not assign a public IP address to the Kubernetes master node by default. It provides access via a Load Balancer, which is configured to allow only a set of ports over public internet. Access the cluster’s resources in a vpc-gen2 cluster, using one of the following options,

  • Load Balancer method: To configure via a Load Balancer, go to Expose the Kubeflow endpoint as a LoadBalancer. This method is recommended when you have Kubeflow deployed with Multi-user, auth-enabled support — otherwise it will expose cluster resources to the public.

  • Socks proxy method: If you need access to nodes or NodePort in the vpc-gen2 cluster, this can be achieved by starting another instance in the same vpc-gen2 cluster and assigning it a public IP (i.e. the floating IP). Next, use SSH to log into the instance or create an SSH socks proxy, such as ssh -D9999 root@new-instance-public-ip.

Then, configure the socks proxy at localhost:9999 and access cluster services.

  • kubectl port-forward method: To access Kubeflow dashboard, run kubectl -n istio-system port-forward service/istio-ingressgateway 7080:http2. Then in a browser, go tohttp://127.0.0.1:7080/

*Important notice: Exposing cluster/compute resources publicly without setting up a proper user authentication mechanism is very insecure and can have very serious consequences(even legal). If there is no need to expose cluster services publicly, Socks proxy method or kubectl port-forward method are recommended.*

Next steps: secure the Kubeflow dashboard with HTTPS

Prerequisites

For both classic and vpc-gen2 cluster providers, make sure you have Multi-user, auth-enabled Kubeflow set up.

Setup

Follow the steps in Exposing the Kubeflow dashboard with DNS and TLS termination. Then, you will have the required DNS name as Kubeflow FQDN to enable the OIDC flow for AppID:

  1. Follow the step Adding redirect URIs to fill a URL for AppID to redirect to Kubeflow. The URL should look like https://<kubeflow-FQDN>/login/oidc.

  2. Update the secret appid-application-configuration with the updated Kubeflow FQDN to replace <kubeflow-FQDN> in below command:

  1. export REDIRECT_URL=https://<kubeflow-FQDN>/login/oidc
  2. export PATCH=$(printf '{"data": {"REDIRECT_URL": "%s"}}' $REDIRECT_URL)
  3. kubectl patch configmap appid-application-configuration -n istio-system -p=$PATCH
  1. Restart the pod authservice-0:
  1. kubectl rollout restart statefulset authservice -n istio-system

Then, visit https://<kubeflow-FQDN>/. The page should redirect you to AppID for authentication.

Additional information

You can find general information about Kubeflow configuration in the guide to configuring Kubeflow with kfctl and kustomize.

Troubleshooting

Expose the Kubeflow endpoint as a LoadBalancer

By default, the Kubeflow deployment on IBM Cloud only exposes the endpoint as NodePort 31380. If you want to expose the endpoint as a LoadBalancer, run:

  1. kubectl patch svc istio-ingressgateway -n istio-system -p '{"spec": {"type": "LoadBalancer"}}'

Then, you can locate the LoadBalancer in the EXTERNAL_IP column when you run the following command:

  1. kubectl get svc istio-ingressgateway -n istio-system

There is a small delay, usually ~5 mins, for above commands to take effect.

Authservice pod taking too long to restart

You might see the authservice-0 pod taking some time to restart. If that happens you can delete to pod which will kick off restart from kubernetes reconciler.

  1. kubectl delete po authservice -n istio-system

Last modified 06.07.2021: [IBM docs] Fix commands to support kustomize v3.2 (#2788) (632e7cee)