storage-metadata -> storage-system
Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de>
This commit is contained in:
@@ -85,7 +85,7 @@ services:
|
||||
STORAGE_LDAP_LOGIN_ATTRIBUTES: "uid,mail"
|
||||
# ownCloudSQL storage driver
|
||||
STORAGE_USERS_DRIVER: owncloudsql
|
||||
STORAGE_METADATA_DRIVER: ocis # keep metadata on ocis storage since this are only small files atm
|
||||
STORAGE_SYSTEM_DRIVER: ocis # keep system data on ocis storage since this are only small files atm
|
||||
STORAGE_USERS_DRIVER_OWNCLOUDSQL_DATADIR: /mnt/data/files
|
||||
STORAGE_USERS_DRIVER_OWNCLOUDSQL_UPLOADINFO_DIR: /tmp
|
||||
STORAGE_USERS_DRIVER_OWNCLOUDSQL_SHARE_FOLDER: "/Shares"
|
||||
@@ -108,7 +108,7 @@ services:
|
||||
OCIS_STORAGE_READ_ONLY: "false" # TODO: conflict with OWNCLOUDSQL -> https://github.com/owncloud/ocis/issues/2303
|
||||
# General oCIS config
|
||||
# OCIS_RUN_EXTENSIONS specifies to start all extensions except glauth, idp and accounts. These are replaced by external services
|
||||
OCIS_RUN_EXTENSIONS: settings,storage-metadata,graph,graph-explorer,ocs,store,thumbnails,web,webdav,storage-frontend,storage-gateway,storage-userprovider,storage-groupprovider,storage-authbasic,storage-authbearer,storage-authmachine,storage-users,storage-shares,storage-public-link,app-provider,storage-sharing,proxy,nats
|
||||
OCIS_RUN_EXTENSIONS: settings,storage-system,graph,graph-explorer,ocs,store,thumbnails,web,webdav,storage-frontend,storage-gateway,storage-userprovider,storage-groupprovider,storage-authbasic,storage-authbearer,storage-authmachine,storage-users,storage-shares,storage-public-link,app-provider,storage-sharing,proxy,nats
|
||||
OCIS_LOG_LEVEL: ${OCIS_LOG_LEVEL:-error} # make oCIS less verbose
|
||||
OCIS_URL: https://${CLOUD_DOMAIN:-cloud.owncloud.test}
|
||||
PROXY_TLS: "false" # do not use SSL between Traefik and oCIS
|
||||
|
||||
+1
-1
@@ -23,7 +23,7 @@ services:
|
||||
STORAGE_FRONTEND_DEBUG_ADDR: 0.0.0.0:9141
|
||||
STORAGE_GATEWAY_DEBUG_ADDR: 0.0.0.0:9143
|
||||
STORAGE_GROUPPROVIDER_DEBUG_ADDR: 0.0.0.0:9161
|
||||
STORAGE_METADATA_DEBUG_ADDR: 0.0.0.0:9217
|
||||
STORAGE_SYSTEM_DEBUG_ADDR: 0.0.0.0:9217
|
||||
STORAGE_PUBLIC_LINK_DEBUG_ADDR: 0.0.0.0:9179
|
||||
STORAGE_USERPROVIDER_DEBUG_ADDR: 0.0.0.0:9145
|
||||
STORAGE_USERS_DEBUG_ADDR: 0.0.0.0:9159
|
||||
|
||||
@@ -23,7 +23,7 @@ services:
|
||||
STORAGE_FRONTEND_DEBUG_ADDR: 0.0.0.0:9141
|
||||
STORAGE_GATEWAY_DEBUG_ADDR: 0.0.0.0:9143
|
||||
STORAGE_GROUPPROVIDER_DEBUG_ADDR: 0.0.0.0:9161
|
||||
STORAGE_METADATA_DEBUG_ADDR: 0.0.0.0:9217
|
||||
STORAGE_SYSTEM_DEBUG_ADDR: 0.0.0.0:9217
|
||||
STORAGE_PUBLIC_LINK_DEBUG_ADDR: 0.0.0.0:9179
|
||||
STORAGE_USERPROVIDER_DEBUG_ADDR: 0.0.0.0:9145
|
||||
STORAGE_USERS_DEBUG_ADDR: 0.0.0.0:9159
|
||||
|
||||
@@ -128,7 +128,7 @@ services:
|
||||
ACCOUNTS_GRPC_ADDR: 0.0.0.0:9180
|
||||
|
||||
ACCOUNTS_STORAGE_BACKEND: cs3
|
||||
ACCOUNTS_STORAGE_CS3_PROVIDER_ADDR: storage-metadata:9215
|
||||
ACCOUNTS_STORAGE_CS3_PROVIDER_ADDR: storage-system:9215
|
||||
|
||||
IDP_LDAP_BIND_PASSWORD: ${IDP_LDAP_BIND_PASSWORD:-idp}
|
||||
STORAGE_LDAP_BIND_PASSWORD: ${STORAGE_LDAP_BIND_PASSWORD:-reva}
|
||||
@@ -366,7 +366,7 @@ services:
|
||||
driver: "local"
|
||||
restart: always
|
||||
|
||||
storage-metadata:
|
||||
storage-system:
|
||||
image: owncloud/ocis:${OCIS_DOCKER_TAG:-latest}
|
||||
deploy:
|
||||
replicas: 1
|
||||
@@ -374,7 +374,7 @@ services:
|
||||
ocis-net:
|
||||
entrypoint:
|
||||
- ocis
|
||||
- storage-metadata
|
||||
- storage-system
|
||||
- server
|
||||
environment:
|
||||
OCIS_LOG_LEVEL: "${OCIS_LOG_LEVEL:-error}"
|
||||
@@ -383,18 +383,18 @@ services:
|
||||
|
||||
STORAGE_HOME_DATAPROVIDER_INSECURE: "${INSECURE:-false}"
|
||||
|
||||
STORAGE_METADATA_GRPC_ADDR: 0.0.0.0:9215
|
||||
STORAGE_METADATA_HTTP_ADDR: 0.0.0.0:9216
|
||||
STORAGE_METADATA_DATA_SERVER_URL: http://storage-metadata:9216/data
|
||||
STORAGE_SYSTEM_GRPC_ADDR: 0.0.0.0:9215
|
||||
STORAGE_SYSTEM_HTTP_ADDR: 0.0.0.0:9216
|
||||
STORAGE_SYSTEM_DATA_SERVER_URL: http://storage-system:9216/data
|
||||
|
||||
STORAGE_JWT_SECRET: ${OCIS_METADATA_JWT_SECRET:-Pive-Fumkiu4}
|
||||
STORAGE_TRANSFER_SECRET: ${STORAGE_TRANSFER_SECRET:-replace-me-with-a-transfer-secret}
|
||||
|
||||
STORAGE_METADATA_DRIVER: ocis
|
||||
STORAGE_SYSTEM_DRIVER: ocis
|
||||
|
||||
REVA_GATEWAY: storage-gateway:9142
|
||||
volumes:
|
||||
- "ocis-storage-metadata:/var/lib/ocis"
|
||||
- "ocis-storage-system:/var/lib/ocis"
|
||||
logging:
|
||||
driver: "local"
|
||||
restart: always
|
||||
@@ -726,7 +726,7 @@ volumes:
|
||||
traefik-certs: null
|
||||
ocis-settings: null
|
||||
ocis-store: null
|
||||
ocis-storage-metadata: null
|
||||
ocis-storage-system: null
|
||||
ocis-storage-users: null
|
||||
ocis-storage-sharing: null
|
||||
|
||||
|
||||
+2
-2
@@ -99,14 +99,14 @@ services:
|
||||
# OCIS_TRACING_ENDPOINT: jaeger-agent:6831
|
||||
# # metrics
|
||||
# GRAPH_EXPLORER_DEBUG_ADDR: 0.0.0.0:9136
|
||||
storage-metadata:
|
||||
storage-system:
|
||||
environment:
|
||||
# tracing
|
||||
OCIS_TRACING_ENABLED: "true"
|
||||
OCIS_TRACING_TYPE: jaeger
|
||||
OCIS_TRACING_ENDPOINT: jaeger-agent:6831
|
||||
# metrics
|
||||
STORAGE_METADATA_DEBUG_ADDR: 0.0.0.0:9217
|
||||
STORAGE_SYSTEM_DEBUG_ADDR: 0.0.0.0:9217
|
||||
storage-authbasic:
|
||||
environment:
|
||||
# tracing
|
||||
|
||||
@@ -23,7 +23,7 @@ services:
|
||||
STORAGE_FRONTEND_DEBUG_ADDR: 0.0.0.0:9141
|
||||
STORAGE_GATEWAY_DEBUG_ADDR: 0.0.0.0:9143
|
||||
STORAGE_GROUPPROVIDER_DEBUG_ADDR: 0.0.0.0:9161
|
||||
STORAGE_METADATA_DEBUG_ADDR: 0.0.0.0:9217
|
||||
STORAGE_SYSTEM_DEBUG_ADDR: 0.0.0.0:9217
|
||||
STORAGE_PUBLIC_LINK_DEBUG_ADDR: 0.0.0.0:9179
|
||||
STORAGE_USERPROVIDER_DEBUG_ADDR: 0.0.0.0:9145
|
||||
STORAGE_USERS_DEBUG_ADDR: 0.0.0.0:9159
|
||||
|
||||
@@ -23,7 +23,7 @@ services:
|
||||
STORAGE_FRONTEND_DEBUG_ADDR: 0.0.0.0:9141
|
||||
STORAGE_GATEWAY_DEBUG_ADDR: 0.0.0.0:9143
|
||||
STORAGE_GROUPPROVIDER_DEBUG_ADDR: 0.0.0.0:9161
|
||||
STORAGE_METADATA_DEBUG_ADDR: 0.0.0.0:9217
|
||||
STORAGE_SYSTEM_DEBUG_ADDR: 0.0.0.0:9217
|
||||
STORAGE_PUBLIC_LINK_DEBUG_ADDR: 0.0.0.0:9179
|
||||
STORAGE_USERPROVIDER_DEBUG_ADDR: 0.0.0.0:9145
|
||||
STORAGE_USERS_DEBUG_ADDR: 0.0.0.0:9159
|
||||
|
||||
@@ -61,7 +61,7 @@ services:
|
||||
OCIS_MACHINE_AUTH_API_KEY: ${OCIS_MACHINE_AUTH_API_KEY:-change-me-please}
|
||||
# activate s3ng storage driver
|
||||
STORAGE_USERS_DRIVER: s3ng
|
||||
STORAGE_METADATA_DRIVER: ocis # keep metadata on ocis storage since this are only small files atm
|
||||
STORAGE_SYSTEM_DRIVER: ocis # keep system data on ocis storage since this are only small files atm
|
||||
# s3ng specific settings
|
||||
STORAGE_USERS_DRIVER_S3NG_ENDPOINT: http://minio:9000
|
||||
STORAGE_USERS_DRIVER_S3NG_REGION: default
|
||||
|
||||
@@ -23,7 +23,7 @@ services:
|
||||
STORAGE_FRONTEND_DEBUG_ADDR: 0.0.0.0:9141
|
||||
STORAGE_GATEWAY_DEBUG_ADDR: 0.0.0.0:9143
|
||||
STORAGE_GROUPPROVIDER_DEBUG_ADDR: 0.0.0.0:9161
|
||||
STORAGE_METADATA_DEBUG_ADDR: 0.0.0.0:9217
|
||||
STORAGE_SYSTEM_DEBUG_ADDR: 0.0.0.0:9217
|
||||
STORAGE_PUBLIC_LINK_DEBUG_ADDR: 0.0.0.0:9179
|
||||
STORAGE_USERPROVIDER_DEBUG_ADDR: 0.0.0.0:9145
|
||||
STORAGE_USERS_DEBUG_ADDR: 0.0.0.0:9159
|
||||
|
||||
@@ -23,7 +23,7 @@ services:
|
||||
STORAGE_FRONTEND_DEBUG_ADDR: 0.0.0.0:9141
|
||||
STORAGE_GATEWAY_DEBUG_ADDR: 0.0.0.0:9143
|
||||
STORAGE_GROUPPROVIDER_DEBUG_ADDR: 0.0.0.0:9161
|
||||
STORAGE_METADATA_DEBUG_ADDR: 0.0.0.0:9217
|
||||
STORAGE_SYSTEM_DEBUG_ADDR: 0.0.0.0:9217
|
||||
STORAGE_PUBLIC_LINK_DEBUG_ADDR: 0.0.0.0:9179
|
||||
STORAGE_USERPROVIDER_DEBUG_ADDR: 0.0.0.0:9145
|
||||
STORAGE_USERS_DEBUG_ADDR: 0.0.0.0:9159
|
||||
|
||||
@@ -23,7 +23,7 @@ services:
|
||||
STORAGE_FRONTEND_DEBUG_ADDR: 0.0.0.0:9141
|
||||
STORAGE_GATEWAY_DEBUG_ADDR: 0.0.0.0:9143
|
||||
STORAGE_GROUPPROVIDER_DEBUG_ADDR: 0.0.0.0:9161
|
||||
STORAGE_METADATA_DEBUG_ADDR: 0.0.0.0:9217
|
||||
STORAGE_SYSTEM_DEBUG_ADDR: 0.0.0.0:9217
|
||||
STORAGE_PUBLIC_LINK_DEBUG_ADDR: 0.0.0.0:9179
|
||||
STORAGE_USERPROVIDER_DEBUG_ADDR: 0.0.0.0:9145
|
||||
STORAGE_USERS_DEBUG_ADDR: 0.0.0.0:9159
|
||||
|
||||
Reference in New Issue
Block a user