Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Deploy this example with Pulumi Deploy this example with Pulumi

Simple and component-based Kubernetes Guestbook apps

A port of the standard Kubernetes Guestbook to Pulumi. This example shows you how to build and deploy a simple, multi-tier web application using Kubernetes and Docker, and consists of three components:

  • A single-instance Redis master to store guestbook entries
  • Multiple replicated Redis instances to serve reads
  • Multiple web frontend instances

This directory contains two variants of the guestbook, each a standalone Pulumi project with its own README:

  • simple/ — a straight port of the original YAML.
  • components/ — demonstrates the benefits of using a real language, namely eliminating boilerplate through the use of real component abstractions.

Both variants provision the exact same Kubernetes guestbook application, but showcase different aspects of Pulumi. Follow the README in whichever sub-directory you choose.