...
Excerpt |
---|
When updating your yuuvis® Momentum installation to version 2021 Autumn, manual configuration changes are required for some services. |
Column | ||||||
---|---|---|---|---|---|---|
Table of Contents
|
Core
Configuration Changes for the AUTHENTICATION Service
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 kind: Service apiVersion: v1 metadata: name: authentication-internal spec: selector: app: authentication type: ClusterIP ports: - protocol: TCP port: 80 targetPort: 8081
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 | ||||
---|---|---|---|---|
|
Access to '/manage/**' Endpoints
...