From 87731ebb017254345863b9710c49e805b46a1a77 Mon Sep 17 00:00:00 2001 From: moeyui1 <894immyk@gmail.com> Date: Thu, 28 Feb 2019 02:06:49 +0800 Subject: [PATCH] fix the alignment problem (#940) --- serving/samples/source-to-url-go/README.md | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/serving/samples/source-to-url-go/README.md b/serving/samples/source-to-url-go/README.md index fa4202340..bc5144386 100644 --- a/serving/samples/source-to-url-go/README.md +++ b/serving/samples/source-to-url-go/README.md @@ -77,18 +77,17 @@ available, but these are the key steps: 1. Create a new `Service Account` manifest which is used to link the build process to the secret. Save this file as `service-account.yaml`: + + ```yaml + apiVersion: v1 + kind: ServiceAccount + metadata: + name: build-bot + secrets: + - name: basic-user-pass + ``` -```yaml -apiVersion: v1 -kind: ServiceAccount -metadata: - name: build-bot -secrets: - - name: basic-user-pass -``` - -1. After you have created the manifest files, apply them to your cluster with - `kubectl`: +1. After you have created the manifest files, apply them to your cluster with `kubectl`: ```shell $ kubectl apply --filename docker-secret.yaml