Skip to content

Commit 327a744

Browse files
committed
2 parents 5c064de + 0d028f0 commit 327a744

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

tutorials/deploy-to-kyma/deploy-to-kyma.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,13 @@ Kyma runs on containers. Hence, for this tutorial, you'll need an application th
539539
cds add xsuaa,hana --for production
540540
```
541541

542-
5. Build the CAP Java image:
542+
5. Install dependencies added by the `cds add` commands in the previous steps and build the `.jar` file to create the srv image:
543+
544+
```bash
545+
mvn clean install
546+
```
547+
548+
6. Build the CAP Java image:
543549

544550
```bash
545551
pack build <your-container-registry>/incident-management-srv:<image-version> \
@@ -562,7 +568,7 @@ Kyma runs on containers. Hence, for this tutorial, you'll need an application th
562568
563569
> The pack CLI builds the image that contains the build result in the **gen/srv** folder and the required npm packages by using the [Cloud Native Buildpack for Node.JS](https://github.com/paketo-buildpacks/nodejs) provided by Paketo.
564570
565-
6. Build the database image:
571+
7. Build the database image:
566572
567573
```bash
568574
pack build <your-container-registry>/incident-management-hana-deployer:<image-version> \
@@ -600,7 +606,7 @@ Kyma runs on containers. Hence, for this tutorial, you'll need an application th
600606
"authenticationMethod": "route",
601607
"routes": [
602608
{
603-
"source": "^/odata/v4/processor/(.*)$",
609+
"source": "^/odata/v4/ProcessorService/(.*)$",
604610
"destination": "srv-api",
605611
"authenticationType": "xsuaa"
606612
},

0 commit comments

Comments
 (0)