Alertmanager SSO Configuration
SSO for Alertmanager depends on Authservice being deployed and configured within the cluster. Please see the linked prerequisite for Authservice.
Prerequisites
- Ensure the Global SSO Settings have already been configured for this cluster.
- Access to Keycloak Master Realm
- Ensure Authservice SSO has already been configured for this cluster.
Create Keycloak Client
tip
If this client already exists due to it being configured for another cluster, consider adding the environment name as common prefix to the client name. For example, the client name could be my-org-run-alertmanager
.
- While you are in the
smoothglue
realm, click onClients
underManage
in the left pane. - Click
Create client
. - Enter client name
alertmanager
forClient ID
. - Click on the
Next
button. - Toggle on
Client authentication
. - Click on the
Next
button. Note: The application's FQDN name may be obtained by runningkubectl get virtualservice -A
- Enter
https://{{ application_fqdn }}/login/generic_oauth
forValid Redirect URIs
. - Click on the
Save
button.
SSO Configuration
Retrieve the client_secret
from the Keycloak client:
- As a Keycloak Admin and within the
smoothglue
realm, clickClients
on the left-hand panel. - Click on the
alertmanager
client. - Click on the
Credentials
tab. - Copy the value from the
Client Secret
field.
Add the following values to bigbang-secrets.yaml
to configure SSO:
monitoring:
sso:
enabled: true
alertmanager:
client_id: alertmanager # should match the client name in keycloak
client_secret: ""
info
See How to Configure Big Bang Values for more information on configuring Big Bang applications.