This repository has been archived by the owner on Nov 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Rings in `bedrock.yaml` now contain a `targetBranch` (set via `--target-branch` flag on `ring create`). - The `targetBranch` is used as the the trigger branch for the serve-build-and-update pipelines; Added during `ring create` time. - The HLD repository now follows a directory structure of: ``` HLD ├── component.yaml └── my-application ├── access.yaml ├── config │ └── common.yaml ├── component.yaml └── <service-name> ├── config │ └── common.yaml ├── component.yaml └── <branch-name> # Is no longer always the name of the ring -- uses targetBranch if it was provided and the ring name as fallback ├── component.yaml ├── config │ └── common.yaml └── static ├── ingress-route.yaml # still matches on a `Ring` header for the ring name └── middlewares.yaml ``` closes microsoft/bedrock#1313
- Loading branch information
Showing
11 changed files
with
148 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,12 @@ | ||
{ | ||
"command": "create <ring-name>", | ||
"alias": "c", | ||
"description": "Create a new ring for the current working directory project repository. This will affect all services within the project repository." | ||
"description": "Create a new ring for the current working directory project repository. This will affect all services within the project repository.", | ||
"options": [ | ||
{ | ||
"arg": "--target-branch <branch-name>", | ||
"description": "The target branch this ring will map to; defaults to <ring-name> if not provided.", | ||
"defaultValue": "" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.