Skip to content

Commit

Permalink
Add chartpress config for osmcha
Browse files Browse the repository at this point in the history
  • Loading branch information
Rub21 committed Sep 5, 2023
1 parent b17d416 commit 218373d
Show file tree
Hide file tree
Showing 2 changed files with 99 additions and 42 deletions.
88 changes: 46 additions & 42 deletions chartpress.yaml
Original file line number Diff line number Diff line change
@@ -1,44 +1,48 @@
charts:
- name: osm-seed
imagePrefix: developmentseed/osmseed-
repo:
git: developmentseed/osm-seed-chart
published: https://devseed.com/osm-seed-chart
- name: osm-seed
imagePrefix: developmentseed/osmseed-
repo:
git: developmentseed/osm-seed-chart
published: https://devseed.com/osm-seed-chart

images:
web:
valuesPath: web.image
db:
valuesPath: db.image
backup-restore:
valuesPath: dbBackupRestore.image
planet-dump:
valuesPath: planetDump.image
full-history:
valuesPath: fullHistory.image
replication-job:
valuesPath: replicationJob.image
populate-apidb:
valuesPath: populateApidb.image
osm-processor:
valuesPath: osmProcessor.image
tiler-db:
valuesPath: tilerDb.image
tiler-imposm:
valuesPath: tilerImposm.image
tiler-server:
valuesPath: tilerServer.image
tasking-manager-api:
valuesPath: tmApi.image
# tiler-visor:
# valuesPath: tilerVisor.image
nominatim:
valuesPath: nominatimApi.image
overpass-api:
valuesPath: overpassApi.image
taginfo:
valuesPath: taginfo.image
osm-simple-metrics:
valuesPath: osmSimpleMetrics.image
changeset-replication-job:
valuesPath: changesetReplicationJob.image
images:
web:
valuesPath: web.image
db:
valuesPath: db.image
backup-restore:
valuesPath: dbBackupRestore.image
planet-dump:
valuesPath: planetDump.image
full-history:
valuesPath: fullHistory.image
replication-job:
valuesPath: replicationJob.image
populate-apidb:
valuesPath: populateApidb.image
osm-processor:
valuesPath: osmProcessor.image
tiler-db:
valuesPath: tilerDb.image
tiler-imposm:
valuesPath: tilerImposm.image
tiler-server:
valuesPath: tilerServer.image
tasking-manager-api:
valuesPath: tmApi.image
# tiler-visor:
# valuesPath: tilerVisor.image
nominatim:
valuesPath: nominatimApi.image
overpass-api:
valuesPath: overpassApi.image
taginfo:
valuesPath: taginfo.image
osm-simple-metrics:
valuesPath: osmSimpleMetrics.image
changeset-replication-job:
valuesPath: changesetReplicationJob.image
osmcha:
valuesPath: osmcha.image
osmcha-db:
valuesPath: osmchaDb.image
53 changes: 53 additions & 0 deletions osm-seed/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -716,3 +716,56 @@ changesetReplicationJob:
cpu: '10'
nodeSelector:
enabled: false


# ====================================================================================================
# Variables for changeset-replication-job, Configuration to create the replication files by, minute, hour, or day
# ====================================================================================================
osmcha:
enabled: false
image:
name: ''
tag: ''
resources:
enabled: false
requests:
memory: '20Gi'
cpu: '8'
limits:
memory: '24Gi'
cpu: '10'
nodeSelector:
enabled: false


# ====================================================================================================
# Variables for changeset-replication-job, Configuration to create the replication files by, minute, hour, or day
# ====================================================================================================
osmchaDb:
enabled: false
image:
name: ''
tag: ''
resources:
enabled: false
requests:
memory: '20Gi'
cpu: '8'
limits:
memory: '24Gi'
cpu: '10'
persistenceDisk:
enabled: false
accessMode: ReadWriteOnce
mountPath: /db
# Minikube
localVolumeHostPath: /mnt/overpass-api-db-data
localVolumeSize: 10Gi
# AWS
AWS_ElasticBlockStore_volumeID: vol-1234bcd
AWS_ElasticBlockStore_size: 50Gi
# GCP
GCP_gcePersistentDisk_pdName: osmseed-disk-overpass-v1
GCP_gcePersistentDisk_size: 50Gi
nodeSelector:
enabled: false

0 comments on commit 218373d

Please sign in to comment.