-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
eos: fix default location for xrdcopy binary (#1467)
- Loading branch information
Showing
10 changed files
with
117 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Enhancement: Align default location for xrdcopy binary | ||
|
||
https://github.com/cs3org/reva/pull/1467 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
title: "group" | ||
linkTitle: "group" | ||
weight: 10 | ||
description: > | ||
Configuration for the group service | ||
--- |
74 changes: 74 additions & 0 deletions
74
docs/content/en/docs/config/packages/cbox/group/rest/_index.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
--- | ||
title: "rest" | ||
linkTitle: "rest" | ||
weight: 10 | ||
description: > | ||
Configuration for the rest service | ||
--- | ||
|
||
# _struct: config_ | ||
|
||
{{% dir name="redis_address" type="string" default="localhost:6379" %}} | ||
The address at which the redis server is running [[Ref]](https://github.com/cs3org/reva/tree/master/pkg/cbox/group/rest/rest.go#L69) | ||
{{< highlight toml >}} | ||
[cbox.group.rest] | ||
redis_address = "localhost:6379" | ||
{{< /highlight >}} | ||
{{% /dir %}} | ||
|
||
{{% dir name="user_groups_cache_expiration" type="int" default=5 %}} | ||
The time in minutes for which the members of a group would be cached [[Ref]](https://github.com/cs3org/reva/tree/master/pkg/cbox/group/rest/rest.go#L75) | ||
{{< highlight toml >}} | ||
[cbox.group.rest] | ||
user_groups_cache_expiration = 5 | ||
{{< /highlight >}} | ||
{{% /dir %}} | ||
|
||
{{% dir name="id_provider" type="string" default="http://cernbox.cern.ch" %}} | ||
The OIDC Provider [[Ref]](https://github.com/cs3org/reva/tree/master/pkg/cbox/group/rest/rest.go#L77) | ||
{{< highlight toml >}} | ||
[cbox.group.rest] | ||
id_provider = "http://cernbox.cern.ch" | ||
{{< /highlight >}} | ||
{{% /dir %}} | ||
|
||
{{% dir name="api_base_url" type="string" default="https://authorization-service-api-dev.web.cern.ch/api/v1.0" %}} | ||
Base API Endpoint [[Ref]](https://github.com/cs3org/reva/tree/master/pkg/cbox/group/rest/rest.go#L79) | ||
{{< highlight toml >}} | ||
[cbox.group.rest] | ||
api_base_url = "https://authorization-service-api-dev.web.cern.ch/api/v1.0" | ||
{{< /highlight >}} | ||
{{% /dir %}} | ||
|
||
{{% dir name="client_id" type="string" default="-" %}} | ||
Client ID needed to authenticate [[Ref]](https://github.com/cs3org/reva/tree/master/pkg/cbox/group/rest/rest.go#L81) | ||
{{< highlight toml >}} | ||
[cbox.group.rest] | ||
client_id = "-" | ||
{{< /highlight >}} | ||
{{% /dir %}} | ||
|
||
{{% dir name="client_secret" type="string" default="-" %}} | ||
Client Secret [[Ref]](https://github.com/cs3org/reva/tree/master/pkg/cbox/group/rest/rest.go#L83) | ||
{{< highlight toml >}} | ||
[cbox.group.rest] | ||
client_secret = "-" | ||
{{< /highlight >}} | ||
{{% /dir %}} | ||
|
||
{{% dir name="oidc_token_endpoint" type="string" default="https://keycloak-dev.cern.ch/auth/realms/cern/api-access/token" %}} | ||
Endpoint to generate token to access the API [[Ref]](https://github.com/cs3org/reva/tree/master/pkg/cbox/group/rest/rest.go#L86) | ||
{{< highlight toml >}} | ||
[cbox.group.rest] | ||
oidc_token_endpoint = "https://keycloak-dev.cern.ch/auth/realms/cern/api-access/token" | ||
{{< /highlight >}} | ||
{{% /dir %}} | ||
|
||
{{% dir name="target_api" type="string" default="authorization-service-api" %}} | ||
The target application for which token needs to be generated [[Ref]](https://github.com/cs3org/reva/tree/master/pkg/cbox/group/rest/rest.go#L88) | ||
{{< highlight toml >}} | ||
[cbox.group.rest] | ||
target_api = "authorization-service-api" | ||
{{< /highlight >}} | ||
{{% /dir %}} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters