cloud-foundation-fabric/blueprints/data-solutions/vertex-mlops/README.md

8.1 KiB

MLOps with Vertex AI

Introduction

This example implements the infrastructure required to deploy an end-to-end MLOps process using Vertex AI platform.

GCP resources

The blueprint will deploy all the required resources to have a fully functional MLOPs environment containing:

  • Vertex Workbench (for the experimentation environment)
  • GCP Project (optional) to host all the resources
  • Isolated VPC network and a subnet to be used by Vertex and Dataflow. Alternatively, an external Shared VPC can be configured using the network_configvariable.
  • Firewall rule to allow the internal subnet communication required by Dataflow
  • Cloud NAT required to reach the internet from the different computing resources (Vertex and Dataflow)
  • GCS buckets to host Vertex AI and Cloud Build Artifacts. By default the buckets will be regional and should match the Vertex AI region for the different resources (i.e. Vertex Managed Dataset) and processes (i.e. Vertex trainining)
  • BigQuery Dataset where the training data will be stored. This is optional, since the training data could be already hosted in an existing BigQuery dataset.
  • Artifact Registry Docker repository to host the custom images.
  • Service account (mlops-[env]@) with the minimum permissions required by Vertex AI and Dataflow (if this service is used inside of the Vertex AI Pipeline).
  • Service account (github@) to be used by Workload Identity Federation, to federate Github identity (Optional).
  • Secret to store the Github SSH key to get access the CICD code repo.

MLOps project description

Pre-requirements

User groups

Assign roles relying on User groups is a way to decouple the final set of permissions from the stage where entities and resources are created, and their IAM bindings defined. You can configure the group names through the groups variable. These groups should be created before launching Terraform.

We use the following groups to control access to resources:

  • Data Scientits (gcp-ml-ds@<company.org>). They manage notebooks and create ML pipelines.
  • ML Engineers (gcp-ml-eng@<company.org>). They manage the different Vertex resources.
  • ML Viewer (gcp-ml-eng@<company.org>). Group with wiewer permission for the different resources.

Please note that these groups are not suitable for production grade environments. Roles can be customized in the main.tffile.

Instructions

Deploy the experimentation environment

  • Create a terraform.tfvars file and specify the variables to match your desired configuration. You can use the provided terraform.tfvars.sample as reference.
  • Run terraform init and terraform apply

What's next?

This blueprint can be used as a building block for setting up an end2end ML Ops solution. As next step, you can follow this guide to setup a Vertex AI pipeline and run it on the deployed infraestructure.

Variables

name description type required default
project_id Project id, references existing project if project_create is null. string
bucket_name GCS bucket name to store the Vertex AI artifacts. string null
dataset_name BigQuery Dataset to store the training data. string null
groups Name of the groups (name@domain.org) to apply opinionated IAM permissions. object({…}) {…}
identity_pool_claims Claims to be used by Workload Identity Federation (i.e.: attribute.repository/ORGANIZATION/REPO). If a not null value is provided, then google_iam_workload_identity_pool resource will be created. string null
labels Labels to be assigned at project level. map(string) {}
location Location used for multi-regional resources. string "eu"
network_config Shared VPC network configurations to use. If null networks will be created in projects with preconfigured values. object({…}) null
notebooks Vertex AI workbenchs to be deployed. map(object({…})) {}
prefix Prefix used for the project id. string null
project_create Provide values if project creation is needed, uses existing project if null. Parent is in 'folders/nnn' or 'organizations/nnn' format. object({…}) null
project_services List of core services enabled on all projects. list(string) […]
region Region used for regional resources. string "europe-west4"
repo_name Cloud Source Repository name. null to avoid to create it. string null
sa_mlops_name Name for the MLOPs Service Account. string "sa-mlops"

Outputs

name description sensitive
github Github Configuration.
notebook Vertex AI managed notebook details.
project The project resource as return by the project module.
project_id Project ID.

TODO

  • Add support for User Managed Notebooks, SA permission option and non default SA for Single User mode.
  • Improve default naming for local VPC and Cloud NAT

Test

module "test" {
  source = "./fabric/blueprints/data-solutions/vertex-mlops/"
  labels = {
    "env" : "dev",
    "team" : "ml"
  }
  bucket_name          = "test-dev"
  dataset_name         = "test"
  identity_pool_claims = "attribute.repository/ORGANIZATION/REPO"
  notebooks = {
    "myworkbench" : {
      "owner" : "user@example.com",
      "region" : "europe-west4",
      "subnet" : "default",
    }
  }
  prefix     = "pref"
  project_id = "test-dev"
  project_create = {
    billing_account_id = "000000-123456-123456"
    parent             = "folders/111111111111"
  }
}
# tftest modules=12 resources=57