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: INSTALL.md
+10-6Lines changed: 10 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,7 @@ const ENV_VARS_MAPPING = {
9
9
CATENAX_PORTAL_API_URL:'apiUrl',
10
10
CATENAX_PORTAL_BASE_URL:'baseUrl',
11
11
CATENAX_PORTAL_BACKEND_DOMAIN,
12
+
CATENAX_PORTAL_URL:'portalUrl',
12
13
};
13
14
```
14
15
@@ -25,10 +26,13 @@ This variable points to the desired api
25
26
This variable is used to set the base path of the application. (Should be set if application runs as a subtopic)
26
27
27
28
`CATENAX_PORTAL_BACKEND_DOMAIN`
28
-
This variable is needed for security, to be more explicit, for the security headers of a request.
29
-
The domain of the corresponding backend should be used here.
29
+
This variable is needed for security, to be more explicit, for the security headers of a request.
30
+
The domain of the corresponding backend should be used here.
30
31
An example value could be: `catena-x.net`
31
32
33
+
`CATENAX_PORTAL_URL`
34
+
This variable is optional and points to the CX Portal instance
35
+
32
36
# Helm deployment
33
37
34
38
## Configuration of values.yaml
@@ -52,13 +56,13 @@ ingress:
52
56
cert-manager.io/cluster-issuer: letsencrypt-prod
53
57
hosts:
54
58
- host: "${FE_HOST_URL}"
55
-
paths:
59
+
paths:
56
60
- path: /
57
-
pathType: Prefix
61
+
pathType: Prefix
58
62
tls:
59
63
- hosts:
60
64
- "${FE_HOST_URL}"
61
-
secretName: "${FE_HOST_URL}-tls"
65
+
secretName: "${FE_HOST_URL}-tls"
62
66
63
67
```
64
68
@@ -129,5 +133,5 @@ The operator can set any environment variable in the container by using one or m
129
133
130
134
#### `${dockerImage}`
131
135
132
-
While not strictly a means of identifying a container, you can specify a version of an image you’d like to run the container with by adding `image[:tag]` to the command. For example, `docker run 002b3c518f5852f7fd5e9e46c0ea1ab4d76b697d33d5022af1a69e1a909645ea`.
136
+
While not strictly a means of identifying a container, you can specify a version of an image you’d like to run the container with by adding `image[:tag]` to the command. For example, `docker run 002b3c518f5852f7fd5e9e46c0ea1ab4d76b697d33d5022af1a69e1a909645ea`.
133
137
Images can be pulled [here](https://github.com/eclipse-tractusx/traceability-foss-frontend/pkgs/container/traceability-foss-frontend).
0 commit comments