Skip to content

Commit 3aceeb2

Browse files
committed
Merge branch 'develop' into feature-support-json
2 parents 61ff44d + 0e7e6bf commit 3aceeb2

File tree

6 files changed

+21
-12
lines changed

6 files changed

+21
-12
lines changed

docs/metadig-101.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -144,11 +144,11 @@ The most comprehensive source of documentation for development is in the [develo
144144

145145
### Dependencies
146146

147-
- `metadig-engine@feature-hashstore-support`
148-
- `metadig-checks@feature-data-quality`
149-
- `metadig-webapp@develop` (only if you are doing dev work on the API)
150-
- [`metadig-R`](https://github.com/NCEAS/metadig-r/tree)
151-
- [`metadig-py@feature-store-interface`](https://github.com/NCEAS/metadig-py/tree/feature-store-interface)
147+
- `metadig-engine`
148+
- `metadig-checks`
149+
- `metadig-webapp`
150+
- [`metadig-R`](https://github.com/NCEAS/metadig-r/)
151+
- [`metadig-py`](https://github.com/NCEAS/metadig-py)
152152
- Jep (it should install with metadig-py, but just in case `pip install jep`)
153153

154154
### Local Configuration
@@ -305,4 +305,4 @@ for (i in 1:length(pids)){
305305
}
306306
```
307307

308-
Once you've run that, just run the `run.sh` script that just got written.
308+
Once you've run that, just run the `run.sh` script that just got written.

helm/metadig-controller/config/metadig.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ solr.location = http://metadig-solr.metadig.svc.cluster.local:8983/solr
3737
# PostgreSQL connection information
3838
postgres.user = metadig
3939
postgres.passwd = metadig
40-
jdbc.url = jdbc:postgresql://metadig-postgres.metadig.svc.cluster.local:6432/metadig
40+
jdbc.url = jdbc:postgresql://metadig-pg-pooler.metadig.svc.cluster.local:5432/metadig?sslmode=disable
4141
# The metadig-scheduler task file
4242
task.file = /opt/local/metadig/taskList.csv
4343
# The metadig-scheduler service does not use the public MetaDIG URL, but instead

helm/metadig-postgres/cluster.yaml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,18 @@ spec:
2121
name: metadig-pg
2222
storage:
2323
storageClass: csi-cephfs-sc
24-
size: 50Gi
24+
size: 200Gi
25+
resources:
26+
requests:
27+
cpu: 1
28+
memory: 1Gi
29+
limits:
30+
cpu: 2
31+
memory: 4Gi
2532
externalClusters:
2633
- name: cluster-metadig-10
2734
connectionParameters:
2835
# Use the correct IP or host name for the source database
29-
host: 10.109.52.33
36+
host: 10.98.125.147
3037
user: metadig
3138
dbname: metadig

helm/metadig-postgres/pooler.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: postgresql.cnpg.io/v1
22
kind: Pooler
33
metadata:
4-
name: pooler-metadig-pg
4+
name: metadig-pg-pooler
55
spec:
66
cluster:
77
name: metadig-pg

helm/metadig-worker/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 1.0.7
18+
version: 1.0.8
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

helm/metadig-worker/values.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@ podSecurityContext:
5555
runAsUser: 59990
5656
runAsGroup: 59997
5757
fsGroup: 59990
58+
supplementalGroups:
59+
- 1004
5860

5961
#topologySpreadConstraints:
6062
# - maxSkew: 10
@@ -80,7 +82,7 @@ ingress:
8082

8183
resources:
8284
requests:
83-
cpu: 500m
85+
cpu: 50m
8486
memory: 512Mi
8587
limits:
8688
cpu: 1

0 commit comments

Comments
 (0)