Securing Your Clusters
Alpha version
This feature is currently in alpha release status with limited support. TheKubeflow team is interested in any feedback you may have, in particular withregards to usability of the feature. Note the following issues already reported:
- Documentation on how to use Kubeflow with shared VPC
- Installing Istio for Kubeflow on private GKE
- kfctl should work with private GKE without public endpoint
This guide describes how to secure Kubeflow using and private GKE.
Together these two features signficantly increase securityand mitigate the risk of data exfiltration.
- VPC Service Controls allow you to define a perimeter aroundGoogle Cloud Platform (GCP) services.
Kubeflow uses VPC Service Controls to prevent applicationsrunning on GKE from writing data to GCP resources outsidethe perimeter.
- Private GKE removes public IP addresses from GKE nodes makingthem inaccessible from the public internet.
Kubeflow uses IAP to make Kubeflow web apps accessiblefrom your browser.
VPC Service Controls allow you to restrict which Google services are accessible from yourGKE/Kubeflow clusters. This is an important part of security and in particularmitigating the risks of data exfiltration.
For more information refer to the VPC Service Control Docs.
Creating a means the Kubernetes Engine nodes won’t have public IP addresses. This can improve security by blocking unwanted outbound/inboundaccess to nodes. Removing IP addresses means external services (such as GitHub, PyPi, and DockerHub) won’t be accessiblefrom the nodes. Google services (such as BigQuery and Cloud Storage) are still accessible.
Importantly this means you can continue to use your Google Container Registry (GCR) to host your Docker images. Other Docker registries (for example, DockerHub) will not be accessible. If you need to use Docker imageshosted outside GCR you can use the scripts provided by Kubeflow to mirror them to your GCR registry.
Before installing Kubeflow ensure you have installed the following tools:
You will need to know your gcloud organization ID and project number; you can get them via gcloud.
- Projects are identified by names, IDs, and numbers. For more info, see .
- Enable VPC service controls:
gcloud services enable accesscontextmanager.googleapis.com \
cloudresourcemanager.googleapis.com \
dns.googleapis.com --project=${PROJECT}
- Check if you have an access policy object already created:
gcloud beta access-context-manager policies list \
--organization=${ORGANIZATION}
- An access policy is a GCP resource object that defines service perimeters. There can be only one access policy object in an organization, and it is a child of the Organization resource.
- If you don’t have an access policy object, create one:
gcloud beta access-context-manager policies create \
--title "default" --organization=${ORGANIZATION}
- Save the Access Policy Object ID as an environment variable so that it can be used in subsequent commands:
export POLICYID=$(gcloud beta access-context-manager policies list --organization=${ORGANIZATION} --limit=1 --format='value(name)')
- Create a service perimeter:
gcloud beta access-context-manager perimeters create KubeflowZone \
--title="Kubeflow Zone" --resources=projects/${PROJECT_NUMBER} \
--restricted-services=bigquery.googleapis.com,containerregistry.googleapis.com,storage.googleapis.com \
--project=${PROJECT} --policy=${POLICYID}
Here we have created a service perimeter with the name KubeflowZone.
The perimeter is created in PROJECT_NUMBER and restricts access to GCS (storage.googleapis.com), BigQuery (bigquery.googleapis.com), and GCR (containerregistry.googleapis.com).
Placing GCS (Google Cloud Storage) and BigQuery in the perimeter means that access to GCS and BigQueryresources owned by this project is now restricted. By default, access from outsidethe perimeter will be blocked
More than one project can be added to the same perimeter
-
- Create a members.yaml file with the following contents
- members:
- serviceAccount:${PROJECT_NUMBER}@cloudbuild.gserviceaccount.com
- user:<your email>
Google Container Builder is used to mirror Kubeflow images into the perimeter
Adding your email allows you to access the GCP servicesinside the perimeter from outside the cluster
- This is convenient for building and pushing images and datafrom your local machine.
- For more information refer to the .
- Create the access level:
--basic-level-spec=members.yaml \
--policy=${POLICYID} \
--title="Kubeflow ${PROJECT}"
- The name for the level can’t have any hyphens
- Bind Access Level to a Service Perimeter:
gcloud beta access-context-manager perimeters update KubeflowZone \
--add-access-levels=kubeflow \
--policy=${POLICYID}
Set up container registry for GKE private clusters (for more info see instructions):
- Create a managed private zone
export ZONE_NAME=kubeflow
export NETWORK=<Network you are using for your cluster>
gcloud beta dns managed-zones create ${ZONE_NAME} \
--visibility=private \
--networks=https://www.googleapis.com/compute/v1/projects/${PROJECT}/global/networks/${NETWORK} \
--description="Kubeflow DNS" \
--dns-name=gcr.io \
--project=${PROJECT}
- Start a transaction
gcloud dns record-sets transaction start \
--zone=${ZONE_NAME} \
- Add a CNAME record for *.gcr.io
gcloud dns record-sets transaction add \
--name=*.gcr.io. \
--type=CNAME gcr.io. \
--zone=${ZONE_NAME} \
--ttl=300 \
--project=${PROJECT}
- Add an A record for the restricted VIP
gcloud dns record-sets transaction add \
--name=gcr.io. \
--type=A 199.36.153.4 199.36.153.5 199.36.153.6 199.36.153.7 \
--zone=${ZONE_NAME} \
--ttl=300 \
--project=${PROJECT}
- Commit the transaction
gcloud dns record-sets transaction execute \
--zone=${ZONE_NAME} \
--project=${PROJECT}
- Set user credentials. You only need to run this command once:
gcloud auth application-default login
Copy non-GCR hosted images to your GCR registry:
Clone the Kubeflow source
git clone https://github.com/kubeflow/kubeflow.git git_kubeflow
- Use to replicate the images
-
This is needed because your GKE nodes won’t be able to pull images from non GCRregistries because they don’t have public internet addresses
-
gcloud may return an error even though the job issubmited successfully and will run successfullysee kubeflow/kubeflow#3105
-
You can use the Cloud console to monitor your GCB job.
Enable private clusters by editing
${KF_DIR}/gcp_config/cluster-kubeflow.yaml
and updating the following two parameters:
privatecluster: true
gkeApiVersion: v1beta1
- Remove components which are not useful in private clusters:
cd ${KF_DIR}/kustomize
kubectl delete -f cert-manager.yaml
- Create the deployment:
cd ${KF_DIR}
kfctl apply -V -f ${CONFIG_FILE}
If you get an error legacy networks not supported, follow the to create a new network.
-
You will need to manually create the network as a work around for kubeflow/kubeflow#3071
cd ${KF_DIR}/gcp_config
gcloud --project=${PROJECT} deployment-manager deployments create ${KF_NAME}-network --config=network.yaml
-
Then edit ${KF_DIR}/gcp_config/cluster.jinja
to add a field network in your cluster
cluster:
name: {{ CLUSTER_NAME }}
network: <name of the new network>
-
To get the name of the new network run
gcloud --project=${PROJECT} compute networks list
- The name will contain the value ${KF_NAME}
- Update iap-ingress component parameters:
cd ${KF_DIR}/kustomize
gvim iap-ingress.yaml
Find and set the privateGKECluster
parameter to true:
privateGKECluster: "true"
-
kubectl apply -f iap-ingress.yaml
Obtain an HTTPS certificate for your ${FQDN} and create a Kubernetes secret with it.
- You can create a self signed cert using
go get github.com/kelseyhightower/kube-rsa
kube-rsa ${FQDN}
-
The fully qualified domain is the host field specified for your ingress;you can get it by running
cd ${KF_DIR}/kustomize
grep hostname: iap-ingress.yaml
-
Then create your Kubernetes secret
kubectl create secret tls --namespace=kubeflow envoy-ingress-tls --cert=ca.pem --key=ca-key.pem
-
An alternative option is to upgrade to GKE 1.12 or later and usemanaged certificates
-
See
Update the various kustomize manifests to use
gcr.io
images instead of Docker Hub images.Apply all the Kubernetes resources:
cd ${KF_DIR}
kfctl apply -V -f ${CONFIG_FILE}
- Wait for Kubeflow to become accessible and then access it at this URL:
https://${FQDN}/
-
${FQDN} is the host associated with your ingress
-
You can get it by running
-
Follow the instructions to monitor thedeployment
It can take 10-20 minutes for the endpoint to become fully available
- Use to restrict access to your GKE master
- Learn more about VPC Service Controls
- See how to your Kubeflow deploymentusing the CLI.
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please .
Last modified 04.03.2020: Clarified that GCP basic auth is not supported and removed most references (#1765) (8703f266)