Skip to content

Commit a67948b

Browse files
committed
App flow
minor edit 2 Appflow link mod Revert "minor change" This reverts commit 0ad3d67be90d68955d7033e3cd9e61869e6cb8b6. Revert "minor edit 2" This reverts commit a4c4978413b70d9273647a50a5b56c7428f82e00. note correction edits minor edit review edits review edits 2
1 parent 304a4e6 commit a67948b

File tree

7 files changed

+15
-14
lines changed

7 files changed

+15
-14
lines changed

applications/application_life_cycle_management/odc-creating-applications-using-developer-perspective.adoc

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,28 +11,27 @@ image::odc_add_view.png[Add View]
1111

1212
* *From Git*: Use this option to import an existing codebase in a Git repository to create, build, and deploy an application on {product-title}.
1313
* *Container Image*: Use existing images from an image stream or registry to deploy it on to {product-title}.
14-
* *From Catalog*: Explore the *Developer Catalog* to select the required applications, services, or source to image builders and add it to your project.
1514
* *From Dockerfile*: Import a dockerfile from your Git repository to build and deploy an application.
1615
* *YAML*: Use the editor to add YAML or JSON definitions to create and modify resources.
16+
* *From Catalog*: Explore the *Developer Catalog* to select the required applications, services, or source to image builders and add it to your project.
1717
* *Database*: See the *Developer Catalog* to select the required database service and add it to your application.
18+
* *Operator Backed*: Explore the *Developer Catalog* to select and deploy the required Operator-managed service.
19+
* *Helm Chart*: Explore the *Developer Catalog* to select the required Helm chart to simplify deployment of applications and services.
1820

1921
ifdef::openshift-enterprise,openshift-webscale[]
20-
[NOTE]
21-
====
22-
Serverless options in the *Developer* perspective are displayed only if the xref:../../serverless/installing_serverless/installing-openshift-serverless.adoc#serverless-install-web-console_installing-openshift-serverless[*OpenShift Serverless Operator*] is installed in your cluster.
23-
====
22+
Note that certain options, such as *Pipelines*, *Event Source*, and *Import Virtual Machines*, are displayed only when the xref:../../pipelines/installing-pipelines.adoc#op-installing-pipelines-operator-in-web-console_installing-pipelines[OpenShift Pipelines], xref:../../serverless/installing_serverless/installing-openshift-serverless.adoc#serverless-install-web-console_installing-openshift-serverless[OpenShift Serverless], and xref:../../virt/install/installing-virt.adoc#virt-subscribing-to-the-catalog_installing-virt[Container-native virtualization] Operators are installed, respectively.
2423
endif::[]
2524

2625
.Prerequisites
2726
To create applications using the *Developer* perspective ensure that:
2827

2928
* You have xref:../../web_console/web-console.adoc#web-console[logged in to the web console].
3029
* You are in the xref:../../web_console/odc-about-developer-perspective.adoc#odc-about-developer-perspective[*Developer* perspective].
31-
* You have the appropriate xref:../../authentication/using-rbac.adoc#default-roles_using-rbac[roles and permissions] in a project to create applications and other workloads in {product-title}.
30+
* You have created a project or have access to a project with the appropriate xref:../../authentication/using-rbac.adoc#default-roles_using-rbac[roles and permissions] to create applications and other workloads in {product-title}.
3231

3332
ifdef::openshift-enterprise,openshift-webscale[]
3433

35-
To create serverless applications, in addition to the preceeding prerequisites, ensure that:
34+
To create serverless applications, in addition to the preceding prerequisites, ensure that:
3635

3736
* You have xref:../../serverless/installing_serverless/installing-openshift-serverless.adoc#installing-openshift-serverless[installed the Openshift Serverless Operator].
3837
* You have xref:../../serverless/installing_serverless/installing-knative-serving.adoc#installing-knative-serving[created a knative-serving namespace and a KnativeServing resource in the knative-serving namespace].

images/odc_add_view.png

10.8 KB
Loading

images/odc_annotation.png

-83.6 KB
Binary file not shown.

images/odc_import_from_git.png

-91.7 KB
Loading

modules/odc-accessing-developer-perspective.adoc

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ You can access the *Developer* perspective from the web console as follows:
1212
.Procedure
1313

1414
. Log in to the {product-title} web console using your login credentials. The default view for the {product-title} web console is the *Administrator* perspective.
15-
. Use the perspective switcher to switch to the *Developer* perspective. The *Topology* view with options to create an application is displayed.
15+
. Use the perspective switcher to switch to the *Developer* perspective. The *Topology* view with a list of all the projects in your cluster is displayed.
1616
+
1717
image::odc_developer_perspective.png[Developer Perspective]
18+
+
19+
. Select an existing project from the list or use the *Project* drop-down list to create a new project.
20+
21+
If you have no workloads or applications in the project, the *Topology* view displays the available options to create applications. If you have existing workloads, the *Topology* view graphically displays your workload nodes.

modules/odc-connecting-components.adoc

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,8 @@ You can connect a MongoDB service with a Node.js application visually as follows
2727
image::odc_connector.png[Connector]
2828

2929
. Click and drag the arrow towards the Node.js component to connect the MongoDB service with it.
30-
. Click on the MongoDB service to see the *Overview* Panel. In the *Annotations* section, click the edit icon to see the *Key = `app.openshift.io/connects-to`* and *Value = `nodejs-ex`* annotation added to the service.
31-
+
32-
image::odc_annotation.png[Annotation]
33-
+
30+
. Click on the MongoDB service to see the *Overview* Panel. In the *Annotations* section, click the edit icon to see the *Key = `app.openshift.io/connects-to`* and *Value = `[{"apiVersion":"apps.openshift.io/v1","kind":"DeploymentConfig","name":"nodejs-ex"}]`* annotation added to the service.
31+
3432
Similarly you can create other applications and components and establish connections between them.
3533
+
3634
image::odc_connecting_multiple_applications.png[Connecting Multiple Applications]

modules/odc-importing-codebase-from-git-to-create-application.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
[id="odc-importing-codebase-from-git-to-create-application_{context}"]
66
= Importing a codebase from Git to create an application
77

8-
The following procedure walks you through the *From Git* option in the *Developer* perspective to create an application.
8+
You can use the *Developer* perspective to create, build, and deploy an application on {product-title} using an existing codebase in GitHub.
99

10-
Create, build, and deploy an application on {product-title} using an existing codebase in GitHub as follows:
10+
The following procedure walks you through the *From Git* option in the *Developer* perspective to create an application.
1111

1212
.Procedure
1313

0 commit comments

Comments
 (0)