You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tutorials/deploy-to-kyma/deploy-to-kyma.md
+39-5Lines changed: 39 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -399,11 +399,45 @@ Kyma runs on containers. Hence, for this tutorial, you'll need an application th
399
399
400
400
Check [Accessing Business Service UI](https://help.sap.com/docs/btp/sap-business-technology-platform/accessing-business-service-ui?locale=39723061bc4b4b679726b120cbefdf5a.html&q=base%20URL) for more information.
401
401
402
-
5. Create a new folder **ui-resources**in your project's root folder.
402
+
5. Add navigation configuration and deploy configuration to the **app/incidents/webapp/manifest.json** file:
403
+
404
+
```json[9-22,25-28]
405
+
{
406
+
"_version": "1.49.0",
407
+
"sap.app": {
408
+
"id": "ns.incidents",
409
+
...
410
+
"dataSources": {
411
+
...
412
+
},
413
+
"crossNavigation": {
414
+
"inbounds": {
415
+
"incidents-display": {
416
+
"semanticObject": "incidents",
417
+
"action": "display",
418
+
"title": "{{flpTitle}}",
419
+
"subTitle": "{{flpSubtitle}}",
420
+
"signature": {
421
+
"parameters": {},
422
+
"additionalParameters": "allowed"
423
+
}
424
+
}
425
+
}
426
+
}
427
+
},
428
+
...
429
+
"sap.cloud": {
430
+
"public": true,
431
+
"service": "incidents"
432
+
}
433
+
}
434
+
```
435
+
436
+
6. Create a new folder **ui-resources**in your project's root folder.
403
437
404
438
The HTML5 applications deployer looks for the **ui-resources** folder which has the static files of the HTML5 application.
405
439
406
-
6. Create a new file **package.json** inside the **ui-resources** folder and add the following code to the file:
440
+
7. Create a new file **package.json** inside the **ui-resources** folder and add the following code to the file:
407
441
408
442
```json
409
443
{
@@ -432,21 +466,21 @@ Kyma runs on containers. Hence, for this tutorial, you'll need an application th
432
466
433
467
```
434
468
435
-
7. In the VS Code terminal, navigate to the **ui-resources** folder and run the following command:
469
+
8. In the VS Code terminal, navigate to the **ui-resources** folder and run the following command:
436
470
437
471
```bash
438
472
npm install && npm run package
439
473
```
440
474
441
475
This will build and copy the archive **nsincidents.zip** inside the **ui-resources/resources** folder.
442
476
443
-
8. In the VS Code terminal, navigate back to the root folder of your project:
477
+
9. In the VS Code terminal, navigate back to the root folder of your project:
Copy file name to clipboardExpand all lines: tutorials/set-up-cicd-kyma/set-up-cicd-kyma.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -103,7 +103,7 @@ In this example, we'll be creating a repository on GitHub. You'll need a [GitHub
103
103
104
104
<!-- border; size:540px --> 
105
105
106
-
3. Choose **Create** in the **New Instance or Subscription** popup, and select **default** from the **Plan** field.
106
+
3. In the **New Instance or Subscription** popup select **default** from the **Plan** field.
107
107
108
108
4. Choose **View Subscription** and wait until the status changes to **Subscribed**.
109
109
@@ -138,15 +138,15 @@ In this example, we'll be creating a repository on GitHub. You'll need a [GitHub
138
138
139
139
In order to run the pipeline using the SAP Continuous Integration and Delivery service, you need to create a service account. This is a non-human account that provides a distinct identity in your Kyma cluster. The service account will authenticate your CI/CD pipeline to access your Kyma cluster. See [Service Accounts](https://kubernetes.io/docs/concepts/security/service-accounts/).
140
140
141
-
1. Navigate to your subaccount and choose **Link to dashboard** under the **Kyma Environment** tab to open the Kyma Console.
141
+
1. Navigate to your subaccount and choose **Link to dashboard** under the **Kyma Environment** tab to open Kyma dashboard.
3. Enter a name for your namespace (for example, **incident-management-namespace**), switch the **Side Car Injection** toggle **ON**, and choose **Create**.
149
+
3. Enter a name for your namespace (for example, **incident-management-namespace**), switch the **Enable Sidecar Injection** toggle **ON**, and choose **Create**.
0 commit comments