Deploying Stable Diffusion Web UI on GKE Autopilot

Deploying Stable Diffusion WebUI on K8s can be challenging, but no more. Learn how to do it by:

  1. Creating a GKE autopilot cluster
  2. Deploying AUTOMATIC1111 Stable Diffusion Web UI
  3. Accessing the UI through port forwarding

Not up for a challenge? Maybe deploying Stable Diffusion on a GCE VM is easier …

Continue reading »

Deploying Stable Diffusion Web UI using Docker on GCE T4 VM

A short guide on how to deploy Stable Diffusion Web UI on a Google Cloud Compute Engine VM with 1 T4 GPU.

Creating the GCE VM with T4 using the Google Cloud Deep Learning Image:

export IMAGE_FAMILY="common-cu110-ubuntu-2004"
export ZONE="us-west1-b"
export INSTANCE_NAME="stable-diffusion"
export INSTANCE_TYPE="n1-standard-4"
gcloud compute instances …

Continue reading »