Keycloak.json configuration file import

2/15/2019

I have configured my goclient with keycloak.I am reading the keycloak server details from keycloak.json file which is present inside my Go client.
My whole setup is in Kubernetes cluster.Everytime when new keycloak server comes up how should I pass keycloak.json file to the Go client so that it can read the details from json file?
Is there a way I can get the keycloak.json file with all the client configuration details without having to login to keycloak and download it ?

  "realm": "SolutionAdmin",
  "auth-server-url": "localhost:8081/auth",
  "ssl-required": "none",
  "resource": "admin",
  "credentials": {
    "secret": "6ee0f523-c392-4406-bb14-ba315125c6ea"
  },
  "confidential-port": 0
}
-- Avinash Kumar
go
keycloak
kubernetes

0 Answers