added reference to bedrock prereqs (#1403)

This commit is contained in:
Yvonne Radsmikham 2020-05-01 14:13:10 -07:00 коммит произвёл GitHub
Родитель 9dad09cc82
Коммит 4354e354a2
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 9 добавлений и 9 удалений

Просмотреть файл

@ -10,22 +10,23 @@ In this walkthrough, we will set up an Azure DevOps pipeline that generates a re
There are a few requirements to use this automation: There are a few requirements to use this automation:
1. The application code and supporting repositories are hosted on 1. Install the [Bedrock Prerequisites](https://github.com/microsoft/bedrock/blob/master/tools/prereqs/README.md) (if they're not already installed).
2. The application code and supporting repositories are hosted on
[Azure Devops](https://azure.microsoft.com/en-us/services/devops/). [Azure Devops](https://azure.microsoft.com/en-us/services/devops/).
- If starting from scratch, then first create a - If starting from scratch, then first create a
[new Azure Devops Organization](https://docs.microsoft.com/en-us/azure/devops/user-guide/sign-up-invite-teammates?view=azure-devops), [new Azure Devops Organization](https://docs.microsoft.com/en-us/azure/devops/user-guide/sign-up-invite-teammates?view=azure-devops),
then then
[create a project](https://docs.microsoft.com/en-us/azure/devops/organizations/projects/create-project?view=azure-devops&tabs=preview-page). [create a project](https://docs.microsoft.com/en-us/azure/devops/organizations/projects/create-project?view=azure-devops&tabs=preview-page).
2. A Manifest Repository inside the Azure DevOps project from Step 1. [Create a repository](https://docs.microsoft.com/en-us/azure/devops/repos/git/create-new-repo?view=azure-devops). 3. A Manifest Repository inside the Azure DevOps project from Step 1. [Create a repository](https://docs.microsoft.com/en-us/azure/devops/repos/git/create-new-repo?view=azure-devops).
3. An HLD Repository inside the Azure DevOps project from Step 1. [Create a repository](https://docs.microsoft.com/en-us/azure/devops/repos/git/create-new-repo?view=azure-devops). 4. An HLD Repository inside the Azure DevOps project from Step 1. [Create a repository](https://docs.microsoft.com/en-us/azure/devops/repos/git/create-new-repo?view=azure-devops).
4. The application will be packaged and run using container images hosted on 5. The application will be packaged and run using container images hosted on
[Azure Container Registry](https://azure.microsoft.com/en-us/services/container-registry/) [Azure Container Registry](https://azure.microsoft.com/en-us/services/container-registry/)
5. The user running `bedrock` has full access to the above resources. 6. The user running `bedrock` has full access to the above resources.
6. The user is running the latest `bedrock` 7. The user is running the latest `bedrock`
[release](https://github.com/microsoft/bedrock-cli/releases). [release](https://github.com/microsoft/bedrock-cli/releases).
7. The user has 8. The user has
[Azure CLI installed](https://docs.microsoft.com/en-us/cli/azure/?view=azure-cli-latest). [Azure CLI installed](https://docs.microsoft.com/en-us/cli/azure/?view=azure-cli-latest).
8. The user is running [git](http://git-scm.org) version 9. The user is running [git](http://git-scm.org) version
[2.22](https://github.blog/2019-06-07-highlights-from-git-2-22/) or later. [2.22](https://github.blog/2019-06-07-highlights-from-git-2-22/) or later.
**Note**: If a user wishes to store Helm charts in the application **Note**: If a user wishes to store Helm charts in the application
@ -88,7 +89,6 @@ wish to utilize `bedrock` with another project or target, then you must rerun
`bedrock init` with another configuration first OR, you may overwrite each commands `bedrock init` with another configuration first OR, you may overwrite each commands
via flags. via flags.
## Repositories ## Repositories
Our next step is to onboard the repositories that support the Our next step is to onboard the repositories that support the
deployment of our services: deployment of our services: