From b31358077b472c78c285f151561c4f28c9e21673 Mon Sep 17 00:00:00 2001 From: Joe Conway Date: Thu, 30 Nov 2017 20:39:09 -0500 Subject: [PATCH] Add missing command to install instructions --- README.md | 1 + k8s/deployment.yaml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5637574..1f20846 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,7 @@ pub serve A Dockerfile and Kubernetes configuration file is available for deployment. To run on Google Cloud: ```bash +pub build docker build -t gcr.io//tour-of-heroes:latest . gcloud docker -- push gcr.io//tour-of-heroes:latest kubectl apply -f k8s/ diff --git a/k8s/deployment.yaml b/k8s/deployment.yaml index 5ee639d..7ce9c06 100644 --- a/k8s/deployment.yaml +++ b/k8s/deployment.yaml @@ -25,7 +25,7 @@ spec: containers: - name: aqueduct-tutorial imagePullPolicy: Always - image: $IMAGE_NAME + image: gcr.io/sk-tools-180203/ ports: - containerPort: 80 --- -- GitLab