...
Page Properties | ||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||
Resources & Remarks Modification History
|
Excerpt |
---|
When updating your yuuvis® Momentum installation to version 2021 Autumn, manual configuration changes are required for some services. |
Please also pay attention to the Breaking Changes.
Section | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
|
Core
Cross-Tenant Service Accounts
In order to allow for the configuration and usage of Cross-Tenant Service Accounts, an ancillary Kubernetes Service has to be created as follows.
Create a file
authentication-internal.yml
with the following content:Code Block language yml apiVersion: v1 kind: Service metadata: labels: app: yuuvis name: authentication-internal name: authentication-internal spec: ports: - name: "80" port: 80 targetPort: 8081 selector: name: authentication type: ClusterIP
Run the command:
Code Block language powershell kubectl -n yuuvis apply -f authentication-internal.yml
Note | ||
---|---|---|
| ||
The AUTHENTICATION service manages the cross-tenant requests of service accounts via the separate port |
Anchor | ||||
---|---|---|---|---|
|
...
Configuration Changes for the AUTHENTICATION Service
Access to '/manage/**' Endpoints
The /manage/**
endpoints provided by the AUTHENTICATION Service are now available via a separate port that is protected from external access. Especially for customers using the Tenant Management services, the configuration of the AUTHENTICATION Service has to be adjusted and an ancillary Kubernetes Service has to be adjusted created as follows in order to request the /manage
endpoints as usual:.
Adjust the 'authentication-prod.yml' file:
...
Run the command:
Code Block language powershell kubectl -n yuuvis edit deploy authentication
Adjust the configuration:
Deprecated Configuration New Configuration Code Block language yml livenessProbe: failureThreshold: 3 httpGet: path: /manage/info port: 8080 scheme: HTTP ... readinessProbe: failureThreshold: 3 httpGet: path: /manage/info port: 8080 scheme: HTTP
Code Block language yml livenessProbe: failureThreshold: 3 httpGet: path: /manage/info port: 9091 scheme: HTTP ... readinessProbe: failureThreshold: 3 httpGet: path: /manage/info port: 9091 scheme: HTTP
Restart the AUTHENTICATION service.
Anchor | ||||
---|---|---|---|---|
|