Skip to content

Commit 08fbf04

Browse files
authored
Merge pull request #24198 from sap-tutorials/fix/md-source-1963-batch-6
Fix malformed markdown at source (#1963) (batch 6/15)
2 parents ea0b5a3 + d0f8a94 commit 08fbf04

25 files changed

Lines changed: 524 additions & 524 deletions

File tree

tutorials/cp-cf-events-overview/cp-cf-events-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ cf events cf-nodejs
3535

3636
You will be greeted by output showing the last 50 events that have occurred in relation to the application.
3737

38-
<!-- border -->![cf events example](cf-events.png)
38+
![cf events example](cf-events.png)
3939

4040

4141
### Events through the CF API

tutorials/cp-cf-forward-logs-metrics/cp-cf-forward-logs-metrics.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ $ cf create-user-provided-service <drain-name> -l <drain-url>
5959
- `drain-name`: any name you would like to use for your drain service
6060
- `drain-url`: the URL provided by the third-party service for long-term persistence (storage)
6161

62-
<!-- border -->![Create a drain service](create-drain.png)
62+
![Create a drain service](create-drain.png)
6363

6464
Next, bind an app to the service by specifying the service in the manifest, or running:
6565

@@ -70,7 +70,7 @@ $ cf bind-service <app-name> <drain-name>
7070
- `app-name`: the name of the app you want to get logs _from_
7171
- `drain-name`: the name of the service you created in step 1 above
7272

73-
<!-- border -->![Bind the service](bind-service.png)
73+
![Bind the service](bind-service.png)
7474

7575
Finally, you need to restage your application so it picks up the configuration changes. Simply restarting the application does not pick up the changes.
7676

tutorials/cp-cf-overview-application-metrics/cp-cf-overview-application-metrics.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Now that you know about the CPU, disk, and memory metrics, you probably also wan
9090
cf app cf-nodejs
9191
```
9292

93-
<!-- border -->![Using the cf apps command](cf-app-cf-nodejs.png)
93+
![Using the cf apps command](cf-app-cf-nodejs.png)
9494

9595

9696
### View metrics with the log cache plugin
@@ -102,7 +102,7 @@ The log cache, besides storing logs, also stores container metrics. Viewing metr
102102
cf tail -c metrics cf-nodejs
103103
```
104104

105-
<!-- border -->![Viewing metrics with log cache](cf-log-cache-metrics.png)
105+
![Viewing metrics with log cache](cf-log-cache-metrics.png)
106106

107107

108108
---

tutorials/cp-cf-understand-application-lifecycle/cp-cf-understand-application-lifecycle.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,19 +48,19 @@ Once you run the command you will see lots of output print to the screen, and if
4848

4949
The uploading phase begins as follows:
5050

51-
<!-- border -->![Uploading](uploading-phase.png)
51+
![Uploading](uploading-phase.png)
5252

5353
After that, the staging phase begins. You can see the buildpacks being downloaded (since a specific buildpack is not specified it downloads all of them):
5454

55-
<!-- border -->![Staging Begins](staging-phase.png)
55+
![Staging Begins](staging-phase.png)
5656

5757
You can also see when the droplet get uploaded:
5858

59-
<!-- border -->![Droplet uploaded](droplet-uploaded.png)
59+
![Droplet uploaded](droplet-uploaded.png)
6060

6161
And finally you see the starting phase:
6262

63-
<!-- border -->![Application starting](starting-phase.png)
63+
![Application starting](starting-phase.png)
6464

6565
> If you run `cf push` for an existing application, _all instances of that application are stopped_ and new instances are started with the code you just pushed. Users that try to access the app during this time may get various HTTP error messages, such as "404" ("file not found") and others, while the application is redeployed. The Cloud Foundry API `v3` support the so called [Rolling App Deployments](https://docs.cloudfoundry.org/devguide/deploy-apps/rolling-deploy.html) with `cf push <app-name> --strategy rolling` which allows to push an app without downtime. The API `v3` are also supported on SAP BTP.
6666

tutorials/cp-cf-understand-docker-application-lifecycle/cp-cf-understand-docker-application-lifecycle.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ docker build -t <username>/cf-nodejs-app .
6767

6868
You should see output similar to the following:
6969

70-
<!-- border -->![Running docker build](docker-build.png)
70+
![Running docker build](docker-build.png)
7171

7272
Now that the image is built, you need to push it to a repository on `Dockerhub`. Running the following commands, a repository will be created for your user called `cf-nodejs-app` and your image will be uploaded to it:
7373

@@ -76,7 +76,7 @@ docker login -u <docker-id>
7676
docker push <username>/cf-nodejs-app
7777
```
7878

79-
<!-- border -->![Pushing the Docker image](docker-push.png)
79+
![Pushing the Docker image](docker-push.png)
8080

8181
Finally, once the image has been uploaded, you can push the image to Cloud Foundry (you can replace the name `docker-nodejs` with whatever you want to name your application).
8282

@@ -94,7 +94,7 @@ cf app docker-nodejs
9494

9595
You should then see the `docker image` field with the name your Docker image next to it, similar to the output below.
9696

97-
<!-- border -->![Link text e.g., Destination screen](docker-image.png)
97+
![Link text e.g., Destination screen](docker-image.png)
9898

9999
After running through this example, you can see that using a Docker image requires you to specify and configure things that you didn't have to be concerned with when using a buildpack. A buildpack handles most of this in the background for you.
100100

tutorials/cp-cf-workflowmanagement-configuremd/cp-cf-workflowmanagement-configuremd.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ You configure the auto approval policy using this tutorial. This policy is used
3333

3434
1. Choose the **Process Flexibility Cockpit**. Then navigate to **My Live Processes** section and choose **Sample Capital Expenditure Approval Process** tile.
3535

36-
<!-- border -->![PFC](cp-cf-wm-configuredecision-home2.png)
36+
![PFC](cp-cf-wm-configuredecision-home2.png)
3737

38-
<!-- border -->![Capital Expenditure](cp-cf-wm-discover-importedcapex0.png)
38+
![Capital Expenditure](cp-cf-wm-discover-importedcapex0.png)
3939

4040
2. Choose the **Determine All Approvers** decision.
4141

42-
<!-- border -->![Manage decisions](cp-cf-wm-configuredecision-determine.png)
42+
![Manage decisions](cp-cf-wm-configuredecision-determine.png)
4343

4444
You are now in the **Manage Decisions** view.
4545

@@ -49,42 +49,42 @@ You configure the auto approval policy using this tutorial. This policy is used
4949

5050
1. Choose the **Determine All Approvers** decision, then choose **Copy to Draft** to create a draft version of the decision.
5151

52-
<!-- border -->![Copy to Draft](cp-cf-wm-configuredecision-copy.png)
52+
![Copy to Draft](cp-cf-wm-configuredecision-copy.png)
5353

5454
2. In the warning dialog, choose **Continue**.
5555

5656
![Copy Confirm](cp-cf-wm-configuredecision-warning.png)
5757

5858
3. Choose the draft version of the decision, and then choose **Policies** > **Auto Approval Policy**.
5959

60-
<!-- border -->![Auto app](cp-cf-wm-configuredecision-autoapp.png)
60+
![Auto app](cp-cf-wm-configuredecision-autoapp.png)
6161

6262
4. Choose the **Auto Approval** rule.
6363

64-
<!-- border -->![Auto App Rule](cp-cf-wm-configuredecision-autorule.png)
64+
![Auto App Rule](cp-cf-wm-configuredecision-autorule.png)
6565

6666
5. Choose **Edit**.
6767

68-
<!-- border -->![Edit Rule](cp-cf-wm-configuredecision-edit.png)
68+
![Edit Rule](cp-cf-wm-configuredecision-edit.png)
6969

7070
6. Modify the text rule value to **`5000`** and **Save** the changes.
7171

72-
<!-- border -->![Text Rule Value](cp-cf-wm-configuredecision-autovalue.png)
72+
![Text Rule Value](cp-cf-wm-configuredecision-autovalue.png)
7373

7474

7575
### Release and activate decision
7676

7777
1. Choose **Release Version**.
7878

79-
<!-- border -->![Release Version](cp-cf-wm-configuredecision-release.png)
79+
![Release Version](cp-cf-wm-configuredecision-release.png)
8080

8181
2. In the **Release Version** dialog, provide the revision number and description. Then choose **Release**.
8282

83-
<!-- border -->![Release](cp-cf-wm-configuredecision-releasedialog.png)
83+
![Release](cp-cf-wm-configuredecision-releasedialog.png)
8484

8585
3. Choose the decision with the version number from the previous step and then choose **Activate**.
8686

87-
<!-- border -->![Activate Decision](cp-cf-wm-configuredecision-activate.png)
87+
![Activate Decision](cp-cf-wm-configuredecision-activate.png)
8888

8989
You have now modified the decision for your package.
9090

tutorials/cp-cf-workflowmanagement-configurepv/cp-cf-workflowmanagement-configurepv.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -31,28 +31,28 @@ In this tutorial, you can configure one such approval step and activate a proces
3131

3232
1. In the **Process Flexibility Cockpit**, navigate to **My Live Processes** section and choose **Sample Capital Expenditure Approval Process** tile.
3333

34-
<!-- border -->![CAPEX](cp-cf-wm-discover-importedcapex0.png)
34+
![CAPEX](cp-cf-wm-discover-importedcapex0.png)
3535

3636
2. Choose the **Process Variants** tile.
3737

38-
<!-- border -->![Variants](cp-cf-wm-configurepv-variantstile.png)
38+
![Variants](cp-cf-wm-configurepv-variantstile.png)
3939

4040

4141
### Create a new variant
4242

4343
1. Choose **New Process Variant**.
4444

45-
<!-- border -->![New Variant](cp-cf-wm-configurepv-variantnew.png)
45+
![New Variant](cp-cf-wm-configurepv-variantnew.png)
4646

4747
2. Provide **High Value Investments** as the **Name**. Then choose **Create**.
4848

49-
<!-- border -->![High Value Variant](cp-cf-wm-configurepv-variantname.png)
49+
![High Value Variant](cp-cf-wm-configurepv-variantname.png)
5050

5151
> The **Process** dropdown is preselected as **`Sample Capital Expenditure Approval Process`**. This process refers to the template from which the new variant will be created. A template contains the process steps that are used to configure the different process variants based on business needs.
5252
5353
3. The new process variant is now created with the given name and default description. Choose the newly created **High Value Investments** process variant tile.
5454

55-
<!-- border -->![High Value Tile](cp-cf-wm-configurepv-highval.png)
55+
![High Value Tile](cp-cf-wm-configurepv-highval.png)
5656

5757
You are now in the **Manage Process Variants** view.
5858

@@ -62,19 +62,19 @@ In this tutorial, you can configure one such approval step and activate a proces
6262

6363
1. In the **Manage Process Variants** view, add a new approval step to the template by dragging the **Approval** tile from **Available Steps** and drop it after the **Local Manager Approval** step.
6464

65-
<!-- border -->![Variant Editor](cp-cf-wm-configurepv-approvaldrag.png)
65+
![Variant Editor](cp-cf-wm-configurepv-approvaldrag.png)
6666

6767
>Choose the new approval step that opens the **Step Properties**
6868
69-
><!-- border -->![Variant Editor two](cp-cf-wm-configurepv-newapprovalpng.png)
69+
>![Variant Editor two](cp-cf-wm-configurepv-newapprovalpng.png)
7070
7171
2. In the **Step Properties** section, modify the name of the step to **`CFO Approval`**.
7272

73-
<!-- border -->![Variant Editor two](cp-cf-wm-configurepv-properties1.png)
73+
![Variant Editor two](cp-cf-wm-configurepv-properties1.png)
7474

7575
3. Choose the **Details** tab, then change the **Role Name** to **`CFO`** and **Approval Step** to **`CFO`**.
7676

77-
<!-- border -->![Group Head Details](cp-cf-wm-configurepv-details.png)
77+
![Group Head Details](cp-cf-wm-configurepv-details.png)
7878

7979
>In the **Details** section, you should provide information on the role of the persona that should perform the approval task.
8080
@@ -84,7 +84,7 @@ In this tutorial, you can configure one such approval step and activate a proces
8484

8585
5. Navigate to the Workflow Management home screen.
8686

87-
<!-- border -->![Home screen](cp-cf-wm-configuredecision-home.png)
87+
![Home screen](cp-cf-wm-configuredecision-home.png)
8888

8989

9090
---

tutorials/cp-cf-workflowmanagement-discover/cp-cf-workflowmanagement-discover.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -34,17 +34,17 @@ In this tutorial, you can import a sample package with different artifacts using
3434

3535
1. From your global account page, choose the **trial** tile to access your subaccount.
3636

37-
<!-- border -->![Trial](cp-cf-wm-discover-trial.png)
37+
![Trial](cp-cf-wm-discover-trial.png)
3838

3939
2. Click **Connectivity | Destinations** from the left-hand navigation.
4040

41-
<!-- border -->![Destination screen](cp-cf-wm-discover-trialdestination.png)
41+
![Destination screen](cp-cf-wm-discover-trialdestination.png)
4242

4343
3. Search for the `WM_CF_SPACE_PROVIDER` destination, then choose the edit icon. In the **Destination Configuration** section, enter your SAP BTP trial user password and save the changes.
4444

45-
<!-- border -->![Edit Destination](cp-cf-wm-discover-editdestination.png)
45+
![Edit Destination](cp-cf-wm-discover-editdestination.png)
4646

47-
<!-- border -->![Destination Password](cp-cf-wm-discover-destinationpassword.png)
47+
![Destination Password](cp-cf-wm-discover-destinationpassword.png)
4848

4949
Ensure to replace the dummy password that is provided upon running the booster.
5050
> Ensure that the credentials of the trial user that are entered in the destination do not have **Two Factor Authentication enabled**.
@@ -53,15 +53,15 @@ In this tutorial, you can import a sample package with different artifacts using
5353

5454
1. Navigate to **Services | Service Marketplace**.
5555

56-
<!-- border -->![Subscriptions](cp-cf-wm-discover-subscription.png)
56+
![Subscriptions](cp-cf-wm-discover-subscription.png)
5757

5858
2. Search for the **Workflow Management** tile, and choose **Go To Application** to access the workflow management home screen.
5959

60-
<!-- border -->![Workflow App](cp-cf-wm-discover-goto.png)
60+
![Workflow App](cp-cf-wm-discover-goto.png)
6161

6262
3. In the **Workflow Management** home screen, choose **Process Flexibility Cockpit** tile.
6363

64-
<!-- border -->![Workflow Management](cp-cf-wm-discover-home.png)
64+
![Workflow Management](cp-cf-wm-discover-home.png)
6565

6666

6767
### Discover the capital expenditure package
@@ -73,7 +73,7 @@ In this tutorial, you can import a sample package with different artifacts using
7373

7474
2. Choose the **Sample Capital Expenditure Approval Process** tile.
7575

76-
<!-- border -->![Process Hub](cp-cf-wm-discover-capex.png)
76+
![Process Hub](cp-cf-wm-discover-capex.png)
7777

7878

7979

@@ -82,20 +82,20 @@ In this tutorial, you can import a sample package with different artifacts using
8282

8383
1. Choose **Import**.
8484

85-
<!-- border -->![Import](cp-cf-wm-discover-import.png)
85+
![Import](cp-cf-wm-discover-import.png)
8686

8787
2. In the confirmation dialog, choose **Import**.
8888

89-
<!-- border -->![import dialog](cp-cf-wm-discover-importconfirm.png)
89+
![import dialog](cp-cf-wm-discover-importconfirm.png)
9090

9191
> The import operation takes a few minutes for the package to import. If the package import fails for any reason, then you can check the **Import Logs** to identify the cause. Fix the cause and try to import again.
9292
9393
3. Navigate to the **My Live Processes** section.
9494

95-
<!-- border -->![Breadcrumb](cp-cf-wm-discover-Breadcrumb.png)
95+
![Breadcrumb](cp-cf-wm-discover-Breadcrumb.png)
9696

9797
> You can view the imported **Sample Capital Expenditure Approval Process** package.
9898
99-
><!-- border -->![Live Processes](cp-cf-wm-discover-importedcapex.png)
99+
>![Live Processes](cp-cf-wm-discover-importedcapex.png)
100100
101101

tutorials/cp-cf-workflowmanagement-explorepvs/cp-cf-workflowmanagement-explorepvs.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,41 +29,41 @@ In this tutorial, you explore the application, modify a performance indicator, a
2929

3030
1. Choose **Home** to navigate to the home screen.
3131

32-
<!-- border -->![Home screen](cp-cf-wm-home.png)
32+
![Home screen](cp-cf-wm-home.png)
3333

3434
From the home screen navigate to the **Process Flexibility Cockpit**.
3535

36-
<!-- border -->![PFC](cp-cf-wm-pfc.png)
36+
![PFC](cp-cf-wm-pfc.png)
3737

3838
2. In the **Process Flexibility Cockpit**, navigate to **My Live Processes** section and choose the **Sample Capital Expenditure Approval Process** tile.
3939

40-
<!-- border -->![CAPEX](cp-cf-wm-discover-importedcapex.png)
40+
![CAPEX](cp-cf-wm-discover-importedcapex.png)
4141

4242
3. From the **Visibility Scenarios** tile, choose **Sample Capital Expenditure Approval Dashboard**.
4343

44-
<!-- border -->![Visibility Scenarios](cp-cf-wm-pvcapex.png)
44+
![Visibility Scenarios](cp-cf-wm-pvcapex.png)
4545

4646
You are now in the **Configure Visibility Scenarios** view.
4747

48-
<!-- border -->![Configure Visibility Scenarios](cp-cf-wm-configscenariosview.png)
48+
![Configure Visibility Scenarios](cp-cf-wm-configscenariosview.png)
4949

5050

5151
### Modify performance indicators
5252

5353
1. Choose the **Performance Indicators** tab.
5454

55-
<!-- border -->![Performance Indicators](cp-cf-wm-ppi.png)
55+
![Performance Indicators](cp-cf-wm-ppi.png)
5656

5757
2. Choose **Approved Capital Expenditure Requests** and change the **Representation** to **Bar Chart**. Once done, choose **Save**.
5858

59-
<!-- border -->![Edit Performance Indicators](cp-cf-wm-ppiedit.png)
59+
![Edit Performance Indicators](cp-cf-wm-ppiedit.png)
6060

6161

6262
### Activate the visibility scenario
6363

6464
Choose **Activate**.
6565

66-
<!-- border -->![Activate Visibility Scenario](cp-cf-wm-explorepv-activate.png)
66+
![Activate Visibility Scenario](cp-cf-wm-explorepv-activate.png)
6767

6868
The successful activation message appears.
6969

0 commit comments

Comments
 (0)