This example is a full end to end example of delivering a containerized Ruby on Rails application.
// Copyright 2016-2018, Pulumi Corporation. All rights reserved.
import * as docker from "@pulumi/docker";
import * as k8s from "@pulumi/kubernetes";
import * as pulumi from "@pulumi/pulumi";
import * as cluster from "./cluster";
import * as config from "./config";
import * as db from "./db";
// Get the GCR repository for our app container, and build and publish the app image.
const appImage = new docker.Image("rails-app", {
imageName: `${config.dockerUsername}/${pulumi.getProject()}_${pulumi.getStack()}`,
build: "../app",
registry: {
server: "docker.io",
username: config.dockerUsername,
password: config.dockerPassword,
},
});
// Deploy the app container as a Kubernetes load balanced service.
const appPort = 3000;
const appLabels = { app: "rails-app" };
const appDeployment = new k8s.apps.v1.Deployment("rails-deployment", {
spec: {
selector: { matchLabels: appLabels },
replicas: 1,
template: {
metadata: { labels: appLabels },
spec: {
containers: [{
name: "rails-app",
image: appImage.imageName,
env: [
{ name: "DB_HOST", value: db.instance.firstIpAddress },
{ name: "DB_USERNAME", value: config.dbUsername },
{ name: "DB_PASSWORD", value: config.dbPassword },
],
ports: [{ containerPort: appPort }],
}],
},
},
},
}, { provider: cluster.provider });
const appService = new k8s.core.v1.Service("rails-service", {
metadata: { labels: appDeployment.metadata.labels },
spec: {
type: "LoadBalancer",
ports: [{ port: appPort, targetPort: appPort }],
selector: appDeployment.spec.template.metadata.labels,
},
}, { provider: cluster.provider });
// Export the app deployment name so we can easily access it.
export let appName = appDeployment.metadata.name;
// Export the service's IP address.
export let appAddress = appService.status.apply(s => `http://${s.loadBalancer.ingress[0].ip}:${appPort}`);
// Export the database address for client connections.
export let dbAddress = db.instance.firstIpAddress;
// Also export the Kubeconfig so that clients can easily access our cluster.
export let kubeConfig = cluster.config;
git clone https://github.com/pulumi/examples
cd examples/gcp-ts-k8s-ruby-on-rails-postgresql