You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 13, 2020. It is now read-only.
Install the manifest generation pipeline to your Azure DevOps instance. Default values are set in spk-config.yaml and can be loaded via spk init or overriden via option flags.
103
-
104
-
Options:
105
-
-n, --pipeline-name <pipeline-name> Name of the pipeline to be created (default: "")
106
-
-p, --personal-access-token <personal-access-token> Personal Access Token (default: "")
107
-
-o, --org-name <org-name> Organization Name for Azure DevOps (default: "")
-b, --build-script-url <build-script-url> Build Script URL. By default it is 'https://raw.githubusercontent.com/Microsoft/bedrock/master/gitops/azure-devops/build.sh'. (default: "https://raw.githubusercontent.com/Microsoft/bedrock/master/gitops/azure-devops/build.sh")
112
-
--yaml-file-branch <yaml-file-branch> The git branch where the pipeline definition yaml file is located. (default: "master")
113
-
-h, --help output usage information
114
-
```
115
-
116
-
### reconcile
117
-
118
-
The reconcile feature scaffolds a HLD with the services in the `bedrock.yaml`
119
-
file at the root level of the application repository. Recall that in a
120
-
mono-repo, `spk service create` will add an entry into the `bedrock.yaml`
121
-
corresponding to all tracked services. When the service has been merged into
122
-
`master` of the application repository, a pipeline (see `hld-lifecycle.yaml`,
123
-
created by `spk project init`) runs `spk hld reconcile` to add any _new_
124
-
services tracked in `bedrock.yaml` to the HLD.
125
-
126
-
This command is _intended_ to be run in a pipeline (see the generated
127
-
`hld-lifecycle.yaml` created from `spk project init`), but can be run by the
Copy file name to clipboardExpand all lines: guides/project-management.md
+14-14Lines changed: 14 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,27 +3,18 @@
3
3
Create and manage components for a Bedrock project. All project management
4
4
commands will need to run in the order as listed below due to dependencies.
5
5
6
-
Usage:
6
+
## Prerequisites
7
+
8
+
An Azure DevOps git repository.
9
+
10
+
## Usage
7
11
8
12
```
9
13
Usage: project [options] [command]
10
14
11
15
Initialize and manage your Bedrock project.
12
-
13
-
Options:
14
-
-v, --verbose Enable verbose logging
15
-
-h, --help output usage information
16
-
17
-
Commands:
18
-
create-variable-group|cvg [options] <variable-group-name> Create a new variable group in Azure DevOps project with specific variables (ACR name, HLD Repo name, Personal Access Token, Service Principal id, Service Principal password, and Azure AD tenant id)
19
-
init|i [options] Initialize your spk repository. Add starter bedrock.yaml, maintainers.yaml, hld-lifecycle.yaml, and .gitignore files to your project.
20
-
install-lifecycle-pipeline|p [options] Install the hld lifecycle pipeline to your Azure DevOps instance
0 commit comments