Skip to content

Commit

Permalink
commit 1cc0286
Browse files Browse the repository at this point in the history
Merge: 8343c19 ad02b40
Author: Dipak Acharya <[email protected]>
Date:   Fri Jul 2 12:21:33 2021 +0545

    Merge pull request #2106 from owncloud/earlyFail

    [Tests-Only]Add earlyFail
  • Loading branch information
dpakach committed Jul 2, 2021
1 parent e3d8331 commit 5bc1a6f
Show file tree
Hide file tree
Showing 15 changed files with 1,151 additions and 1,151 deletions.
318 changes: 159 additions & 159 deletions extensions/accounts/configuration.md

Large diffs are not rendered by default.

176 changes: 88 additions & 88 deletions extensions/glauth/configuration.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "Configuration"
date: "2021-07-01T16:18:17+0000"
date: "2021-07-02T06:37:29+0000"
weight: 20
geekdocRepo: https://github.com/owncloud/ocis
geekdocEditPath: edit/master/glauth/templates
Expand Down Expand Up @@ -35,255 +35,255 @@ If multiple variables are listed for one option, they are in order of precedence

If you prefer to configure the service with commandline flags you can see the available variables below. Command line flags are only working when calling the subcommand directly.

### glauth server
### glauth health

Start integrated server
Check health status

Usage: `glauth server [command options] [arguments...]`
Usage: `glauth health [command options] [arguments...]`





-debug-addr | $GLAUTH_DEBUG_ADDR
: Address to debug endpoint. Default: `"0.0.0.0:9129"`.

-log-file | $GLAUTH_LOG_FILE , $OCIS_LOG_FILE
: Enable log to file.


-config-file | $GLAUTH_CONFIG_FILE
: Path to config file. Default: `""`.


-tracing-enabled | $GLAUTH_TRACING_ENABLED
: Enable sending traces.


-tracing-type | $GLAUTH_TRACING_TYPE
: Tracing backend type. Default: `"jaeger"`.


-tracing-endpoint | $GLAUTH_TRACING_ENDPOINT
: Endpoint for the agent. Default: `""`.


-tracing-collector | $GLAUTH_TRACING_COLLECTOR
: Endpoint for the collector. Default: `""`.


-tracing-service | $GLAUTH_TRACING_SERVICE
: Service name for tracing. Default: `"glauth"`.


-debug-addr | $GLAUTH_DEBUG_ADDR
: Address to bind debug server. Default: `"0.0.0.0:9129"`.


-debug-token | $GLAUTH_DEBUG_TOKEN
: Token to grant metrics access. Default: `""`.


-debug-pprof | $GLAUTH_DEBUG_PPROF
: Enable pprof debugging.


-debug-zpages | $GLAUTH_DEBUG_ZPAGES
: Enable zpages debugging.


-role-bundle-id | $GLAUTH_ROLE_BUNDLE_ID
: roleid used to make internal grpc requests. Default: `"71881883-1768-46bd-a24d-a356a2afdf7f"`.


-ldap-addr | $GLAUTH_LDAP_ADDR
: Address to bind ldap server. Default: `"0.0.0.0:9125"`.


-ldap-enabled | $GLAUTH_LDAP_ENABLED
: Enable ldap server. Default: `true`.


-ldaps-addr | $GLAUTH_LDAPS_ADDR
: Address to bind ldap server. Default: `"0.0.0.0:9126"`.


-ldaps-enabled | $GLAUTH_LDAPS_ENABLED
: Enable ldap server. Default: `true`.


-ldaps-cert | $GLAUTH_LDAPS_CERT
: path to ldaps certificate in PEM format. Default: `flags.OverrideDefaultString(cfg.Ldaps.Cert, path.Join(pkgos.MustUserConfigDir("ocis", "ldap"), "ldap.crt"))`.


-ldaps-key | $GLAUTH_LDAPS_KEY
: path to ldaps key in PEM format. Default: `flags.OverrideDefaultString(cfg.Ldaps.Key, path.Join(pkgos.MustUserConfigDir("ocis", "ldap"), "ldap.key"))`.

### glauth ocis-glauth

-backend-basedn | $GLAUTH_BACKEND_BASEDN
: base distinguished name to expose. Default: `"dc=example,dc=org"`.
Serve GLAuth API for oCIS

Usage: `glauth ocis-glauth [command options] [arguments...]`

-backend-name-format | $GLAUTH_BACKEND_NAME_FORMAT
: name attribute for entries to expose. typically cn or uid. Default: `"cn"`.

-log-level | $GLAUTH_LOG_LEVEL , $OCIS_LOG_LEVEL
: Set logging level.

-backend-group-format | $GLAUTH_BACKEND_GROUP_FORMAT
: name attribute for entries to expose. typically ou, cn or dc. Default: `"ou"`.

