Skip to content

Commit 81ba2a0

Browse files
committed
combine deployment overviews
1 parent e249d93 commit 81ba2a0

File tree

4 files changed

+369
-39
lines changed

4 files changed

+369
-39
lines changed

.vscode/settings.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"vale.server.enabled": true,
3+
"vale.server.path": "vale",
4+
"vale.server.onSave": true,
5+
"vale.server.onType": false,
6+
"vale.server.lintOnOpen": true,
7+
"files.associations": {
8+
"*.adoc": "asciidoc"
9+
},
10+
"vale.server.workspaceFolder": "${workspaceFolder}",
11+
"vale.server.configuration": "${workspaceFolder}/.vale.ini"
12+
}

docs/guides/modules/ROOT/nav.adoc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,7 @@
160160
*** xref:test:troubleshoot-test-splitting.adoc[Troubleshoot test splitting]
161161
162162
* Deploy with CircleCI
163-
** xref:deploy:deployment-overview.adoc[Overview of deployment on CircleCI]
164-
** xref:deploy:deploys-overview.adoc[CircleCI deploys overview]
163+
** xref:deploy:deployment-overview.adoc[Deployment and deploy management]
165164
** Setup
166165
*** xref:deploy:configure-deploy-markers.adoc[Configure deploy markers]
167166
*** xref:deploy:set-up-rollbacks.adoc[Rollbacks]

docs/guides/modules/deploy/pages/configure-deploy-markers.adoc

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This tutorial shows how to add a deploy marker step to your workflow config. Dep
99

1010
Deploy markers provide a lightweight way to log your deployments without requiring a you to install the CircleCI release agent. If you install deploy markers, as described in this guide, you will also be able to use the xref:set-up-rollbacks.adoc[CircleCI rollback feature].
1111

12-
For a full guide to CircleCI's deploys features and functionality, refer to the xref:set-up-circleci-deploys.adoc[Set up CircleCI deploys] guide.
12+
For a full guide to CircleCI's deploys features and functionality, refer to the xref:deployment-overview.adoc[Deployment and deploy management] guide.
1313

1414
== Prerequisites
1515

@@ -291,6 +291,22 @@ To manually create an environment integration, follow these steps:
291291
If you plan to only use deploy markers, as opposed to the Kubernetes agent, feel free to choose the `custom` type.
292292
**You do not need to continue with installing a release agent at this point**, but you will need to reference this environment integration name as part of your config when adding the `log release` step below.
293293

294+
== Manual configuration of automatically detected deploys
295+
296+
If you have some link:https://circleci.com/changelog/auto-generated-deploy-markers-are-being-sunset/[automatically detected deploy markers] you can consider manually configuring them. CircleCI no longer automatically creates deploy markers for you.
297+
298+
Some points to consider when manually configuring an automatically detected deploy are as follows:
299+
300+
* If you change a component name that was originally autodetected by CircleCI, we create a new component and the history **will not** carry over. If you do not update the component name, the history **will** carry over.
301+
302+
* If your environment integration has an autogenerated name, you can edit the name as follows:
303+
. In the link:https://circleci.com/app/home[CircleCI web app], select your organization.
304+
. Select **Deploys** in the sidebar.
305+
. Select the **Environments** tab.
306+
. Find your environment and select cog icon image:guides:ROOT:icons/settings.svg[settings icon, role="no-border"] to enter the environment integration settings page.
307+
. Select **Edit**.
308+
. Enter a new name and select btn:[Update].
309+
294310
== Next steps
295311

296312
By following the steps in this guide, you have added a deploy marker to your CircleCI configuration.

0 commit comments

Comments
 (0)