| I managed to mount the secret created from the keycloak binding into the sync server pod, this also restarted the pod which is goos as we can pick up on this config then. Some commands used to do this once the secret is created are:
KEYCLOAK_SECRET=`oc get secrets | grep 'keycloak' | grep 'data-sync' | awk '{print $1}'` |
oc set volume dc/data-sync-server --add --name=keycloak-sync-secret -t=secret --secret-name=$KEYCLOAK_SECRET --mount-path=/opt/keycloak
|
Ping Wojciech Trocki Dara Hayes |