-log-pretty | $GLAUTH_LOG_PRETTY , $OCIS_LOG_PRETTY
: Enable pretty logging.

-backend-ssh-key-attr | $GLAUTH_BACKEND_SSH_KEY_ATTR
: ssh key attribute for entries to expose. Default: `"sshPublicKey"`.

-log-color | $GLAUTH_LOG_COLOR , $OCIS_LOG_COLOR
: Enable colored logging.

-backend-datastore | $GLAUTH_BACKEND_DATASTORE
: datastore to use as the backend. one of accounts, ldap or owncloud. Default: `"accounts"`.


-backend-insecure | $GLAUTH_BACKEND_INSECURE
: Allow insecure requests to the datastore. Default: `false`.


-backend-server | $GLAUTH_BACKEND_SERVERS
: `--backend-server http://internal1.example.com [--backend-server http://internal2.example.com]`. Default: `cli.NewStringSlice("https://demo.owncloud.com/apps/graphapi/v1.0")`.


-backend-use-graphapi | $GLAUTH_BACKEND_USE_GRAPHAPI
: use Graph API, only for owncloud datastore. Default: `true`.


-fallback-basedn | $GLAUTH_FALLBACK_BASEDN
: base distinguished name to expose. Default: `"dc=example,dc=org"`.


-fallback-name-format | $GLAUTH_FALLBACK_NAME_FORMAT
: name attribute for entries to expose. typically cn or uid. Default: `"cn"`.


-fallback-group-format | $GLAUTH_FALLBACK_GROUP_FORMAT
: name attribute for entries to expose. typically ou, cn or dc. Default: `"ou"`.


-fallback-ssh-key-attr | $GLAUTH_FALLBACK_SSH_KEY_ATTR
: ssh key attribute for entries to expose. Default: `"sshPublicKey"`.


-fallback-datastore | $GLAUTH_FALLBACK_DATASTORE
: datastore to use as the fallback. one of accounts, ldap or owncloud. Default: `""`.


-fallback-insecure | $GLAUTH_FALLBACK_INSECURE
: Allow insecure requests to the datastore. Default: `false`.


-fallback-server | $GLAUTH_FALLBACK_SERVERS
: `--fallback-server http://internal1.example.com [--fallback-server http://internal2.example.com]`. Default: `cli.NewStringSlice("https://demo.owncloud.com/apps/graphapi/v1.0")`.


-fallback-use-graphapi | $GLAUTH_FALLBACK_USE_GRAPHAPI
: use Graph API, only for owncloud datastore. Default: `true`.


-extensions |
: Run specific extensions during supervised mode. This flag is set by the runtime.

### glauth health

Check health status

Usage: `glauth health [command options] [arguments...]`





-debug-addr | $GLAUTH_DEBUG_ADDR
: Address to debug endpoint. Default: `"0.0.0.0:9129"`.




### glauth server

Start integrated server

Usage: `glauth server [command options] [arguments...]`






-log-file | $GLAUTH_LOG_FILE , $OCIS_LOG_FILE
: Enable log to file.


-config-file | $GLAUTH_CONFIG_FILE
: Path to config file. Default: `""`.


-tracing-enabled | $GLAUTH_TRACING_ENABLED
: Enable sending traces.


-tracing-type | $GLAUTH_TRACING_TYPE
: Tracing backend type. Default: `"jaeger"`.


-tracing-endpoint | $GLAUTH_TRACING_ENDPOINT
: Endpoint for the agent. Default: `""`.


-tracing-collector | $GLAUTH_TRACING_COLLECTOR
: Endpoint for the collector. Default: `""`.


-tracing-service | $GLAUTH_TRACING_SERVICE
: Service name for tracing. Default: `"glauth"`.


-debug-addr | $GLAUTH_DEBUG_ADDR
: Address to bind debug server. Default: `"0.0.0.0:9129"`.


-debug-token | $GLAUTH_DEBUG_TOKEN
: Token to grant metrics access. Default: `""`.


-debug-pprof | $GLAUTH_DEBUG_PPROF
: Enable pprof debugging.


-debug-zpages | $GLAUTH_DEBUG_ZPAGES
: Enable zpages debugging.


-role-bundle-id | $GLAUTH_ROLE_BUNDLE_ID
: roleid used to make internal grpc requests. Default: `"71881883-1768-46bd-a24d-a356a2afdf7f"`.


### glauth ocis-glauth
-ldap-addr | $GLAUTH_LDAP_ADDR
: Address to bind ldap server. Default: `"0.0.0.0:9125"`.

Serve GLAuth API for oCIS

Usage: `glauth ocis-glauth [command options] [arguments...]`
-ldap-enabled | $GLAUTH_LDAP_ENABLED
: Enable ldap server. Default: `true`.


