Skip to content

Commit

Permalink
feat: add conf for enrich and download
Browse files Browse the repository at this point in the history
  • Loading branch information
QuCMGisaia committed Nov 26, 2024
1 parent b62690d commit 522a6cf
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 8 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ The simple deployment has:


## Start
To start the ARLAS stack in simple mode, run:
To start the ARLAS stack in simple mode, run:
```shell
./start.sh
```
Expand All @@ -40,7 +40,7 @@ A simple dashboard with AIS data is then available.

## Stop

Stop the stack with `./stop.sh`.
Stop the stack with `./stop.sh`.

Note: by default, data are persisted in docker volumes prefixed with `arlas-test- ...`. To reset the volumes, run:

Expand All @@ -64,7 +64,7 @@ The IAM deployment has:
- [elasticsearch](https://github.com/elastic/elasticsearch)
- [protomaps](https://protomaps.com/)

To start, run:
To start, run:
```shell
./start.sh iam
```
Expand Down Expand Up @@ -110,7 +110,7 @@ The AIAS (ARLAS Item and Asset Services) deployment has:
- [redis](https://redis.io)
- [rabbitmq](https://www.rabbitmq.com)

To start, run:
To start, run:
```shell
./start.sh aias
```
Expand Down Expand Up @@ -141,7 +141,7 @@ docker run --rm --network arlas-net gisaia/stac-geodes:latest add https://geodes
This will register in the `org.com@airs_geodes` index the first 1000 `S2L1C` data that were acquired after 2023-04-05T08:58. Then, you can create the catalog:

```shell
./scripts/init_aias_catalog.sh local.iam.user catalog org.com@airs_geodes`
./scripts/init_aias_catalog.sh local.iam.user catalog org.com@airs_geodes
```

# Configuration
Expand All @@ -163,7 +163,7 @@ A significant number of parameters can be configured. Parameters are configured
- conf/arlas_iam.env: configuration of the IAM
- conf/arlas.env: general parameters of ARLAS Server
- conf/elastic.env: configuration of elasticsearch
- conf/permissions.env: configurartion of the service delivering permission descriptions-
- conf/permissions.env: configurartion of the service delivering permission descriptions
- conf/persistence-file.env and conf/persistence-postgres.env: configuration of the persistence services
- conf/restart_strategy.env: configuration of the restart strategy for every service
- conf/stack.env: general parameters of the stack
Expand Down
3 changes: 2 additions & 1 deletion conf/aias/dashboard.json
Original file line number Diff line number Diff line change
Expand Up @@ -1670,7 +1670,8 @@
]
},
"externalNode": {
"download": true
"download": true,
"enrich": true
}
},
"server": {
Expand Down
11 changes: 11 additions & 0 deletions conf/arlas.env
Original file line number Diff line number Diff line change
Expand Up @@ -100,3 +100,14 @@ ARLAS_HUB_LINKS='
#ARLAS_SMTP_PORT=
#ARLAS_WUI_BASE_HREF=
#ARLAS_WUI_URL=

ARLAS_DOWNLOAD_PROCESS_URL=/aproc/processes/download/execution
ARLAS_DOWNLOAD_PROCESS_CHECK_URL=/aproc/processes/download
#ARLAS_DOWNLOAD_PROCESS_MAX_ITEMS
#ARLAS_DOWNLOAD_PROCESS_SETTINGS_URL
ARLAS_DOWNLOAD_PROCESS_STATUS_URL=/aproc/jobs
ARLAS_ENRICH_PROCESS_URL=/aproc/processes/enrich/execution
ARLAS_ENRICH_PROCESS_CHECK_URL=/aproc/processes/enrich
#ARLAS_ENRICH_PROCESS_MAX_ITEMS
#ARLAS_ENRICH_PROCESS_SETTINGS_URL
ARLAS_ENRICH_PROCESS_STATUS_URL=/aproc/jobs
2 changes: 1 addition & 1 deletion conf/versions.env
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ ARLAS_VERSION_AGATE=gisaia/agate:0.5.4

ARLAS_VERSION_MINIO_MC=minio/mc:RELEASE.2024-10-02T08-27-28Z
ARLAS_VERSION_MINIO=minio/minio:RELEASE.2024-10-02T17-50-41Z
ARLAS_VERSION_RABBITMQ=rabbitmq:3.13.2-management-alpine
ARLAS_VERSION_RABBITMQ=rabbitmq:3.13.2-management-alpine
ARLAS_VERSION_REDIS=redis/redis-stack:7.2.0-v10
TITILER_VERSION=developmentseed/titiler:0.4.0a2
APISIX_VERSION=apache/apisix:3.9.1-debian
Expand Down
10 changes: 10 additions & 0 deletions dc/ref-dc-arlas-wui.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,16 @@ services:
- ARLAS_WUI_BASE_HREF=${ARLAS_WUI_BASE_HREF:-/wui}
- PUBLIC_HOST=${ARLAS_HOST}
- 'ARLAS_STATIC_LINKS=${ARLAS_WUI_LINKS}'
- ARLAS_DOWNLOAD_PROCESS_URL=${ARLAS_DOWNLOAD_PROCESS_URL}
- ARLAS_DOWNLOAD_PROCESS_CHECK_URL=${ARLAS_DOWNLOAD_PROCESS_CHECK_URL}
- ARLAS_DOWNLOAD_PROCESS_MAX_ITEMS=${ARLAS_DOWNLOAD_PROCESS_MAX_ITEMS}
- ARLAS_DOWNLOAD_PROCESS_SETTINGS_URL=${ARLAS_DOWNLOAD_PROCESS_SETTINGS_URL}
- ARLAS_DOWNLOAD_PROCESS_STATUS_URL=${ARLAS_DOWNLOAD_PROCESS_STATUS_URL}
- ARLAS_ENRICH_PROCESS_URL=${ARLAS_ENRICH_PROCESS_URL}
- ARLAS_ENRICH_PROCESS_CHECK_URL=${ARLAS_ENRICH_PROCESS_CHECK_URL}
- ARLAS_ENRICH_PROCESS_MAX_ITEMS=${ARLAS_ENRICH_PROCESS_MAX_ITEMS}
- ARLAS_ENRICH_PROCESS_SETTINGS_URL=${ARLAS_ENRICH_PROCESS_SETTINGS_URL}
- ARLAS_ENRICH_PROCESS_STATUS_URL=${ARLAS_ENRICH_PROCESS_STATUS_URL}
expose:
- "80"
networks:
Expand Down

0 comments on commit 522a6cf

Please sign in to comment.