fix the alignment problem (#940)

This commit is contained in:
moeyui1 2019-02-28 02:06:49 +08:00 committed by Knative Prow Robot
parent e349cae069
commit 87731ebb01
1 changed files with 10 additions and 11 deletions

View File

@ -78,17 +78,16 @@ available, but these are the key steps:
1. Create a new `Service Account` manifest which is used to link the build 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`: process to the secret. Save this file as `service-account.yaml`:
```yaml ```yaml
apiVersion: v1 apiVersion: v1
kind: ServiceAccount kind: ServiceAccount
metadata: metadata:
name: build-bot name: build-bot
secrets: secrets:
- name: basic-user-pass - name: basic-user-pass
``` ```
1. After you have created the manifest files, apply them to your cluster with 1. After you have created the manifest files, apply them to your cluster with `kubectl`:
`kubectl`:
```shell ```shell
$ kubectl apply --filename docker-secret.yaml $ kubectl apply --filename docker-secret.yaml