-log-level | $GLAUTH_LOG_LEVEL , $OCIS_LOG_LEVEL
: Set logging level.
-ldaps-addr | $GLAUTH_LDAPS_ADDR
: Address to bind ldap server. Default: `"0.0.0.0:9126"`.


-log-pretty | $GLAUTH_LOG_PRETTY , $OCIS_LOG_PRETTY
: Enable pretty logging.
-ldaps-enabled | $GLAUTH_LDAPS_ENABLED
: Enable ldap server. Default: `true`.


-log-color | $GLAUTH_LOG_COLOR , $OCIS_LOG_COLOR
: Enable colored logging.
-ldaps-cert | $GLAUTH_LDAPS_CERT
: path to ldaps certificate in PEM format. Default: `flags.OverrideDefaultString(cfg.Ldaps.Cert, path.Join(pkgos.MustUserConfigDir("ocis", "ldap"), "ldap.crt"))`.


-ldaps-key | $GLAUTH_LDAPS_KEY
: path to ldaps key in PEM format. Default: `flags.OverrideDefaultString(cfg.Ldaps.Key, path.Join(pkgos.MustUserConfigDir("ocis", "ldap"), "ldap.key"))`.


-backend-basedn | $GLAUTH_BACKEND_BASEDN
: base distinguished name to expose. Default: `"dc=example,dc=org"`.


-backend-name-format | $GLAUTH_BACKEND_NAME_FORMAT
: name attribute for entries to expose. typically cn or uid. Default: `"cn"`.


-backend-group-format | $GLAUTH_BACKEND_GROUP_FORMAT
: name attribute for entries to expose. typically ou, cn or dc. Default: `"ou"`.


-backend-ssh-key-attr | $GLAUTH_BACKEND_SSH_KEY_ATTR
: ssh key attribute for entries to expose. Default: `"sshPublicKey"`.


-backend-datastore | $GLAUTH_BACKEND_DATASTORE
: datastore to use as the backend. one of accounts, ldap or owncloud. Default: `"accounts"`.


-backend-insecure | $GLAUTH_BACKEND_INSECURE
: Allow insecure requests to the datastore. Default: `false`.


-backend-server | $GLAUTH_BACKEND_SERVERS
: `--backend-server http://internal1.example.com [--backend-server http://internal2.example.com]`. Default: `cli.NewStringSlice("https://demo.owncloud.com/apps/graphapi/v1.0")`.


-backend-use-graphapi | $GLAUTH_BACKEND_USE_GRAPHAPI
: use Graph API, only for owncloud datastore. Default: `true`.


-fallback-basedn | $GLAUTH_FALLBACK_BASEDN
: base distinguished name to expose. Default: `"dc=example,dc=org"`.


-fallback-name-format | $GLAUTH_FALLBACK_NAME_FORMAT
: name attribute for entries to expose. typically cn or uid. Default: `"cn"`.


-fallback-group-format | $GLAUTH_FALLBACK_GROUP_FORMAT
: name attribute for entries to expose. typically ou, cn or dc. Default: `"ou"`.


-fallback-ssh-key-attr | $GLAUTH_FALLBACK_SSH_KEY_ATTR
: ssh key attribute for entries to expose. Default: `"sshPublicKey"`.


-fallback-datastore | $GLAUTH_FALLBACK_DATASTORE
: datastore to use as the fallback. one of accounts, ldap or owncloud. Default: `""`.


-fallback-insecure | $GLAUTH_FALLBACK_INSECURE
: Allow insecure requests to the datastore. Default: `false`.


-fallback-server | $GLAUTH_FALLBACK_SERVERS
: `--fallback-server http://internal1.example.com [--fallback-server http://internal2.example.com]`. Default: `cli.NewStringSlice("https://demo.owncloud.com/apps/graphapi/v1.0")`.


-fallback-use-graphapi | $GLAUTH_FALLBACK_USE_GRAPHAPI
: use Graph API, only for owncloud datastore. Default: `true`.


-extensions |
: Run specific extensions during supervised mode. This flag is set by the runtime.

2 changes: 1 addition & 1 deletion extensions/graph-explorer/configuration.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "Configuration"
date: "2021-07-01T16:18:17+0000"
date: "2021-07-02T06:37:29+0000"
weight: 20
geekdocRepo: https://github.com/owncloud/ocis
geekdocEditPath: edit/master/graph-explorer/templates
Expand Down
2 changes: 1 addition & 1 deletion extensions/graph/configuration.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "Configuration"
date: "2021-07-01T16:18:17+0000"
date: "2021-07-02T06:37:29+0000"
weight: 20
geekdocRepo: https://github.com/owncloud/ocis
geekdocEditPath: edit/master/graph/templates
Expand Down
Loading

0 comments on commit 5bc1a6f

Please sign in to comment.