@@ -35,14 +35,29 @@ Preemptive you have to create a secret containing your license file.
3535- "kubectl -n cmem create secret generic graphinsights-license --from-file your-graphinsights.lic
3636```
3737
38+ All needed configuration can be done in the Corporate Memory helm chart ` value.yaml ` file.
3839This enables the plugin.
3940
4041``` yaml
4142graphinsights :
4243 enabled : true
4344` ` `
4445
45- All needed configuration can be done in the Corporate Memory helm chart ` value.yaml` file.
46+ Beside enabling the extension you also have to create a route/path in your Ingress or Route.
47+ In the Charts ` value.yaml` file is a configuration commented out.
48+ You should enable this in your `value.yaml` file.
49+
50+ ` ` ` yaml
51+ # GraphInsights at /graphinsights path (if enabled).
52+ - path: /graphinsights
53+ pathType: Prefix
54+ serviceName: graphinsights
55+ servicePort: 8080
56+ ` ` `
57+
58+ Also make sure you have set the clients and client credentials.
59+ See [Configure OAuth clients (helm)](../../../deploy-and-configure/configuration/graphinsights/#configure-oauth-clients-helm)
60+
4661The configuration mentioned below is rendered with those files, but you usually don't have to touch those :
4762
4863- ` configuration-files/explore-application.yml` for Explore
@@ -241,7 +256,7 @@ For convenience, by default we use the same clients as for the rest of the appli
241256
242257In case you want to have separate clients for production deployments, this chapter is for you.
243258
244- # ### Using separate OAuth clients for Graph Insights
259+ # ### Configure OAuth clients (docker-compose)
245260
246261In our **docker-orchestration** to enrol those other clients, please follow these steps :
247262
@@ -279,7 +294,7 @@ GRAPHINSIGHTS_OAUTH_SERVICE_CLIENT_SECRET=changeme
279294 - "GRAPHINSIGHTS_OAUTH_SERVICE_CLIENT_SECRET=${GRAPHINSIGHTS_OAUTH_SERVICE_CLIENT_SECRET}"
280295` ` `
281296
282-
297+ # ### Configure OAuth clients (helm)
283298
284299In **helm deployments**, once you have the clients available all you have to do is change these lines in your value.yaml
285300accordingly :
0 commit comments