Skip to content
This repository was archived by the owner on Nov 5, 2024. It is now read-only.

Commit 71ba49b

Browse files
jc-bergergtrivedi88
authored andcommitted
Merge pull request #108 from Michkov/custom-pr-update-note
STONEBLD-871: Pipeline update pull-request note
2 parents 3053e48 + bda31db commit 71ba49b

File tree

7 files changed

+60
-9
lines changed

7 files changed

+60
-9
lines changed

docs/modules/ROOT/nav-getting-started.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
* xref:getting-started/why-product-name.adoc[Why {ProductName}]
2-
* xref:getting-started/index.adoc[Get started]
2+
* xref:getting-started/get-started.adoc[Get started]
33
** xref:getting-started/getting_started_in_cli.adoc[Getting started in the CLI]
44
55

docs/modules/ROOT/nav-how-to-guides.adoc

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,17 @@
22
** Securing your supply chain
33
*** xref:how-to-guides/Secure-your-supply-chain/proc_upgrade_build_pipeline.adoc[Upgrading the build pipeline]
44
*** xref:how-to-guides/Secure-your-supply-chain/proc_inspect_sbom.adoc[Inspecting SBOMs]
5-
*** xref:how-to-guides/Secure-your-supply-chain/proc_java_dependencies.adoc[Configuring dependencies rebuild for Java apps]
6-
** xref:how-to-guides/proc_creating_your_own_environment.adoc[Creating your own environment]
7-
** xref:how-to-guides/creating_a_custom_application_test_with_test_pipelines.adoc[Creating a custom application test with test pipelines]
8-
** xref:how-to-guides/proc_managed_services_onboarding.adoc[Managed services team onboarding]
9-
** xref:how-to-guides/proc_managing-compliance-with-the-enterprise-contract.adoc[Managing compliance with the Enterprise Contract]
5+
**** xref:how-to-guides/Secure-your-supply-chain/proc_inspect_sbom.adoc#_downloading_an_sbom_in_the_web_ui[In the web UI]
6+
**** xref:how-to-guides/Secure-your-supply-chain/proc_inspect_sbom.adoc#_downloading_an_sbom_in_the_cli[In the CLI]
7+
*** xref:how-to-guides/Secure-your-supply-chain/proc_java_dependencies.adoc[Configuring dependencies rebuild for Java apps in the CLI]
8+
** xref:how-to-guides/proc_creating_your_own_environment.adoc[Web UI: Creating your own environment]
9+
** xref:how-to-guides/creating_a_custom_application_test_with_test_pipelines.adoc[CLI: Creating a custom application test with test pipelines]
10+
** xref:how-to-guides/proc_managed_services_onboarding.adoc[CLI: Managed services team onboarding]
11+
** xref:how-to-guides/proc_managing-compliance-with-the-enterprise-contract.adoc[Web UI: Managing compliance with the Enterprise Contract]
12+
** xref:how-to-guides/proc_delete_application.adoc[Deleting an application].
13+
*** xref:how-to-guides/proc_delete_application.adoc#deleting-an-application-in-the-ui[In the web UI].
14+
*** xref:how-to-guides/proc_delete_application.adoc#deleting-an-application-in-the-cli[Using CLI].
15+
1016
1117
////
1218
Commenting these out per HACDOCS-425 and -414
File renamed without changes.

docs/modules/ROOT/pages/getting-started/why-product-name.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ After you merge the PR, the commit activity shows that the merged commit is bein
5454
With {ProductName}, it’s easy to automate the application creation process from commit to production deployment.
5555

5656
== What’s next
57-
To learn how to create an app with a sample, go to xref:getting-started/index.adoc[Getting started].
57+
To learn how to create an app with a sample, go to xref:getting-started/get-started.adoc[Getting started].

docs/modules/ROOT/pages/how-to-guides/Secure-your-supply-chain/proc_upgrade_build_pipeline.adoc

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,8 @@ After upgrading the build pipeline, you can also customize it:
4646
. Find the new `.tekton` directory, which is the result of upgrading the build pipeline.
4747
. Modify the contents of this directory to change how {ProductName} builds the component.
4848

49-
49+
[NOTE]
50+
====
51+
{ProductName} creates pull requests that contain updates to the pipeline definitions under the `.tekton` directory.
52+
Run the tests on these pull requests by creating a comment containing `/ok-to-test` and then merging the changes when the tests pass.
53+
====
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
= Deleting an application
2+
3+
You can delete an application if you are the owner or if you have admin access to the application.
4+
5+
WARNING: If you delete an application permanently, you delete all the components and resources from the user interface (UI) and upstream repositories. You cannot undo the deletion.
6+
7+
== Deleting an application in the web UI
8+
.*Prerequisites*
9+
10+
* You have successfully signed into {ProductName}.
11+
* You have at least one application.
12+
13+
.*Procedures*
14+
15+
. In the console, select *My applications*.
16+
. Next to your applications, click *More* image:more.png[alt=More] and then select *Delete*.
17+
. In *Enter application name to delete*, enter the relevant application name and then select *Delete*.
18+
19+
+
20+
NOTE: You can also delete an application by selecting *Actions > Delete Application*.
21+
22+
23+
== Deleting an application using CLI
24+
25+
.*Prerequisites*
26+
27+
* You have successfully signed into {ProductName}.
28+
* You have at least one application.
29+
30+
.*Procedures*
31+
32+
* To delete an application, run the following command:
33+
+
34+
[source,command]
35+
----
36+
oc delete application/<the-application-name>
37+
----
38+
39+
== Additional resources
40+
* To create your first application in the web UI, refer to xref:getting-started/get-started.adoc#creating-your-first-application[Creating your first application].
41+
* To create your first application using CLI, refer to xref:getting-started/getting_started_in_cli[Getting started in CLI].

docs/modules/ROOT/pages/index.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Developers often use deployment variables, also called environment variables, to
3838
== Using these documents
3939
To learn more and to get started with {ProductName}, see the following sections:
4040

41-
xref:getting-started/index.adoc[Getting started]:: Get started with {ProductName}.
41+
xref:getting-started/get-started.adoc[Getting started]:: Get started with {ProductName}.
4242
[]
4343
xref:how-to-guides/index.adoc[*How-to guides*]:: Put {ProductName} to work for you.
4444
[]

0 commit comments

Comments
 (0)