Skip to content

Commit

Permalink
commit 4452d16
Browse files Browse the repository at this point in the history
Author: Florian Schade <[email protected]>
Date:   Tue Nov 24 18:39:27 2020 +0100

    K6 Testing (#941)

    * first k6 tests
  • Loading branch information
fschade committed Nov 24, 2020
1 parent ff33ff2 commit c92b386
Show file tree
Hide file tree
Showing 5 changed files with 228 additions and 228 deletions.
60 changes: 30 additions & 30 deletions extensions/accounts/configuration.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "Configuration"
date: "2020-11-24T12:20:21+0000"
date: "2020-11-24T18:33:23+0000"
weight: 20
geekdocRepo: https://github.com/owncloud/ocis
geekdocEditPath: edit/master/accounts/templates
Expand Down Expand Up @@ -37,18 +37,24 @@ If you prefer to configure the service with environment variables you can see th

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.

### accounts list
### accounts version

List existing accounts
Print the versions of the running instances

Usage: `accounts list [command options] [arguments...]`
Usage: `accounts version [command options] [arguments...]`

--grpc-namespace | $ACCOUNTS_GRPC_NAMESPACE
: Set the base namespace for the grpc namespace. Default: `com.owncloud.api`.

--name | $ACCOUNTS_NAME
: service name. Default: `accounts`.

### accounts add

Create a new account

Usage: `accounts add [command options] [arguments...]`

### accounts server

Start ocis accounts service
Expand Down Expand Up @@ -115,29 +121,32 @@ Usage: `accounts remove [command options] [arguments...]`
--name | $ACCOUNTS_NAME
: service name. Default: `accounts`.

### accounts version
### accounts inspect

Print the versions of the running instances
Show detailed data on an existing account

Usage: `accounts version [command options] [arguments...]`
Usage: `accounts inspect [command options] [arguments...]`

--grpc-namespace | $ACCOUNTS_GRPC_NAMESPACE
: Set the base namespace for the grpc namespace. Default: `com.owncloud.api`.

--name | $ACCOUNTS_NAME
: service name. Default: `accounts`.

### accounts inspect
### accounts ocis-accounts

Show detailed data on an existing account
Provide accounts and groups for oCIS

Usage: `accounts inspect [command options] [arguments...]`
Usage: `accounts ocis-accounts [command options] [arguments...]`

--grpc-namespace | $ACCOUNTS_GRPC_NAMESPACE
: Set the base namespace for the grpc namespace. Default: `com.owncloud.api`.
--log-level | $ACCOUNTS_LOG_LEVEL
: Set logging level. Default: `info`.

--name | $ACCOUNTS_NAME
: service name. Default: `accounts`.
--log-pretty | $ACCOUNTS_LOG_PRETTY
: Enable pretty logging. Default: `true`.

--log-color | $ACCOUNTS_LOG_COLOR
: Enable colored logging. Default: `true`.

### accounts rebuildIndex

Expand All @@ -151,24 +160,15 @@ Make changes to an existing account

Usage: `accounts update [command options] [arguments...]`

### accounts add

Create a new account

Usage: `accounts add [command options] [arguments...]`

### accounts ocis-accounts

Provide accounts and groups for oCIS
### accounts list

Usage: `accounts ocis-accounts [command options] [arguments...]`
List existing accounts

--log-level | $ACCOUNTS_LOG_LEVEL
: Set logging level. Default: `info`.
Usage: `accounts list [command options] [arguments...]`

--log-pretty | $ACCOUNTS_LOG_PRETTY
: Enable pretty logging. Default: `true`.
--grpc-namespace | $ACCOUNTS_GRPC_NAMESPACE
: Set the base namespace for the grpc namespace. Default: `com.owncloud.api`.

--log-color | $ACCOUNTS_LOG_COLOR
: Enable colored logging. Default: `true`.
--name | $ACCOUNTS_NAME
: service name. Default: `accounts`.

2 changes: 1 addition & 1 deletion extensions/konnectd/configuration.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "Configuration"
date: "2020-11-24T12:20:24+0000"
date: "2020-11-24T18:33:27+0000"
weight: 20
geekdocRepo: https://github.com/owncloud/ocis
geekdocEditPath: edit/master/konnectd/templates
Expand Down
74 changes: 37 additions & 37 deletions extensions/proxy/configuration.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "Configuration"
date: "2020-11-24T12:20:29+0000"
date: "2020-11-24T18:33:32+0000"
weight: 20
geekdocRepo: https://github.com/owncloud/ocis
geekdocEditPath: edit/master/proxy/templates
Expand Down Expand Up @@ -37,6 +37,42 @@ If you prefer to configure the service with environment variables you can see th

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.

### proxy version

Print the versions of the running instances

Usage: `proxy version [command options] [arguments...]`

--service-namespace | $PROXY_SERVICE_NAMESPACE
: Set the base namespace for the service namespace. Default: `com.owncloud.web`.

--service-name | $PROXY_SERVICE_NAME
: Service name. Default: `proxy`.

### proxy health

Check health status

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

--debug-addr | $PROXY_DEBUG_ADDR
: Address to debug endpoint. Default: `0.0.0.0:9109`.

### proxy ocis-proxy

proxy for Reva/oCIS

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

--log-level | $PROXY_LOG_LEVEL
: Set logging level. Default: `info`.

--log-pretty | $PROXY_LOG_PRETTY
: Enable pretty logging. Default: `true`.

--log-color | $PROXY_LOG_COLOR
: Enable colored logging. Default: `true`.

### proxy server

Start integrated server
Expand Down Expand Up @@ -118,39 +154,3 @@ Usage: `proxy server [command options] [arguments...]`
--enable-basic-auth | $PROXY_ENABLE_BASIC_AUTH
: enable basic authentication. Default: `false`.

### proxy version

Print the versions of the running instances

Usage: `proxy version [command options] [arguments...]`

--service-namespace | $PROXY_SERVICE_NAMESPACE
: Set the base namespace for the service namespace. Default: `com.owncloud.web`.

--service-name | $PROXY_SERVICE_NAME
: Service name. Default: `proxy`.

### proxy health

Check health status

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

--debug-addr | $PROXY_DEBUG_ADDR
: Address to debug endpoint. Default: `0.0.0.0:9109`.

### proxy ocis-proxy

proxy for Reva/oCIS

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

--log-level | $PROXY_LOG_LEVEL
: Set logging level. Default: `info`.

--log-pretty | $PROXY_LOG_PRETTY
: Enable pretty logging. Default: `true`.

--log-color | $PROXY_LOG_COLOR
: Enable colored logging. Default: `true`.

Loading

0 comments on commit c92b386

Please sign in to comment.