Everything within this section is only visible while editing. Use Page Properties ID "STUB", "REFACTURE", "PROGRESS", "rDEV", "rDOC", "rLANG" and "DONE". Everything contained within the table is displayed in the (INTERNAL) Reports page.
Resources & Remarks Modification History Add a new line to this table and fill it whenever you edit the page.
|
When updating your yuuvis® Momentum installation to version 2021 Autumn, manual configuration changes are required for some services. |
|
Especially for customers using the Tenant Management services, the configuration of the AUTHENTICATION Service has to be adjusted as follows in order to request the /manage
endpoints as usual:
Expose the individual /manage
endpoints in the section authorization.accesses
.
Deprecated Configuration | New Configuration | ||
---|---|---|---|
|
|
Add the following two lines in order to select the port number 9091
for the /manage
endpoints.
management.server.port: 9091 management.server.servlet.context-path: / |
Run the command.
kubectl -n yuuvis edit svc authentication |
Remove the label yuuvis:
"true"
.
Deprecated Configuration | New Configuration | ||
---|---|---|---|
|
|
Create a new file authentication-manage-service.yaml
with the following content:
apiVersion: v1 kind: Service metadata: labels: app: yuuvis name: authentication-manage name: authentication-manage spec: ports: - name: "80" port: 80 targetPort: 9091 selector: name: authentication type: ClusterIP |
Run the command:
kubectl -n yuuvis apply -f authentication-manage-service.yaml |
Run the command:
kubectl -n yuuvis edit deploy authentication |
Adjust the configuration:
Deprecated Configuration | New Configuration | ||
---|---|---|---|
|
|