Skip to content

Commit

Permalink
feat: [Hub'Eau] Upgrade the default version to 1.0.1 (close #140)
Browse files Browse the repository at this point in the history
  • Loading branch information
Christophe Nouguier committed Jan 25, 2020
1 parent 641eedf commit 6d734d8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .env.default
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ GRAFANA_TAG=6.1.6

# HubEau
HUBEAU_IMAGE=kalisio/k-hubeau
HUBEAU_STATIONS_TAG=1.0.0
HUBEAU_OBSERVATIONS_TAG=1.0.0
HUBEAU_TAG=1.0.1
HUBEAU_OBSERVATIONS_TTL=604800
HUBEAU_OBSERVATIONS_HISTORY=86400000
HUBEAU_OBSERVATIONS_TIMEOUT=1800000
Expand Down
2 changes: 1 addition & 1 deletion deploy/hubeau-observations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.5'

services:
hubeau-observations:
image: ${HUBEAU_IMAGE}:observations-${HUBEAU_OBSERVATIONS_TAG}
image: ${HUBEAU_IMAGE}:observations-${HUBEAU_TAG}
environment:
- DB_URL=${HUBEAU_DB_URL}
- TTL=${HUBEAU_OBSERVATIONS_TTL}
Expand Down
2 changes: 1 addition & 1 deletion deploy/hubeau-stations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.5'

services:
hubeau-stations:
image: ${HUBEAU_IMAGE}:stations-${HUBEAU_STATIONS_TAG}
image: ${HUBEAU_IMAGE}:stations-${HUBEAU_TAG}
environment:
- DB_URL=${HUBEAU_DB_URL}
- DEBUG=${HUBEAU_STATIONS_DEBUG}
Expand Down
2 changes: 1 addition & 1 deletion docs/reference/environment.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ For each stack, there must be such an entry:
| Variable | Description | Default value |
| --- | --- | --- |
| `HUBEAU_IMAGE` | The image to be used. | `kalisio/k-hubeau` |
| `HUBEAU_TAG` | The version of the image to be used. | `1.0.1` |
| `HUBEAU_DB_URL` | The database URL where to write the data. | - |
| `HUBEAU_STATIONS_TAG` | The version of the image to be used for scraping the stations. | `1.0.0` |
| `HUBEAU_STATIONS_DEBUG` |The namespaces to enable debug output. Set it to `krawler*` to enable full debug output. | `` |
| `HUBEAU_OBSERVATIONS_TAG` | The version of the image to be used for scraping the observations. | `1.0.0` |
| `HUBEAU_OBSERVATIONS_TTL` | The observations data time to live. It must be expressed in seconds. | `604 800` (7 days) |
| `HUBEAU_OBSERVATIONS_HISTORY` | The duration of the observations data history the job has to download. It must be expressed in milliseconds. | `86 400 000` (1 day) |
| `HUBEAU_OBSERVATIONS_TIMEOUT` | The maximum duration of the observations job. It must be in milliseconds. | `1 800 000` (30 minutes) |
Expand Down

0 comments on commit 6d734d8

Please sign in to comment.