-
Notifications
You must be signed in to change notification settings - Fork 0
Slim down README #72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Slim down README #72
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
a335211
Remove docs "Work in progress" notice in README
MJGaughran 31cbf5a
Remove redundant schema information from README
MJGaughran 070a50c
Remove redundant CLI command and VSCode task information from README
MJGaughran d2180a1
Move deployment steps from README into separate page
MJGaughran 7ef5639
Split off Glossary into separate docs page
MJGaughran 357c76f
Improve schema command description in README
MJGaughran 2ca0d08
Add note in README to indicate commands are typically run in CI
MJGaughran c2da0dd
Use "Area" consistently in documentation
MJGaughran e80d821
Reorder glossary
MJGaughran 2921533
Clarify Deployment vs deployment in glossary
MJGaughran File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| # The deployment process | ||
|
|
||
| A deployment is made up of several conceptual **steps**, deliberately **not** one-to-one | ||
| with the CLI commands: one command may run several steps, and some are never exposed as | ||
| a command of their own. For the commands themselves see the [CLI reference](../cli.md). | ||
|
|
||
| | Step | Description | Run by | | ||
| |------|-------------|--------| | ||
| | Compare | Compare the current deployment snapshot against the modulefiles and built modules that actually exist, confirming the [deployment area](deployment-area.md) is healthy. | `compare` | | ||
| | Validate | Diff the new configuration against the current snapshot to determine the set of actions to take, and check those actions are permitted by the [release lifecycle](deprecation-lifecycle.md). | `validate`, `sync` | | ||
| | Build | Generate entrypoint scripts, configuration files and environment variables for each changed Module, writing them to the build area. | `sync` (`validate --test-build`) | | ||
| | Deploy | Move the built Modules from the build area into the Modules Area, link each modulefile into the live or deprecated tree according to its status, and update default versions. | `sync` | | ||
|
|
||
| ## Why build and deploy are not separate commands | ||
|
|
||
| There is no standalone `build` or `deploy` command. `sync` always runs them together, so | ||
| a half-built Module is never exposed to users: either a version is built *and* linked into | ||
| place, or nothing changes. | ||
|
|
||
| ## How the steps fit together | ||
|
|
||
| `sync` is the only step that writes to the deployment area; `compare` and `validate` are | ||
| read-only checks run before it. See | ||
| [snapshots and the compare safety net](snapshots-and-compare.md) for how the snapshot | ||
| ties them together, and [drive deploy-tools from CI](../how-to/ci-pipeline.md) for the | ||
| order a pipeline runs them in. | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.