-
Notifications
You must be signed in to change notification settings - Fork 189
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6427 from kobergj/ServiceAccounts
[full-ci] Service Accounts
- Loading branch information
Showing
83 changed files
with
633 additions
and
157 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
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
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,220 @@ | ||
// set the attribute to true or leave empty, true without any quotes. | ||
|
||
:show-deprecation: false | ||
|
||
ifeval::[{show-deprecation} == true] | ||
|
||
[#deprecation-note-2023-08-31-11-17-46] | ||
[caption=] | ||
.Deprecation notes for the auth-service service | ||
[width="100%",cols="~,~,~,~",options="header"] | ||
|=== | ||
| Deprecation Info | ||
| Deprecation Version | ||
| Removal Version | ||
| Deprecation Replacement | ||
|=== | ||
|
||
endif::[] | ||
|
||
[caption=] | ||
.Environment variables for the auth-service service | ||
[width="100%",cols="~,~,~,~",options="header"] | ||
|=== | ||
| Name | ||
| Type | ||
| Default Value | ||
| Description | ||
|
||
a|`OCIS_TRACING_ENABLED` + | ||
`AUTH_SERVICE_TRACING_ENABLED` + | ||
|
||
a| [subs=-attributes] | ||
++bool ++ | ||
a| [subs=-attributes] | ||
++false ++ | ||
a| [subs=-attributes] | ||
Activates tracing. | ||
|
||
a|`OCIS_TRACING_TYPE` + | ||
`AUTH_SERVICE_TRACING_TYPE` + | ||
|
||
a| [subs=-attributes] | ||
++string ++ | ||
a| [subs=-attributes] | ||
++ ++ | ||
a| [subs=-attributes] | ||
The type of tracing. Defaults to '', which is the same as 'jaeger'. Allowed tracing types are 'jaeger' and '' as of now. | ||
|
||
a|`OCIS_TRACING_ENDPOINT` + | ||
`AUTH_SERVICE_TRACING_ENDPOINT` + | ||
|
||
a| [subs=-attributes] | ||
++string ++ | ||
a| [subs=-attributes] | ||
++ ++ | ||
a| [subs=-attributes] | ||
The endpoint of the tracing agent. | ||
|
||
a|`OCIS_TRACING_COLLECTOR` + | ||
`AUTH_SERVICE_TRACING_COLLECTOR` + | ||
|
||
a| [subs=-attributes] | ||
++string ++ | ||
a| [subs=-attributes] | ||
++ ++ | ||
a| [subs=-attributes] | ||
The HTTP endpoint for sending spans directly to a collector, i.e. \http://jaeger-collector:14268/api/traces. Only used if the tracing endpoint is unset. | ||
|
||
a|`OCIS_LOG_LEVEL` + | ||
`AUTH_SERVICE_LOG_LEVEL` + | ||
|
||
a| [subs=-attributes] | ||
++string ++ | ||
a| [subs=-attributes] | ||
++ ++ | ||
a| [subs=-attributes] | ||
The log level. Valid values are: 'panic', 'fatal', 'error', 'warn', 'info', 'debug', 'trace'. | ||
|
||
a|`OCIS_LOG_PRETTY` + | ||
`AUTH_SERVICE_LOG_PRETTY` + | ||
|
||
a| [subs=-attributes] | ||
++bool ++ | ||
a| [subs=-attributes] | ||
++false ++ | ||
a| [subs=-attributes] | ||
Activates pretty log output. | ||
|
||
a|`OCIS_LOG_COLOR` + | ||
`AUTH_SERVICE_LOG_COLOR` + | ||
|
||
a| [subs=-attributes] | ||
++bool ++ | ||
a| [subs=-attributes] | ||
++false ++ | ||
a| [subs=-attributes] | ||
Activates colorized log output. | ||
|
||
a|`OCIS_LOG_FILE` + | ||
`AUTH_SERVICE_LOG_FILE` + | ||
|
||
a| [subs=-attributes] | ||
++string ++ | ||
a| [subs=-attributes] | ||
++ ++ | ||
a| [subs=-attributes] | ||
The path to the log file. Activates logging to this file if set. | ||
|
||
a|`AUTH_SERVICE_DEBUG_ADDR` + | ||
|
||
a| [subs=-attributes] | ||
++string ++ | ||
a| [subs=-attributes] | ||
++127.0.0.1:9169 ++ | ||
a| [subs=-attributes] | ||
Bind address of the debug server, where metrics, health, config and debug endpoints will be exposed. | ||
|
||
a|`AUTH_SERVICE_DEBUG_TOKEN` + | ||
|
||
a| [subs=-attributes] | ||
++string ++ | ||
a| [subs=-attributes] | ||
++ ++ | ||
a| [subs=-attributes] | ||
Token to secure the metrics endpoint. | ||
|
||
a|`AUTH_SERVICE_DEBUG_PPROF` + | ||
|
||
a| [subs=-attributes] | ||
++bool ++ | ||
a| [subs=-attributes] | ||
++false ++ | ||
a| [subs=-attributes] | ||
Enables pprof, which can be used for profiling. | ||
|
||
a|`AUTH_SERVICE_DEBUG_ZPAGES` + | ||
|
||
a| [subs=-attributes] | ||
++bool ++ | ||
a| [subs=-attributes] | ||
++false ++ | ||
a| [subs=-attributes] | ||
Enables zpages, which can be used for collecting and viewing in-memory traces. | ||
|
||
a|`AUTH_SERVICE_GRPC_ADDR` + | ||
|
||
a| [subs=-attributes] | ||
++string ++ | ||
a| [subs=-attributes] | ||
++127.0.0.1:9199 ++ | ||
a| [subs=-attributes] | ||
The bind address of the GRPC service. | ||
|
||
a|`AUTH_SERVICE_GRPC_PROTOCOL` + | ||
|
||
a| [subs=-attributes] | ||
++string ++ | ||
a| [subs=-attributes] | ||
++tcp ++ | ||
a| [subs=-attributes] | ||
The transport protocol of the GRPC service. | ||
|
||
a|`OCIS_JWT_SECRET` + | ||
`AUTH_MACHINE_JWT_SECRET` + | ||
|
||
a| [subs=-attributes] | ||
++string ++ | ||
a| [subs=-attributes] | ||
++ ++ | ||
a| [subs=-attributes] | ||
The secret to mint and validate jwt tokens. | ||
|
||
a|`OCIS_REVA_GATEWAY` + | ||
|
||
a| [subs=-attributes] | ||
++string ++ | ||
a| [subs=-attributes] | ||
++com.owncloud.api.gateway ++ | ||
a| [subs=-attributes] | ||
The CS3 gateway endpoint. | ||
|
||
a|`OCIS_GRPC_CLIENT_TLS_MODE` + | ||
|
||
a| [subs=-attributes] | ||
++string ++ | ||
a| [subs=-attributes] | ||
++ ++ | ||
a| [subs=-attributes] | ||
TLS mode for grpc connection to the go-micro based grpc services. Possible values are 'off', 'insecure' and 'on'. 'off': disables transport security for the clients. 'insecure' allows using transport security, but disables certificate verification (to be used with the autogenerated self-signed certificates). 'on' enables transport security, including server certificate verification. | ||
|
||
a|`OCIS_GRPC_CLIENT_TLS_CACERT` + | ||
|
||
a| [subs=-attributes] | ||
++string ++ | ||
a| [subs=-attributes] | ||
++ ++ | ||
a| [subs=-attributes] | ||
Path/File name for the root CA certificate (in PEM format) used to validate TLS server certificates of the go-micro based grpc services. | ||
|
||
a|`OCIS_SERVICE_ACCOUNT_ID` + | ||
`AUTH_SERVICE_SERVICE_ACCOUNT_ID` + | ||
|
||
a| [subs=-attributes] | ||
++string ++ | ||
a| [subs=-attributes] | ||
++ ++ | ||
a| [subs=-attributes] | ||
The ID of the service account the service should use. See the 'auth-service' service description for more details. | ||
|
||
a|`OCIS_SERVICE_ACCOUNT_SECRET` + | ||
`AUTH_SERVICE_SERVICE_ACCOUNT_SECRET` + | ||
|
||
a| [subs=-attributes] | ||
++string ++ | ||
a| [subs=-attributes] | ||
++ ++ | ||
a| [subs=-attributes] | ||
The service account secret. | ||
|=== | ||
|
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,2 @@ | ||
:show-deprecation: false | ||
|
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
Oops, something went wrong.