Skip to content

Commit a6d55b5

Browse files
committed
Fix missing prefixes and bump version to 0.5.13
1 parent 778bb78 commit a6d55b5

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ RUN wget https://dev.overpass-api.de/releases/osm-3s_v${OVERPASS_VERSION}.tar.gz
4444
ENV PATH="/app/osm-3s/bin:${PATH}" \
4545
BOO_OVERPASS_META="yes" \
4646
BOO_OVERPASS_PLANET_URL="https://planet.openstreetmap.org/planet/planet-latest.osm.bz2" \
47-
BOO_OVERPASS_DIFF_URL="https://planet.openstreetmap.org/replication/minute/" \
47+
BOO_OVERPASS_DIFF_URL="https://planet.openstreetmap.org/replication/minute" \
4848
BOO_OVERPASS_COMPRESSION="gz" \
4949
BOO_OVERPASS_RULES_LOAD=1 \
5050
BOO_OVERPASS_UPDATE_FREQUENCY="minute" \

charts/overpass-api-chart/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ keywords:
1414
- api
1515

1616
type: application
17-
version: 0.5.12
18-
appVersion: "0.7.62.7" # The last number is the Dockerfile version for that overpass-api version
17+
version: 0.5.13
18+
appVersion: "0.7.62.8" # The last number is the Dockerfile version for that overpass-api version

charts/overpass-api-chart/templates/configmap.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ data:
137137
138138
# Run the database initialization script
139139
/app/osm-3s/bin/init_osm3s.sh "${init_file}" "$BOO_OVERPASS_DB_DIR" "/app/osm-3s" \
140-
--meta="$OVERPASS_META" --compression-method="$OVERPASS_COMPRESSION"
140+
--meta="$BOO_OVERPASS_META" --compression-method="$BOO_OVERPASS_COMPRESSION"
141141
142142
exit_status=$?
143143
@@ -187,20 +187,20 @@ data:
187187
start_api_and_updates() {
188188
log "INFO" "Starting Overpass API and update processes..."
189189
190-
/app/osm-3s/bin/dispatcher --osm-base --meta="$OVERPASS_META" --db-dir="$BOO_OVERPASS_DB_DIR" &
190+
/app/osm-3s/bin/dispatcher --osm-base --meta="$BOO_OVERPASS_META" --db-dir="$BOO_OVERPASS_DB_DIR" &
191191
192192
# Start the continuous update process
193193
log "INFO" "Starting fetch_osc.sh..."
194-
/app/osm-3s/bin/fetch_osc.sh "$OVERPASS_UPDATE_FREQUENCY" "$OVERPASS_DIFF_URL" "$BOO_OVERPASS_DIFF_DIR" &
194+
/app/osm-3s/bin/fetch_osc.sh "$BOO_OVERPASS_UPDATE_FREQUENCY" "$BOO_OVERPASS_DIFF_URL" "$BOO_OVERPASS_DIFF_DIR" &
195195
196196
log "INFO" "Starting apply_osc_to_db.sh..."
197-
/app/osm-3s/bin/apply_osc_to_db.sh "$BOO_OVERPASS_DIFF_DIR" "$OVERPASS_UPDATE_FREQUENCY" --meta="$OVERPASS_META" &
197+
/app/osm-3s/bin/apply_osc_to_db.sh "$BOO_OVERPASS_DIFF_DIR" "$BOO_OVERPASS_UPDATE_FREQUENCY" --meta="$BOO_OVERPASS_META" &
198198
199199
log "INFO" "Starting rules_loop.sh..."
200-
/app/osm-3s/bin/rules_loop.sh "$BOO_OVERPASS_DB_DIR" "$OVERPASS_RULES_LOAD" &
200+
/app/osm-3s/bin/rules_loop.sh "$BOO_OVERPASS_DB_DIR" "$BOO_OVERPASS_RULES_LOAD" &
201201
202202
log "INFO" "Configuring and starting fcgiwrap..."
203-
sed -i "s/FCGI_CHILDREN=.*/FCGI_CHILDREN=$OVERPASS_FASTCGI_PROCESSES/" /etc/init.d/fcgiwrap
203+
sed -i "s/FCGI_CHILDREN=.*/FCGI_CHILDREN=$BOO_OVERPASS_FASTCGI_PROCESSES/" /etc/init.d/fcgiwrap
204204
service fcgiwrap start
205205
206206
log "INFO" "Configuring Overpass settings..."

0 commit comments

Comments
 (0)