-
Notifications
You must be signed in to change notification settings - Fork 187
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
use eos driver for /eos namespace #484
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,28 +24,29 @@ services: | |
- ../ocis-reva:/ocis-reva | ||
- ../reva:/reva | ||
environment: | ||
EOS_MGM_URL: ${EOS_MGM_URL:-root://mgm-master.testnet:1094} | ||
# ocis log level will be used for all services | ||
OCIS_LOG_LEVEL: debug | ||
# domain setup | ||
# TODO currently the below lines hardcode the port to 9200, use an OCIS_URL that includes protocol and port | ||
OCIS_DOMAIN: ${OCIS_DOMAIN:-localhost} | ||
PROXY_OIDC_ISSUER: https://${OCIS_DOMAIN:-localhost}:9200 | ||
KONNECTD_ISS: https://${OCIS_DOMAIN:-localhost}:9200 | ||
KONNECTD_LOG_LEVEL: debug | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. log level will be taken from OCIS_LOG_LEVEL. if not that is a bug and should be fixed properly |
||
KONNECTD_TLS: '0' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. the default is already There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'd be a fan of leaving all the defaults. Or document the defaults as a comment. |
||
PHOENIX_OIDC_AUTHORITY: https://${OCIS_DOMAIN:-localhost}:9200 | ||
PHOENIX_OIDC_METADATA_URL: https://${OCIS_DOMAIN:-localhost}:9200/.well-known/openid-configuration | ||
PHOENIX_WEB_CONFIG_SERVER: https://${OCIS_DOMAIN:-localhost}:9200 | ||
PROXY_HTTP_ADDR: 0.0.0.0:9200 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this is the dafault |
||
REVA_OIDC_ISSUER: https://${OCIS_DOMAIN:-localhost}:9200 | ||
REVA_LDAP_IDP: https://${OCIS_DOMAIN:-localhost}:9200 | ||
OCIS_LOG_LEVEL: debug | ||
REVA_TRANSFER_EXPIRES: 86400 | ||
REVA_STORAGE_EOS_DRIVER: eoshome | ||
REVA_STORAGE_EOS_DATA_DRIVER: eoshome | ||
REVA_STORAGE_EOS_NAMESPACE: "/eos/dockertest/reva/users" | ||
REVA_STORAGE_EOS_MASTER_URL: ${EOS_MGM_URL:-root://mgm-master.testnet:1094} | ||
REVA_STORAGE_EOS_SLAVE_URL: ${EOS_MGM_URL:-root://mgm-master.testnet:1094} | ||
REVA_STORAGE_EOS_LAYOUT: "{{substr 0 1 .Id.OpaqueId}}" | ||
# TODO make id the default in ocis-reva | ||
REVA_STORAGE_EOS_LAYOUT: "{{substr 0 1 .Id.OpaqueId}}/{{.Id.OpaqueId}}" | ||
REVA_FRONTEND_URL: https://${OCIS_DOMAIN:-localhost}:9200 | ||
REVA_DATAGATEWAY_URL: https://${OCIS_DOMAIN:-localhost}:9200/data | ||
|
||
# common eos settings used for both drivers: eos and eoshome | ||
REVA_STORAGE_EOS_MASTER_URL: ${EOS_MGM_URL:-root://mgm-master.testnet:1094} | ||
REVA_STORAGE_EOS_SLAVE_URL: ${EOS_MGM_URL:-root://mgm-master.testnet:1094} | ||
REVA_STORAGE_EOS_NAMESPACE: "/eos/dockertest/reva/users" | ||
# the eos end xrdcopy binaries use this env var to find the eos mgm | ||
EOS_MGM_URL: ${EOS_MGM_URL:-root://mgm-master.testnet:1094} | ||
|
||
mgm-master: | ||
container_name: mgm-master | ||
image: owncloud/eos-mgm:4.6.5 | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
originally added by @jnweiger in #468